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 Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top Newgen Software Technologies Interview Questions and Answers

View all 103 questions

Newgen Software Technologies Interview Experiences

Popular Designations

183 interviews found

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

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 (42)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal logical, verbal, and quantitative ability questions.

Round 2 - Psychometric Test 

(1 Question)

  • Q1. Behavioural questions like how do you manage your team what do you do in thia or that situation
Round 3 - Technical 

(2 Questions)

  • Q1. Computer Fundamentals like OOPS,DBMS and SQL
  • Q2. Questions Based on yourresume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Patient and work o you CS fundamentals

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Newgen Software Technologies Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. Data structure [Array]
  • Q2. Core JAVA questions[ exception handling , OOPS , Collections Framework ]
  • Q3. JDBC and SQL questions
Round 2 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Tell me one scenerio under which you did development
  • Ans. 

    Developed a mobile app for tracking daily water intake

    • Researched existing water tracking apps for inspiration

    • Designed user interface for easy input of water consumption

    • Implemented backend database to store user data

    • Tested app with beta users for feedback and improvements

  • Answered by AI

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 (203)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the OOPS concepts
  • Q2. MultiThreading, synchronization
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

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)

Newgen Software Technologies interview questions for popular designations

 Software Engineer

 (37)

 Software Developer

 (22)

 Applications Engineer

 (19)

 Senior Software Engineer

 (12)

 Business Analyst

 (9)

 Team Lead

 (5)

 Senior Business Analyst

 (3)

 Senior Project Manager

 (2)

XML Operator Interview Questions & Answers

user image sivaranjini ravi

posted on 13 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

Xml file will be validated as parsed,spix and content checker,checktex and stlyeview

Round 2 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. About my work experience
Round 3 - HR 

(2 Questions)

  • Q1. Work experience
  • Q2. Xml operator job

Get interview-ready with Top Newgen Software Technologies Interview Questions

Associate Engineer Interview Questions & Answers

user image Jatin Chaudhary

posted on 24 Oct 2024

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

(2 Questions)

  • Q1. What is context in react?
  • Ans. 

    Context in React is a way to pass data through the component tree without having to pass props down manually at every level.

    • Context provides a way to share values like themes, locale preferences, etc. across the component tree.

    • It helps in avoiding prop drilling, where props are passed down multiple levels of components.

    • Context consists of two parts: Provider and Consumer. Provider allows components to subscribe to cont...

  • Answered by AI
  • Q2. What is redux in react?
  • Ans. 

    Redux is a predictable state container for JavaScript apps, commonly used with React for managing application state.

    • Redux is a state management library for JavaScript applications.

    • It helps in managing the state of the application in a predictable way.

    • Redux stores the entire state of the application in a single immutable state tree.

    • Actions are dispatched to update the state, and reducers specify how the state changes in...

  • Answered by AI

Skills evaluated in this interview

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Remove duplicates from the list
  • Ans. 

    Remove duplicates from an array of strings

    • Create a new set to store unique values

    • Iterate through the array and add each element to the set

    • Convert the set back to an array to remove duplicates

  • Answered by AI
  • Q2. Inheritance related theoretical

Skills evaluated in this interview

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS Basic Questions and examples
  • Q2. Microservices Related questuons and examples

Interview Preparation Tips

Interview preparation tips for other job seekers - All great

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)

Interview Questions & Answers

user image Anonymous

posted on 4 Aug 2024

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

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. String frequency code
  • Q2. Second smallest element in array
  • Ans. 

    Find the second smallest element in an array of strings.

    • Convert the strings to integers for comparison.

    • Sort the array in ascending order.

    • Return the second element in the sorted array.

  • Answered by AI

Skills evaluated in this interview

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

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

(2 Questions)

  • Q1. Explain current project.
  • Ans. 

    Currently working on a web application testing project for a financial services company.

    • Testing various functionalities of the web application such as account management, transactions, and security features

    • Creating and executing test cases to ensure the application meets requirements and is bug-free

    • Collaborating with developers and business analysts to resolve issues and improve the application's quality

  • Answered by AI
  • Q2. Some simple java code

Test Analyst Interview Questions asked at other Companies

Q1. Explain framework and practical uses of oops concepts in framework . explain priority and severity. defect lifecycle
View answer (2)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2024

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

(2 Questions)

  • Q1. Transient and volatile keyword?
  • Q2. Synchronize ,marker interface java 1.8 features

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

INTERVIEWS

Airports Authority of India

No Interviews

INTERVIEWS

Hindustan Unilever

No Interviews

INTERVIEWS

Hii Insurance Broking Services

No Interviews

INTERVIEWS

Travel Boutique Online

No Interviews

LIST OF COMPANIES

Trimax IT Infrastructure Services

Locations

INTERVIEWS

Tata Motors

No Interviews

INTERVIEWS

Travel Boutique Online

No Interviews

INTERVIEWS

Newgen Software Technologies

100 top interview questions

LIST OF COMPANIES

Genesys International Corporation

Locations

Tell us how to improve this page.

Newgen Software Technologies Interview Process

based on 149 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
ITC Infotech Interview Questions
3.8
 • 334 Interviews
View all

Newgen Software Technologies Reviews and Ratings

based on 1.4k reviews

3.7/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.6

Salary

4.0

Job security

3.5

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 1.4k 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
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent