Tip 1 : Prepare to Resume well (Mention Internship if done)
Tip 2 : At least 1 good project (Any tech)
Tip 3 : Leetcode + Gfg practice is a must.
Tip 1 : Do not put false things
Tip 2 : At least 2 good projects
Out of all the 2-digit integers between 1 and 100, a 2-digit number has to be selected at random. What is the probability that the selected number is not divisible by 7?
The sum of the present ages of a father and his son is 60 years. five years ago, the father's age was four times the age of the son. so now the son's age will be?
In which access should a constructor be defined, so that the object/member function of the class can be created in any function?
Psychometric tests are used to measure an individual's mental capabilities and behavior. It was designed to check students overall suitability for a particular role based on performance in the test . They were trying to check personality characteristics and aptitude/cognitive ability.
Coding Round(DSA +Problem Solving)
Let’s say you have a binary tree as follows:-
Node 4 is a special node as it is the only child of node 2. Node 1 cannot be a special child as it does not have a parent. All the other nodes have a sibling i.e there parent has more than one child. Therefore return [4] as the answer.
Return the array/list containing special nodes in any order.
You can’t sell without buying first.
For the given array [ 2, 100, 150, 120],
The maximum profit can be achieved by buying the stock at minute 0 when its price is Rs. 2 and selling it at minute 2 when its price is Rs. 150.
So, the output will be 148.
What are joins and tell me about its types?
Joins and Types of Joins
A JOIN clause is used to combine rows from two or more tables, based on a related column between them.
1.) INNER JOIN: Returns records that have matching values in both tables
2.) LEFT (OUTER) JOIN: Returns all records from the left table, and the matched records from the right table
3.) RIGHT (OUTER) JOIN: Returns all records from the right table, and the matched records from the left table
4.) FULL (OUTER) JOIN: Returns all records when there is a match in the either left or right table
HR Round
1) Tell something about yourself?
2) How was your previous internship experience?
3) Are you interested in higher studies?
4) Why should we hire you?
5) Why Newgen Software?
6)Normal questions regarding family background, academics, and extra-curricular activities.
8) Situation Based Questions
Tip 1 : Be confident
Tip 2 : Have Good Communication skills
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?