Upload Button Icon Add office photos

Filter interviews by

Newgen Software Technologies Software Engineer Interview Questions, Process, and Tips

Updated 10 Nov 2024

Top Newgen Software Technologies Software Engineer Interview Questions and Answers

  • Q1. String Compression Problem Statement Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the c ...read more
  • Q2. Maximum Non-Crossing Ropes Problem In a village with a river at its center, there are ‘N’ houses on each bank of the river. The northern bank’s houses have distinct X-co ...read more
  • Q3. What are the basic concepts of Object-Oriented Programming, and how do they relate to data structures and algorithms?
View all 17 questions

Newgen Software Technologies Software Engineer Interview Experiences

37 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Array string questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Normal full stack questions

Interview Questionnaire 

4 Questions

  • Q1. Mainly questions are about core java like collection framework
  • Q2. Oops concepts with examples and need of them
  • Ans. 

    Oops concepts are fundamental to object-oriented programming. They help in creating modular and reusable code.

    • Encapsulation - bundling of data and methods that operate on that data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details and showing only functionality

    • Examples - Car class inheriting from Vehicle class, Animal c...

  • Answered by AI
  • Q3. Sql questions
  • Q4. Write a query to find out the 2nd highest salary from the table ?
  • Ans. 

    Query to find 2nd highest salary from a table

    • Use ORDER BY and LIMIT

    • Exclude the highest salary using subquery

    • Handle cases where there are ties

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Array string basic Java questions
Round 2 - HR 

(1 Question)

  • Q1. Normal intro and all question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Related to core java and oops in java
  • Q2. Database design using SQL and queries related to it
  • Ans. 

    Database design is crucial for efficient data management. SQL queries help retrieve and manipulate data.

    • Understand the data requirements and relationships before designing the database schema

    • Normalize the data to reduce redundancy and improve data integrity

    • Use primary and foreign keys to establish relationships between tables

    • Write efficient SQL queries to retrieve and manipulate data

    • Optimize the database performance by

  • Answered by AI
  • Q3. Related to your resume and projects and past work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on your skills and answer confidently.

Skills evaluated in this interview

Newgen Software Technologies interview questions for designations

 Senior Software Engineer

 (12)

 Associate Software Engineer

 (1)

 Software Engineer II

 (1)

 Software Engineer Trainee

 (1)

 Software Design Engineer

 (1)

 Senior Software Development Engineer

 (1)

 Senior Software Test Engineer

 (1)

 Trainee Software Test Engineer

 (1)

I was interviewed before Nov 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

It is the technical interview round. I was provided the slot of 11:40 AM - 12:20 PM. It is scheduled on the hirepro platform. The interview platform is already integrated with a coding editor. The interviewer joined at 11:50 AM. They asked me a lot of questions regarding OOPS, SQL and also give me coding questions along with test cases to build and run at that time.

  • Q1. 

    Maximum Non-Crossing Ropes Problem

    In a village with a river at its center, there are ‘N’ houses on each bank of the river. The northern bank’s houses have distinct X-coordinates given by an array A[1], A...

  • Ans. 

    The task is to find the maximum number of non-crossing rope connections possible between houses on each bank of a river.

    • Sort the arrays A and B in ascending order.

    • Use dynamic programming to find the longest increasing subsequence between A and B.

    • The length of the longest increasing subsequence is the maximum number of non-crossing connections.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as Software Engineer in NoidaEligibility criteriaUG (60% and above), 10th & 12th CBSE Board: 90% and above, 10th & 12th Other Board: 80% and above, Gap of maximum 2 years, No Diploma HoldersNewgen Software interview preparation:Topics to prepare for the interview - Database Management, Data Structures, OOPS, Algorithms, Operating SystemTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Must be very clear with your object-oriented programming concepts.
Tip 2 : Must be able to build new solutions instantaneously.
Tip 3 : Knowledge of java is like the cherry on the cake.

Application resume tips for other job seekers

Tip 1 : The fresher resume is not more than one page. Try to accommodate everything in a smarter way in a single page.
Tip 2 : Please put only those things in a resume which are true or you are sure that you will handle every cross-questioning of that.

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Newgen Software Technologies Interview Questions

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Online test of 90 minutes at 5:30 pm

  • Q1. What are the basic concepts of Object-Oriented Programming, and how do they relate to data structures and algorithms?
  • Ans. 

    Object-Oriented Programming concepts include encapsulation, inheritance, and polymorphism, which are used to organize and manipulate data in data structures and algorithms.

    • Encapsulation: Bundling data and methods that operate on the data together in a single unit (object). Example: a class representing a car with properties like color and methods like drive().

    • Inheritance: Allowing a class to inherit properties and meth...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Online coding interview of 45 minutes at 6:10PM.

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. 

    Implement a program to compress a string by replacing consecutive duplicates with the count of repetitions.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Replace consecutive duplicates with the count of repetitions.

    • Handle the case where the count of repetitions is greater than 1 and less than or equal to 9.

  • Answered by AI
  • Q2. Can you explain queries related to insert, selection, and joins in a database management system?
  • Ans. 

    Explanation of insert, select, and join queries in a database management system.

    • Insert query is used to add new records to a table.

    • Select query is used to retrieve data from a table based on specified criteria.

    • Join query is used to combine rows from two or more tables based on a related column between them.

    • Examples: INSERT INTO table_name (column1, column2) VALUES (value1, value2); SELECT * FROM table_name WHERE condit...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round of 30 minutes at 6pm

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaNewgen Software interview preparation:Topics to prepare for the interview - Data Structures and algorithms(arrays,strings,linked list,graphs,trees,recursion,backtrack),OOPS,Relational Database Management System, Operating SystemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be accurate in one language rather than doing more languages but not perfect in anyone
Tip 2 : Revise your concepts regularly and try to attempt 3-4 times a question which you cannot do in first time so that after that if u see question of that type u know how to approach 
Tip 3 : Do practice of quality questions not only quantity.

Application resume tips for other job seekers

Tip 1 : One page resume 
Tip 2 : Only mentioned that projects and skills in which you are really good don't write anything just to fulfill the space

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of java, spring,springboot etc..

Interview Preparation Tips

Interview preparation tips for other job seekers - brushup basics of technolgy

I applied via Naukri.com and was interviewed before Jul 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

General Math and Aptitude Question. Few Questions on English and Psychology.

Round 2 - Technical 

(1 Question)

  • Q1. Basic OOPs questions, Simple String Programs, and Logic building. About your current Project and Role if you are having experience. All questions will be limited to your resume.
Round 3 - Technical 

(1 Question)

  • Q1. Basic technical skills, communication, willingness to learn new things, and your expectations from the company. Few questions around your resume.
Round 4 - HR 

(1 Question)

  • Q1. Current location. Comfort with a hybrid working model. Available to join the organization. Negotiation for CTC will there is scope.

Interview Preparation Tips

Topics to prepare for Newgen Software Technologies Software Engineer interview:
  • Core Java
  • SQL
  • SQL Indexes
  • SQL Joins
  • SDLC Life Cycle
Interview preparation tips for other job seekers - Please prepare your resume very well. Do not mention topics and technologies just to show as the interviewer will ask questions on topics/technologies mentioned in the resume only. Basic coding practice should be done i.e. you should be able to write basic code and compile it successfully. Basics of Java/OOPs will help a lot.

I applied via Naukri.com and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. OOPS, collection, database
  • Q2. Method overload and overrding, interface, abstract class, one small program on string manipulation,database queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your core java basics revised and keep sound knowledge of your project

I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOPS Concepts, Jboss Directory structure, some basics of java and things you write in your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good.
I had to crack and MCQ/output based technical test of a good level.
Then face to face round where difficulty level was moderate.
Although you might face late response issue with them. Rest went well

Newgen Software Technologies Interview FAQs

How many rounds are there in Newgen Software Technologies Software Engineer interview?
Newgen Software Technologies interview process usually has 2-3 rounds. The most common rounds in the Newgen Software Technologies interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Newgen Software Technologies Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Newgen Software Technologies. The most common topics and skills that interviewers at Newgen Software Technologies expect are Java, Javascript, Hibernate, J2Ee and SDLC.
What are the top questions asked in Newgen Software Technologies Software Engineer interview?

Some of the top questions asked at the Newgen Software Technologies Software Engineer interview -

  1. How to compile all Java files inside a folder using ...read more
  2. Write a query to find out the 2nd highest salary from the tabl...read more
  3. Make a C++ class and show its implementat...read more
How long is the Newgen Software Technologies Software Engineer interview process?

The duration of Newgen Software Technologies Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Newgen Software Technologies Software Engineer Interview Process

based on 23 interviews

5 Interview rounds

  • Technical Round
  • HR Round - 1
  • Aptitude Test Round
  • Personal Interview1 Round
  • HR Round - 2
View more
Newgen Software Technologies Software Engineer Salary
based on 2k salaries
₹3 L/yr - ₹10 L/yr
23% less than the average Software Engineer Salary in India
View more details

Newgen Software Technologies Software Engineer Reviews and Ratings

based on 244 reviews

3.6/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.5

Salary

4.0

Job security

3.4

Company culture

3.5

Promotions

3.2

Work satisfaction

Explore 244 Reviews and Ratings
Software Engineer
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Applications Engineer
531 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
488 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
407 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Newgen Software Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview