Tip 1 : do atleast some project
Tip 2 : develop problem solving skill
Tip 1: write what you know, and mentioned some project
Tip 2: don't put false things
It was problem of SQL and plsql
Tip 1: clear your basics in sql
Tip 2: practice more queries
DSA questions all about pointing, recursion and some searching sorting algorithm
Tip 1: practice more n more mcq
Tip 2:do dry run while solving mcq
It was on Unix operating system about bash and kernal
Tip 1: clear your basics on operating system
This round is coding round, and it was all about 25 minutes, they have given me 3 coding problem where i need to solve any 2 coding problem with successful testcases in 25 minutes. I solved that
Let ‘ARR’ be: [3, 2, 1]
We can pick the whole array as a subarray and reverse it to get the sorted array [1, 2, 3].
Tip 1: practice all sorting algorithm
1. Push(num): Push the given number in the stack if the stack is not full.
2. Pop: Remove and print the top element from the stack if present, else print -1.
3. Top: Print the top element of the stack if present, else print -1.
4. isEmpty: Print 1 if the stack is empty, else print 0.
5. isFull: Print 1 if the stack is full, else print 0.
We perform the following operations on an empty stack which has capacity 2:
When operation 1 1 is performed, we insert 1 in the stack.
When operation 1 2 is performed, we insert 2 in the stack.
When operation 2 is performed, we remove the top element from the stack and print 2.
When operation 3 is performed, we print the top element of the stack, i.e., 3.
When operation 4 is performed, we print 0 because the stack is not empty.
When operation 5 is performed, we print 0 because the stack is size 1, which is not equal to its capacity.
Tip 1: practice more n more program of linked list, stacks and queues
This round also based on data structures and data analysis queries, it was around 30 to 35 minutes round
Tip 1: practice questions of binary tree from lit code
This problem based on PLSQL where i need to make real time package including procedure, function and cursor.
She have asked me questions about my background, my college, and my previous question, salary discuss happened.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What does ROLLBACK do in DBMS?