Tip 1 : Prepare for sorting algorithms
Tip 2 : Prepare for basic SQL statements
Tip 3 : Explain whatever you're contribution is in the projects mentioned clearly
Tip 4 : Do prepare for some puzzles too
Tip 1 : Do have projects in your resume
Tip 2 : Do provide your soft skills and hobbies
The round was divided into 3 sections:
1. Technical
2. Quantitative and Logical
3. English
Timing: Around noon
Environment: College Campus Labs
It was scheduled for the afternoon/evening. Environment was a conference room. Interviewer was a nice man who asked few basic questions from DSA and even helped if I got stuck somewhere.
Write some commands of the following types:
DDL
DML
DCL
TCL
Tip 1 : Prepare well for SQL
Tip 2 : Learn about all the types of languages



Write Algorithm for Bubble Sort. Explain how it works to a Layman. What sorts are better than the Bubble Sort.
Wrote pseudocode for it and explained the algorithm in simple words. Mentioned that merge and quick sort are better. Merge sort will however use more memory and explained how Quick sort's worst case can be avoided by using a random pivot.
You have a set of 10 weights, each weight weighing 10g. There are 10 such sets. But set contains 10 weights of 9g. Determine the set of 9g weights by using a weighing scale once.
Soln: take 1 weight from set1, 2 from set2 ... 10 weights from set10. Put all of them on the weighing scale at once. 100g - weight on the scale will give the set for the 9g weights.
Tip 1 : practice such questions from online platforms.
This round was also held in the college campus. Interviewer was a nice person who asked quite standard HR questions.
Why do you want to join Newgen?
Are you a team player?
Where do you see yourself in five years?
Tip 1 : Prepare for basic HR Questions
Tip 2 : Know the company vision and mission
Tip 3 : Know the name of company's CEO and founders

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?