Tip 1 :work on DSA and basic coding skills.
Tip 2 : Be well versed with OOPS and DBMS concepts.
Tip 3 :Work on your communication skills.
Tip 1:have some projects and internships on your resume and be prepared for questions about thr same.
Tip 2:Be honest and dont provide false information and limit your resume to one page.
It consisted of two sections, first was a timed 20 min aptitude and problem solving section and second was untimed personality test.
Which among the following best describes encapsulation?
a) It is a way of combining various data members into a single unit
b) It is a way of combining various member functions into a single unit
c) It is a way of combining various data members and member functions into a single unit which can operate on any data
d) It is a way of combining various data members and member functions that operate on those data members into a single unit
Answer: d
Explanation: It is a way of combining both data members and member functions, which operate on those data members, into a single unit. We call it a class in OOP generally. This feature have helped us modify the structures used in C language to be upgraded into class in C++ and other languages
During transaction before commit which of the following statement is done automatically in case of shutdown?
A) rollback
B)commit
C)View
D)flashback
It was a question about trasaction management and ACID properties.
In case of a shutdown, Rollback is done automatically
The answer was rollback
Which tree is also known as self balancing binary tree?
This question was based on tree data structure and the answer was avl tree.
What is the worst case time complexity of quick sort ?
Tip 1:study about searching and sorting algorithms well.
Tip 2:practice questions on searching and sorting algorithms.
Tip 3:Implement the algorithms.
Which of the following series will be printed by the given pseudocode?
Integer a, b, c
Set b = 0, c = 0
for(each a from 1 to 5)
print c
b = b + 1
c = c + b
end for
Firstly variables a, b, and c are initialized, then b and c are assigned values 0 and 0 respectively.
Now run a loop from 1 to 5, in each iteration b is incremented by 1, and c is incremented by b.
In the first iteration print c = 0 value of b is incremented by 1 i.e. b = 1, c is incremented by b i.e. c = 1
In the second iteration print c = 1 value of b is incremented by 1 i.e. b = 2, c is incremented by b i.e. c = 3
In the third iteration print c = 3 value of b is incremented by 1 i.e. b = 3, c is incremented by b i.e. c = 6
In the fourth iteration print c = 6 value of b is incremented by 1 i.e. b = 4, c is incremented by b i.e. c = 10
In the fifth iteration print c = 10 value of b is incremented by 1 i.e. b = 5, c is incremented by b i.e. c = 15
Thus the final series is 0 1 3 6 10
Integer a, b, c
Set c = 12, b = 4
a = c / b
c = b >> a
Print c
Ans:- 0
initial value of c = 12 and b = 4
Then a = c/b = 12/4 = 3
Now c = b(4) right shift by a(3) = 0
It was a 30 min interview on MS teams at 3 pm in the evening. The interviewer was very polite and elaborated the questions very well. The interview went smoothly.
Explain normalization and normalize the given table using first and second normal form.
Tip 1:be well versed with concepts in DBMS
Tip 2:practice questions on first normal form
Tip 3:practice questions on second normal form.



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
Merge sort is defined as a sorting algorithm that works by dividing an array into smaller subarrays, sorting each subarray, and then merging the sorted subarrays back together to form the final sorted array.



Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.


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