Q: Creating a Python Dictionary and Random Word Selection. Q: Basic Questions on Web Development Q: Questions on frameworks and Libraries according to my projects in my resume.
Associate Developer Interview Questions
4,565 associate developer interview questions shared by candidates
Why do you want to join the bank?
Basic background questions like available start date
-Describe a time when you worked under pressure -What steps would you take to resolve an application error/outage? -What don't you like about your current job/why are you looking for a new job?
1. A Leetcode easy-medium question. 2. Explain the definition of cloud native application.
What is the difference between overloading and overriding a constructor?
1. Tell me about yourself 2. How will you contribute coming from a non-CSE background? 3. Describe your Master's thesis.
Tell me about your project and problem faced during this project?
explain projects that are in the resume
Given an array of n positive integers, assuming 0-based indexing, its cost is the sum from i=1 to i=(len(arr) - 1) of (arr[i] - arr[i-1])^2. We want to find the minimum possible cost of the array after inserting exactly one element. For example, the cost of the array a = [1, 3, 5, 2, 10] before insertion is (1 - 3)^2 + (3 - 5)^2 + (5 - 2)^2 + (2 - 10)^2 = 81. After inserting 6 between 2 and 10, the cost of the array a is (1 - 3)^2 + (3 - 5)^2 + (5 - 2)^2 + (2 - 6)^2 + (6 - 10)^2 = 49. It can be proven that 49 is the minimum possible cost for the array a. Complete the function public static long getMinimumCost(List arr) to solve this problem.
Viewing 3391 - 3400 interview questions