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 Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Newgen Software Technologies Interview Questions, Process, and Tips

Updated 18 Mar 2025

Top Newgen Software Technologies Interview Questions and Answers

View all 103 questions

Newgen Software Technologies Interview Experiences

Popular Designations

186 interviews found

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

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Technical 

(5 Questions)

  • Q1. What are the different datatypes in python?
  • Ans. 

    Python has various datatypes including int, float, str, list, tuple, dict, set, bool.

    • int: whole numbers (e.g. 5)

    • float: decimal numbers (e.g. 3.14)

    • str: text (e.g. 'hello')

    • list: ordered collection (e.g. [1, 2, 3])

    • tuple: ordered, immutable collection (e.g. (1, 2, 3))

    • dict: key-value pairs (e.g. {'key': 'value'})

    • set: unordered collection of unique elements (e.g. {1, 2, 3})

    • bool: True or False values

  • Answered by AI
  • Q2. What is set and frozen set
  • Ans. 

    A set is a collection of unique elements with no specific order, while a frozen set is an immutable set that cannot be changed.

    • A set does not allow duplicate elements

    • A frozen set is created using the frozenset() function

    • Sets are mutable and can be modified, while frozen sets are immutable

    • Example: set1 = {1, 2, 3} ; frozenset1 = frozenset(set1)

  • Answered by AI
  • Q3. What is a hyperlink in HTML
  • Ans. 

    A hyperlink in HTML is a clickable text or image that redirects the user to another webpage or resource.

    • Hyperlinks are created using the <a> tag in HTML.

    • The 'href' attribute in the <a> tag specifies the URL of the page the link goes to.

    • Hyperlinks can also be used to link to specific sections within the same webpage using anchor tags.

  • Answered by AI
  • Q4. Questions related to project
  • Q5. What is CSS and why it is used
  • Ans. 

    CSS stands for Cascading Style Sheets and is used to style the appearance of web pages.

    • CSS is used to control the layout, colors, fonts, and other visual aspects of a website.

    • It allows for separation of content from design, making it easier to update and maintain websites.

    • Selectors are used to target specific HTML elements and apply styles to them.

    • CSS can be applied inline, embedded within HTML, or linked externally to...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Newgen Software Technologies Applications Engineer interview:
  • DBMS
  • SQL
  • HTML
  • Languages

Skills evaluated in this interview

Top Newgen Software Technologies Applications Engineer Interview Questions and Answers

Q1. 1. Two random coding problems. 2. Difference between DBMS and RDBMS. 3. What is call by reference and call by variable. 4. State exceptions in Java. 5. What is json?
View answer (1)

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Hacker rank test, java code and system design

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 be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops question basic lavle
  • Q2. Logical question

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 consecutive duplicates with the count of repetitions. Example: Input: If... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Applications Engineer Interview Questions & Answers

user image Shreyash Jaiswal

posted on 14 Oct 2023

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

The first round was MCQ based, there were questions from JAVA, SQL and computer science subjects.

Round 2 - Psychometric Test 

(1 Question)

  • Q1. There were 100 questions in this round.
Round 3 - Aptitude Test 

This was a MCQ based test and questions were from Aptitude and English.

Round 4 - Technical 

(1 Question)

  • Q1. The interviewer was very polite, he firstly asked me to introduce myself, then he went through my resume and asked me whether i have any technical skills or not. I said "Yes Sir" and I told him about my sk...
Round 5 - HR 

(1 Question)

  • Q1. These were the questions asked in HR round 1)Introduce yourself. 2)Tell me about your family background. 3)What is your biggest achievement till now? 4)What is your strength and weakness? 5)Why newgen? 6)W...

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basics of DSA, Computer Science Subjects, try to solve some puzzle on geeksforgeeks,
Don't write anything in your resume that you don't know, don't try to fool them, if you don't know, simply say no.
And don't try to cheat in online rounds as many students in my college were eliminated because they were caught doing cheating.

Top Newgen Software Technologies Applications Engineer Interview Questions and Answers

Q1. 1. Two random coding problems. 2. Difference between DBMS and RDBMS. 3. What is call by reference and call by variable. 4. State exceptions in Java. 5. What is json?
View answer (1)

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)

Newgen Software Technologies interview questions for popular designations

 Software Engineer

 (37)

 Software Developer

 (22)

 Applications Engineer

 (19)

 Senior Software Engineer

 (13)

 Business Analyst

 (9)

 Team Lead

 (5)

 Senior Business Analyst

 (3)

 Senior Project Manager

 (2)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Why do you want to join our organization
  • Ans. 

    I am impressed by your innovative products and strong company culture.

    • I admire your commitment to research and development.

    • I appreciate your focus on employee growth and development.

    • I am excited about the opportunity to work with cutting-edge technology.

    • I believe my skills and experience align well with your organization's goals.

  • Answered by AI
  • Q2. What are your goals
  • Ans. 

    My goal is to continuously learn and grow in my role as an Applications Engineer, while also contributing to the success of the team and company.

    • Continuously improve my technical skills and knowledge in the field of applications engineering

    • Work collaboratively with team members to solve complex problems and deliver high-quality solutions

    • Strive to exceed customer expectations by providing innovative and efficient soluti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Collection, core java 8

Top Newgen Software Technologies Applications Engineer Interview Questions and Answers

Q1. 1. Two random coding problems. 2. Difference between DBMS and RDBMS. 3. What is call by reference and call by variable. 4. State exceptions in Java. 5. What is json?
View answer (1)

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)

Get interview-ready with Top Newgen Software Technologies Interview Questions

Applications Engineer Interview Questions & Answers

user image Priyanshu Patel

posted on 4 Feb 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is react what is different classes in react
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React is a declarative and efficient library for creating UI components.

    • It allows developers to build reusable UI components that update efficiently.

    • React uses a virtual DOM to efficiently update only the necessary parts of the UI.

    • React supports the use of different classes to define components.

    • There are two types of classes in React: functional components and ...

  • Answered by AI
  • Q2. Oops concept an basic apptitude question(i wasn't able to solve)
  • Q3. What are componenets in react
  • Ans. 

    Components in React are reusable building blocks that encapsulate the UI and its logic.

    • Components are the building blocks of a React application

    • They encapsulate the UI and its logic

    • Components can be reused throughout the application

    • They can be functional components or class components

    • Components can have their own state and lifecycle methods

    • Examples of components in React are buttons, forms, and navigation bars

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Background check

Skills evaluated in this interview

Top Newgen Software Technologies Applications Engineer Interview Questions and Answers

Q1. 1. Two random coding problems. 2. Difference between DBMS and RDBMS. 3. What is call by reference and call by variable. 4. State exceptions in Java. 5. What is json?
View answer (1)

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)

Jobs at Newgen Software Technologies

View all

Java Developer Interview Questions & Answers

user image arav kumar

posted on 30 Nov 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 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 - One-on-one 

(8 Questions)

  • Q1. Explain OOPs concepts.
  • Ans. 

    OOPs concepts are fundamental principles of object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes by inheriting properties and behaviors from existing classes.

    • Polymorphism: Ability of an object to take on many forms.

    • Abstraction: Hiding complex implementation details and providing a simplified ...

  • Answered by AI
  • Q2. Write a program to count occurance the letter in a string.
  • Ans. 

    This program counts the occurrence of each letter in a given string.

    • Use a HashMap to store the count of each letter.

    • Iterate through the characters of the string and update the count in the HashMap.

    • Finally, print the count of each letter.

  • Answered by AI
  • Q3. Write a SQL query to find third highest salary from employee table.
  • Ans. 

    SQL query to find third highest salary from employee table.

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to limit the result to the third row

    • Use a subquery to exclude the highest and second highest salaries

  • Answered by AI
  • Q4. Difference between Array and arraylist.
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array has a fixed length, while ArrayList can grow dynamically.

    • Array can store both primitive types and objects, while ArrayList can only store objects.

    • Array uses square brackets [] for declaration, while ArrayList uses angle brackets <>.

    • Array provides direct access to elements using index, while ArrayList provides metho...

  • Answered by AI
  • Q5. Explain working of Arraylist.
  • Ans. 

    ArrayList is a dynamic array that can grow or shrink in size. It stores objects and provides methods for adding, removing, and accessing elements.

    • ArrayList is part of the Java Collections Framework.

    • It is implemented as a resizable array.

    • Elements can be added using the add() method.

    • Elements can be accessed using the get() method.

    • Elements can be removed using the remove() method.

    • The size() method returns the number of el...

  • Answered by AI
  • Q6. What is the default size of an arraylist.
  • Ans. 

    The default size of an ArrayList is 10.

    • The default initial capacity of an ArrayList is 10.

    • If the number of elements exceeds the initial capacity, the ArrayList automatically increases its size.

    • The capacity of an ArrayList can be increased manually using the ensureCapacity() method.

  • Answered by AI
  • Q7. Some questions from my resume about my previous experience.
  • Q8. The interviewer was stupid and in my opinion they are just wasting your precious time. After the interview they don't provide any updates about the interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study core Java in depth and some famous SQL questions.

Skills evaluated in this interview

Top Newgen Software Technologies Java Developer Interview Questions and Answers

Q1. Write a SQL query to find third highest salary from employee table.
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 4 interview rounds.

Round 1 - Assignment 

This test consist of Logical, Reasoning, Verbal and some Programming questions

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Java and Frameworks question
  • Q2. Stream api find the second largest salary
  • Ans. 

    Use Stream API to find the second largest salary in an array of salaries.

    • Use Stream.sorted() to sort the salaries in descending order

    • Use Stream.skip(1).findFirst() to get the second highest salary

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Insert middle in the linked list
  • Ans. 

    Insert a node in the middle of a linked list

    • Find the middle node using slow and fast pointers

    • Insert the new node after the middle node

    • Update the pointers to maintain the linked list structure

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterate through the linked list and change the direction of pointers

    • Use three pointers to keep track of current, previous, and next nodes

    • Update the head of the linked list to point to the last node

  • Answered by AI
  • Q3. Singletone design pattern
Round 4 - HR 

(2 Questions)

  • Q1. About your self
  • Q2. Previous company and project Experiance

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Skills evaluated in this interview

Top Newgen Software Technologies Senior Software Engineer Interview Questions and Answers

Q1. Dofferemt ways to prevent rerendering of a child component in react?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Sr DGM Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2023. There were 5 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 - Technical 

(1 Question)

  • Q1. This round was a logical one.
Round 3 - Technical 

(1 Question)

  • Q1. This round was a second technical round where they judge you on your overall experience.
Round 4 - HR 

(1 Question)

  • Q1. One of the worst experience, they had 3-4 hr round where normally in all other companies they will only discuss about salary and time for joining , but in Newgen it is more on a silly round where there so ...
Round 5 - HR 

(1 Question)

  • Q1. So again there is another hr round with CHRO Vivek so u can imagine how silly of them , and again I got a feedback stating that they will further get back to me and I have asked them to drop my candidature...

Interview Preparation Tips

Interview preparation tips for other job seekers - My humble advice don’t even dare to give or waste your precious time giving interview in Newgen as they are the silliest company to apply, go for a good company rather as these people are unprofessional, stupid and have rounds just to justify there salaries which are not making any sense and specially avoid talking to there CHRO Vivek you will have a nightmare as he is the most useless person to talk to.

Sr DGM Interview Questions asked at other Companies

Q1. What is horizon control and what are the effects if horizon not maintained well.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mathematics questions

Round 2 - Coding Test 

2 coading questions , and sudo code

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Ans. 

    I am a highly motivated Applications Engineer with a strong background in software development and problem-solving skills.

    • Experienced in developing and implementing software solutions for various applications

    • Skilled in troubleshooting and resolving technical issues

    • Strong communication and collaboration skills

    • Passionate about staying up-to-date with the latest technologies and trends

  • Answered by AI
  • Q2. You were a good student in college

Interview Preparation Tips

Interview preparation tips for other job seekers - Core Java, and sql basics

Top Newgen Software Technologies Applications Engineer Interview Questions and Answers

Q1. 1. Two random coding problems. 2. Difference between DBMS and RDBMS. 3. What is call by reference and call by variable. 4. State exceptions in Java. 5. What is json?
View answer (1)

Applications Engineer Interview Questions asked at other Companies

Q1. Minimum Special Sum Problem You are given an array ARR of length N. There are two operations defined for each index i in the array: FIRST_SUM(i): Calculates the sum of the first i numbers. LAST_SUM(i): Calculates the sum of the last N-i+1 ... read more
View answer (1)

Newgen Software Technologies Interview FAQs

How many rounds are there in Newgen Software Technologies 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 HR.
How to prepare for Newgen Software Technologies 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, SQL, Core Java, Javascript and J2Ee.
What are the top questions asked in Newgen Software Technologies interview?

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

  1. 1. Two random coding problems. 2. Difference between DBMS and RDBMS. 3. What is...read more
  2. 1. What is triggers 2. Difference between method overloading and method overrid...read more
  3. why you want and how many salery you wa...read more
How long is the Newgen Software Technologies interview process?

The duration of Newgen Software Technologies 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 Interview Process

based on 158 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 339 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
3i Infotech Interview Questions
3.5
 • 145 Interviews
Microland Interview Questions
3.4
 • 132 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Mastek Interview Questions
3.5
 • 120 Interviews
Maveric Systems Interview Questions
3.5
 • 118 Interviews
Sonata Software Interview Questions
3.4
 • 117 Interviews
View all

Newgen Software Technologies Reviews and Ratings

based on 1.5k reviews

3.7/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.6

Salary

4.1

Job security

3.6

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 1.5k Reviews and Ratings
Sr. UX Designer

Noida

3-5 Yrs

Not Disclosed

Senior Java Developer- Group Leader

Mumbai

6-8 Yrs

Not Disclosed

Global Talent Acquisition

Noida

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
2k salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
1.8k salaries
unlock blur

₹4 L/yr - ₹14.2 L/yr

Applications Engineer
556 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Team Lead
448 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Software Developer
433 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Newgen Software Technologies with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

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