Tip 1: Focus on pattern-related problems involving loops and conditional flow.
Tip 2: Practice SQL and DBMS concepts, such as joins.
Tip 3: Be confident and speak fluently.
Tip 1: Clearly highlight your core skills.
Tip 2: Include 2–3 relevant projects with brief descriptions and quantifiable impact.
The test was held in the morning around 11 AM IST. It took place in a controlled and proctored environment, ensuring fairness and focus. The assessment included sections on core technical concepts, aptitude, and coding.
The test included MCQs related to coding concepts, DBMS, operating systems, and computer networks. Topics covered included pattern-based problems, flowcharts, SQL queries, and DBMS concepts such as joins and normalization. There was also a basic English fluency test and questions related to numerical ability and puzzles.
The test started shortly after the first round, around 1 PM IST, in a controlled and proctored environment.
This section featured quantitative aptitude questions focused on topics such as percentages, ratios, profit and loss, number series, and time and work. The problems were designed to assess numerical reasoning, analytical thinking, and time management under pressure.
The psychometric test was designed to assess personality traits, decision-making style, and behavioral tendencies. It included situational judgment questions and multiple-choice scenarios to evaluate how well a candidate would fit into a team-oriented, fast-paced work environment. There were no right or wrong answers—consistency and honesty were key.
The problems in this round involved behavioral and situational judgment scenarios presented in an MCQ format. The questions assessed personality traits such as responsibility, adaptability, communication, integrity, and teamwork. Candidates were required to choose the most appropriate response based on how they would react in workplace situations.
The face-to-face technical interview was conducted in the afternoon at the company office. The environment was professional yet comfortable, with a focus on open discussion. The interviewer was approachable and attentive, encouraging me to explain my thought process clearly. I was asked about my background, resume projects, and short-term and long-term goals. The technical questions included a star pattern coding problem, SQL queries, DBMS concepts like joins and normalization, as well as probability-based questions and verbal puzzles. It was a balanced mix of technical and logical thinking assessments.




To solve the star pattern problem, we begin by taking an integer input, n, from the user, which determines the number of rows in the pattern. The outer loop runs from 1 to n, controlling the number of rows. In each iteration, the number of stars printed corresponds to the current row number. For instance, in the first iteration, we print 1 star; in the second iteration, 2 stars; and so on, until the last iteration where we print n stars. The inner operation within the loop uses string multiplication to print the stars ('*' * i), where i represents the current row number. After printing the stars for each row, the program automatically moves to the next line.
Given two tables, Employees (emp_id, emp_name, department_id) and Departments (department_id, department_name), write an SQL query to fetch employee names along with their respective department names using an INNER JOIN.
Tip 1: Ensure the join column exists and matches in both tables before using an INNER JOIN.
Tip 2: Use a LEFT JOIN if you need to include records even when there’s no match.
Tip 3: Handle NULL values appropriately, as INNER JOIN excludes them.
The HR round was conducted in the afternoon at the company office. The interview focused on understanding my background, short-term and long-term goals, and motivation for applying to Newgen Software. The interviewer was friendly and asked a few behavioral questions to assess my problem-solving approach, teamwork skills, and adaptability.
I was asked about my background, previous projects, and technical skills in Java, SQL, and Python. The interviewer also inquired about my short-term and long-term career goals, my motivation for applying, and how I handle challenges in a team environment. Additionally, behavioral questions were asked to assess my problem-solving and adaptability.
Tip 1: Be clear about your short-term and long-term goals.
Tip 2: Showcase relevant technical skills and projects confidently.
Tip 3: Prepare to discuss how you handle challenges and work in teams.

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?