Tip 1 : Do practice coding question regularly on platform like leetcode, gfg.
Tip 2 : Before going interview. Check the interview experience on GFG. You will get some idea.
Tip 3 : Maintain your consistency
Tip 1 : Don't write false information in your resume.
Tip 2 : Be prepared with your resume
In this round question is based on numerical ability, verbal ability, logical ability., and computer fundamental .the duration of the test around 75 min. scheduled on 29 April. at 11 am...mainly they are focusing on aptitude part which i was able to clear this round. question was quite easy.. some question are tricky but i can say the level of this round is easy to moderate
#include "stdio.h"int main() { int x, y = 5, z = 5; x = y == z; printf("%d", x); getchar(); return 0; }
Ans:- 1
#includevoid f(int *p, int *q){ p = q; *p = 2;}int i = 0, j = 1;int main(){ f(&i, &j); printf("%d %d n", i, j); getchar(); return 0;}
Ans:- 0 2
/* p points to i and q points to j */
void f(int *p, int *q)
{
p = q; /* p also points to j now */
*p = 2; /* Value of j is changed to 2 now */
}
Which of the following is NOT true of deadlock prevention and deadlock avoidance schemes?
(A) In deadlock prevention, the request for resources is always granted if the resulting state is safe
(B) In deadlock avoidance, the request for resources is always granted if the result state is safe
(C) Deadlock avoidance is less restrictive than deadlock prevention
(D) Deadlock avoidance requires knowledge of resource requirements a priori
Tip 1 : you can do numeric ability question logical ability and verbal ability
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also
Which property of transaction protects data from system failure?
Ans:- Durability
Tip 1 : you can do numeric ability question logical ability and verbal ability
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also
Look at this series: 7, 10, 8, 11, 9, 12, ... What number should come next?
Tip 1 : you can do numeric ability question logical ability and verbal ability
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also
Which of the following is not the type of queue?
A) Priority Queue
B) Single-ended queue
C) Circular Queue
Ans:- B) Single ended queue
Tip 1 : you can do numeric ability question logical ability and verbal ability
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also
A graph having an edge from each vertex to every other vertex is called a
Tip 1 : you can do numeric ability question logical ability and verbal ability
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also
#include "stdio.h"int main() { int x, y = 5, z = 5; x = y == z; printf("%d", x); getchar(); return 0; }
A fruit seller had some apples. He sells 40% apples and still has 420 apples. What is the total number of apples he had originally?
there were 2 question in this question.. questions are from array string and linked list.. these 3 question were there. i was able to solve all three question



i have used dp for solving this ques


1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
firstly find the mid and iterate till the mid.

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