Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Newgen Software Technologies Team. If you also belong to the team, you can get access from here

Newgen Software Technologies

Compare button icon Compare button icon Compare

Filter interviews by

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

Updated 4 Jan 2025

Top Newgen Software Technologies Software Developer Interview Questions and Answers

  • Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can ...read more
  • Q2. Relative Sorting Problem Statement You are given two arrays, 'ARR' of size 'N' and 'BRR' of size 'M'. Your task is to sort the elements of 'ARR' such that their relative ...read more
  • Q3. Remove Duplicates from Sorted Array Problem Statement You are given a sorted integer array ARR of size N . Your task is to remove the duplicates in such a way that each ...read more
View all 14 questions

Newgen Software Technologies Software Developer Interview Experiences

22 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Dec 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

First Round consists of Basic Aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Then I got into Technical Interview, It was pretty good, Interviewer asked me some questions on programming basics also asked me to write some simple codes.
Round 4 - HR 

(1 Question)

  • Q1. The HR round was all about my communication skills and represention of myself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear on basics and Always work on your communication skills. Rest all depends on your understanding level.

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is Singleton Class?
  • Ans. 

    A Singleton Class is a class that can only have one instance and provides a global point of access to it.

    • Singleton Class restricts the instantiation of a class to a single object.

    • It is used when only one instance of a class is required throughout the system.

    • It provides a global point of access to the instance.

    • It is implemented by making the constructor private and providing a static method to access the instance.

    • Exampl...

  • Answered by AI
  • Q2. Why do we use Static in java
  • Ans. 

    Static keyword in Java is used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q3. Write Program with Singleton class
  • Ans. 

    Singleton class ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to get the instance of the class

    • Ensure thread safety by using synchronized keyword or static initialization

    • Example: Database connection manager

  • Answered by AI
  • Q4. Internal working of Hashmap
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • Hashmap uses an array to store the key-value pairs

    • The keys are hashed to generate an index in the array

    • If two keys hash to the same index, a linked list is used to store the values

    • Retrieving a value involves hashing the key to find the index and then traversing the linked list if necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - With 2 Years of experience, you can't expect people to be master on any topic, Stop humiliating people by asking questions on a single topic only.

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I was interviewed in Jun 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Total 75 Mcq With 1 coding Question
It Was a written round on amcat which consist of 30 technical Mcqs and 1 coding Question and 30 aptitude question and 15 logical reasonings were there.
10 mcq from C programming 
5 mcq from dbms
5 mcq from Operating System
and rest mcq were from oops concept , Time complexities , searching , sorting , bfs and dfs .

  • Q1. 

    Remove Duplicates from Sorted Array Problem Statement

    You are given a sorted integer array ARR of size N. Your task is to remove the duplicates in such a way that each element appears only once. The outpu...

  • Ans. 

    The task is to remove duplicates from a sorted integer array in-place and return the length of the modified array.

    • Use two pointers, one for iterating through the array and another for keeping track of the unique elements.

    • Compare the current element with the next element. If they are the same, move the second pointer forward.

    • If they are different, update the first pointer and replace the element at the first pointer wit...

  • Answered by AI
Round 2 - Assignment 

Round duration - 50 minutes
Round difficulty - Easy

75 Psychometric question was to be answered in 50 minutes

Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

It was a technical round,so basically started with a introduction from both sides .he started asking questions from dsa 
starting with easy questions 
1. Reverse a string 
2. difference between merge sort and quick sort 
3. binary search theory 
4. dbms joins questions 
then he scanned my resume ans told me to explain my major project and i explained it throughly and asked some questions technologies which i have used 
then some operating questions .
and later he asked about my hobbies and the how different societies and clubs have helped me in my college days.
the interview last for 1 hour and i asked for a feedback and he said it was great interviewing u .
after that some

  • Q1. 

    Reverse String Word Wise

    You are tasked with reversing the given string word-wise. This means that the last word in the input string should appear first, the second-last word second, and so on. Importantl...

  • Ans. 

    Reverse the given string word-wise while keeping the characters of each word in their original order.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words in the resulting array

    • Join the words back together with spaces in between

  • Answered by AI
Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It was HR round so he asked me some behaviorial questions starting with my introduction family background , Why i want to join newgen? why should we hire u?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Kalinga Institute of Industrial Technology. I applied for the job as SDE - 1 in NoidaEligibility criteriaCgpa Above 8 were only shortlisted by the companyNewgen Software interview preparation:Topics to prepare for the interview - The top topics are 1 Dsa: Array , strings , Binary search , Sorting , searching problems from Geeksforgeeks (All problems which i pratice are of easy level and medium level) and all OOPS Concept .2.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Lets Go with Dsa , Practice at least 20 question of all topics like array , string , searching sorting , tree in any online coding platform , the best is to start from geeksforgeeks ranging from easy level to medium level question. Make sure your theoratical concepts are clear before coding . OOPS concepts are very important , he grilled me 15 minutes on oops concepts 

Tip 2 : Make at least 1 major Project and 1 minor Project and don't fake technologies because the interviewer is going to ask all questions from the projects (why u have used this technology or frame works , some basics and intermediate questions and some behaviorial questions like how u met the deadline, how did u divide the work in team if it's a team project ) and if possible if u have deployed ur project on github its better to provide a link of ur projects in resume 

Tip 3 : The interview is here to hire u not to reject u , nobody is perfect , so he/she is searching for a never giving up attitude , he/she will grill u giving some advanced questions , don't direct say no , i cant solve this question . take ur time , think about various approaches and think loudly , so that he/she can help u , i had the same scenario but i kept on giving various approaches and after 5 mins of brainstorming , he gave me a hint and i come with a better solution . I was not able to answer 3-4 questions still gets selected. So aleways keep a positive and never giving up attitude

Application resume tips for other job seekers

Tip 1 : Make at least 1 major Project and 1 minor Project and don't fake technologies because the interviewer is going to ask all questions from the projects (why u have used this technology or frame works , some basics and intermediate questions and some behavioral questions like how u met the deadline, how did u divide the work in team if it's a team project ) and if possible if u have deployed ur project on github its better to provide a link of ur projects in resume .

Tip 2 : The interview is here to hire u not to reject u , nobody is perfect , so he/she is searching for a never giving up attitude , he/she will grill u giving some advanced questions , dont direct say no , i cant solve this question . take ur time , think about various approaches and think loudly , so that he/she can help u , i had the same scenario but i kept on giving various approaches and after 5 mins of brainstorming , he gave me a hint and i come with a better solution . I was not able to answer 3-4 questions still gets selected. So aleways keep a positive and never giving up attitude

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

It was an online technical, aptitude, and English test.

  • Q1. 

    Relative Sorting Problem Statement

    You are given two arrays, 'ARR' of size 'N' and 'BRR' of size 'M'. Your task is to sort the elements of 'ARR' such that their relative order matches that in 'BRR'. Any e...

  • Ans. 

    The task is to sort the elements of ARR in such a way that the relative order among the elements will be the same as those are in BRR. For the elements not present in BRR, append them in the last in sorted order.

    • Create a frequency map of elements in ARR

    • Iterate through BRR and for each element, append it to the result array the number of times it appears in ARR

    • Iterate through the frequency map and for each element not p...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was a face to face technical interview round where based on my previous study and resume I was supposed to answer the questions asked by them.

  • Q1. 

    N-th Fibonacci Number Problem Statement

    Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation.

    Since the answer can be very large, return the answer ...

  • Ans. 

    The task is to find the Nth Fibonacci number using matrix exponentiation.

    • Use matrix exponentiation to efficiently calculate the Nth Fibonacci number

    • Return the answer modulo 10^9 + 7 to handle large numbers

    • Implement the function to solve the problem

    • The Fibonacci sequence starts with 1, 1, so F(1) = F(2) = 1

    • The time complexity can be improved to better than O(N) using matrix exponentiation

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It was HR interview with basic questions and checking according to SWOT analysis.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in DelhiEligibility criteriaB.Tech/BCANewgen Software Technologies interview preparation:Topics to prepare for the interview - Data Structures, Any 1 or 2 Programming Languages, Frontend Development, Communication Skills, Database languageTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Don't try to cover everything, go with one or two skills to master it and have some general knowledge about others.
Tip 2 : Do a project along with everything you learn. Practical exposure is what organizations demand.
Tip 3 : Do not ignore soft skills at all. Many underestimate the magic of soft skills in getting selected over others.

Application resume tips for other job seekers

Tip 1 : Resume should not be more than 1 or 2 pages. All information should be provided in the form of bullets and numbered in a precise manner and not just in long paragraphs with detailing for every aspect.
Tip 2 : The resume should be easily readable with formal fonts and design, and should not contain false information.

Final outcome of the interviewSelected

Skills evaluated in this interview

Newgen Software Technologies interview questions for designations

 Software Developer Intern

 (1)

 Senior Software Developer

 (1)

 Software Engineer

 (37)

 Software Analyst

 (1)

 Java Developer

 (2)

 Backend Developer

 (1)

 PHP Developer

 (1)

 Senior Software Engineer

 (12)

I applied via Recruitment Consultant and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1. What is triggers 2. Difference between method overloading and method overriding 3. Ask me to code five numbers in ascending order 4.ask me to code prime or not 5. Difference between final and finally ke...
  • Ans. 

    Interview questions for Software Developer on triggers, method overloading/overriding, sorting, prime numbers, final/finally keyword, and normalization.

    • Triggers are database objects that are automatically executed in response to certain events.

    • Method overloading is having multiple methods with the same name but different parameters, while method overriding is having a subclass method with the same name and parameters a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through coding part and be true to your resume and be confident

Skills evaluated in this interview

Get interview-ready with Top Newgen Software Technologies Interview Questions

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 
Round 3 - HR 

(1 Question)

  • Q1. They just check your mindset

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your coding skills and prepare well

I was interviewed in Nov 2020.

Round 1 - Coding Test 

Round duration - 100 minutes
Round difficulty - Medium

The complete test will be Audio and Video Proctored, Please be available in front of the camera throughout the test duration. Assessment login details will be sent to the candidate’s registered email id prior to assessment. The Aptitude 25 questions - 35 Minutes, English 25 questions - 30 Minutes, Technical 25 questions - 35 Minutes. Those who clear the first test would have a second test of Psychometric duration 60 Mins on the same day of the test. Shortlisted candidates would have interviews post that.

Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This round consisted of various technical questions such as questions on web technologies, databases, OOPS concepts, and coding questions.

  • Q1. 

    Binary Palindrome Check

    Given an integer N, determine whether its binary representation is a palindrome.

    Input:

    The first line contains an integer 'T' representing the number of test cases. 
    The next 'T'...
  • Ans. 

    Check if the binary representation of a given integer is a palindrome.

    • Convert the integer to binary representation.

    • Check if the binary representation is a palindrome by comparing it with its reverse.

    • Return true if it is a palindrome, false otherwise.

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

I was asked to introduce myself and about my hobbies. They were very general questions. They asked me about my strengths and weakness. In the end, they asked me would I re-locate.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Guru Tegh Bahadur Institute of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteriaAbove 8+ CGPANewgen Software interview preparation:Topics to prepare for the interview - Data structures, Algorithms, Object-oriented programming, Database management system, Python, Django, Machine Learning, web technologies, Problem-solving, AptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing. 
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 4 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 5 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests.
Tip 6 : Be thorough with OOPs, DBMS, and the technologies on which you have worked for the interview.
Tip 7 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.
Tip 8 : For HR interviews prepare questions, prepare questions such as introduce yourself, your strengths, your weakness.
Confidence is the key you need to be an expert in. I was not aware of some things the interviewer asked during my interviews. But due to my confidence, he skipped that part.
Tip 9 : Be in formals with the properly ironed dress, and try to join 5 minutes early than the joining time. It will have a positive affect.

Application resume tips for other job seekers

Tip 1 : Make sure your resume fits everything into a single page. 
Tip 2 : Have at least 2 projects on your resume. 
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume. 
Tip 4 : Mention the work you have done during your internships. 
Tip 5 : Include an objective in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked the multiple questions regarding to my profile likr about the project , skills, domain and about your future expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus to the fundamentals and be confident.
Stick with your resume

I was interviewed before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.

    • Return the maximum sum as the result.

    • Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.

  • Answered by AI
  • Q2. 

    Add Two Numbers as Linked Lists

    You are given two singly linked lists, where each list represents a positive number without any leading zeros.

    Your task is to add these two numbers and return the sum as ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry

    • Create a new linked list to store the sum

    • Handle cases where one list is longer than the other

    • Consider edge cases like carry at the end of addition

  • Answered by AI
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was a normal discussion about the role, the job expectations and about the company culture.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 8 CGPANewgen Software interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, OOPS, Dynamic Programming, AptitudeTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.

Application resume tips for other job seekers

Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics on java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the basics on which you are working or learned and the profile they have offered. Be brave and don't be get scared by seeing the interviewer and the way he asking questions.

Newgen Software Technologies Interview FAQs

How many rounds are there in Newgen Software Technologies Software Developer interview?
Newgen Software Technologies interview process usually has 2-3 rounds. The most common rounds in the Newgen Software Technologies interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Newgen Software Technologies Software Developer 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 Core Java, JSP Servlets, SQL, EJB and HR Administration.
What are the top questions asked in Newgen Software Technologies Software Developer interview?

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

  1. 1. What is triggers 2. Difference between method overloading and method overrid...read more
  2. Why do we use Static in j...read more
  3. What is Singleton Cla...read more

Tell us how to improve this page.

Newgen Software Technologies Software Developer Interview Process

based on 12 interviews

4 Interview rounds

  • Technical Round
  • HR Round
  • Aptitude Test Round
  • Personal Interview1 Round
View more
Newgen Software Technologies Software Developer Salary
based on 407 salaries
₹3 L/yr - ₹12.7 L/yr
12% less than the average Software Developer Salary in India
View more details

Newgen Software Technologies Software Developer Reviews and Ratings

based on 53 reviews

3.4/5

Rating in categories

3.0

Skill development

3.3

Work-life balance

3.4

Salary

4.1

Job security

3.4

Company culture

3.5

Promotions

3.1

Work satisfaction

Explore 53 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
541 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
488 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Analyst
402 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