Tip 1: Practise DSA from coding websites.
Tip 2: Learn CS fundamentals ( mainly oops, DBMS )
Tip 1: Undertake a few quality projects.
Tip 2: Ensure accuracy on your resume; do not include false information.
2 coding questions + MCQs were asked.



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].
I solved it using two Pointer techniques.



In the given linked list, there is a cycle, hence we return true.

Use slow and fast Pointer
BIOS is used?
By operating system
By compiler
By interpreter
By application software
Banker's algorithm is used?
To prevent deadlock
To deadlock recovery
To solve the deadlock
None of these
Which of the following is a top-down approach in which the entity's higher level can be divided into two lower sub-entities?
Aggregation
Generalization
Specialization
All of the above
Which of the following refers collection of the information stored in a database at a specific time?
Independence
Instance of the database
Schema
Data Domain
The interviewer mainly asked coding questions and front-end questions.



An array c is a subarray of array d if c can be obtained from d by deletion of several elements from the beginning and several elements from the end.
For e.g.- The non-empty subarrays of an array [1,2,3] will be- [1],[2],[3],[1,2],[2,3],[1,2,3].
If arr = {-3,4,5}.
All the possible non-empty contiguous subarrays of “arr” are {-3}, {4}, {5}, {-3,4}, {4,5} and {-3,4,5}.
The product of these subarrays are -3, 4, 5, -12, 20 and -60 respectively.
The maximum product is 20. Hence, the answer is 20.
Can you solve this in linear time and constant space complexity?
Which is faster in JavaScript and ASP script?
What are global variables? How are these variables declared, and what are their associated problems?
What is a prompt box? (Learn)
Explain Hoisting in JavaScript. (Learn)
Difference between var and let keyword in javascript. (Learn)
What is the NaN property in JavaScript?
What is Callback Hell and what is the main cause of it? (Learn)
What are the differences between a Class component and a Functional component?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?