Tip 1 : Learn Data Structures and Algorithms.
Tip 2 : Practice coding question using coding platform like LeetCode or CodeChef.
Tip 3 : Focus more on time and space complexities and explore different ways to solve problem.
Tip 1 : Highlight your past experience if you have, skills and working projects in your resume.
Tip 2 : Do not put false things and over skills in your resume.
Timing-90 minutes is the Duration Of Assessment
you need to give the test within 5 days of getting the test mail.
There are total 2 sections-
1st is containing some mcq type question and 2nd is containing 2 coding questions.
Test is conducted virtually through Microsoft platform. Test covers DSA, OOPS concept, DBMS, SQL, Programming and some general question related to Leadership Principles and workstyles.
We need to answer questions related to Core subjects, DBMS, SQL, OOPS concept, Programming, Behavioral, Leadership Principles and workstyles.
this round is entirely based on MCQ's.
Questions like:-
1) Which of these is DML command?
2) What is the output of below program
3)What is the output of the flow chart program.
4)which unix command that creates a file without contend
5)Choose the correct property of foreign key in SQL?
6)Which unix command is used to redirect the no of characters in a file f1 to a file f2
7)How to show only last 10 files of a folder in unix?
8)How to copy files from one server to another server in unix?
9)What is the use of chmod command in unix?
Tip 1:Need to select correct option out of 4 options(MCQ type questions)
Tip 2:Revice your notes and practice more in required skill set of a job before giving the assessment.
Tip 3:Select correct option based on your knowledge



You are given ‘N’ = 5, ‘M’ = 5 and ‘EDGES’ = [[1, 2], [1, 3], [3, 4], [3, 5], [4, 5]].

The beautiful vertices in the given graph are ‘1’ and ‘3’. If we remove ‘1’, vertex ‘2’ will be disconnected from the connected component (‘3’↔’4’↔’5’). If we remove vertex ‘3’, we will get two disjoint connected components (‘1’↔’2’) and (‘4’↔’5’).
We need to solve 1 or 2(based on interviewer) coding question within 1 hour in which we need to explain our approach before writing the code and we need to give optimal solution of the approach.
Interviewer also ask some other question related to DBMS, SQL, OOPS concept and etc.



Don't know the solution, still i am struggling with this problem



1
/ \
2 3
The root to leaf path 1->2 represents the number 12.
The root to leaf path 1->3 represents the number 13.
The total sum of all the possible root to leaf paths is 12+13 = 25
The output may be very large, return the answer after taking modulus with (10^9+7).
Don't know the optimal solution

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?