What are the different types of hooks in React? How do they get executed at different stages of the lifecycle of a component?
Software Engineer Intern Interview Questions
9,771 software engineer intern interview questions shared by candidates
echnical Interview of around 40-45 minutes but went till 1hr 30 minutes. PTC has its windchill product which uses java so the interview was based on the java concept. Java part :
Max avg salary SQL Check digit Position value add alphabet
Coding questions which I was solved in my 1st round.
Find the second largest number in the given list
How do you solve the problem
What is the difference between a list and a tuple in Python?
is .NET backend or front end?
Dynamic Programming and System Design was asked in depth.
Maximise profits of opening N shops in a commercial complex Given an integer N representing the number of shops and a 2D array profit[][3], where profit[i][0], profit[i][1], and profit[i][2] represent the profit of opening the ith shop offering services like food, clothing, and electronics respectively, the task is to find the maximum profit by opening all the shops in a way that neighbouring shops offer different services, i.e., no adjacent shops can provide the same service. Input: N = 3, profit[][3] = {{14, 2, 11}, {11, 14, 5}, {14, 3, 10}} Output: 42 Explanation: Open Shop 0 as Food shop. Profit = 14. Open Shop 1 as clothing shop. Profit = 14. Open Shop 2 as Food shop Profit = 14. Therefore, the total profit = 14 + 14 + 14 = 42. Input: N = 2, profit[][3] = {{1, 2, 3}, {1, 4, 6}} Output: 8
Viewing 2371 - 2380 interview questions