Upload Button Icon Add office photos

Filter interviews by

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

Updated 27 Nov 2024

Top Newgen Software Technologies Senior Software Engineer Interview Questions and Answers

View all 6 questions

Newgen Software Technologies Senior Software Engineer Interview Experiences

12 interviews found

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

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more
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

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 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 

(2 Questions)

  • Q1. It was related to some current working projects, roles and responsibilities and what some technical knowledge.
  • Q2. No one is respond after that first round, and during the call it was positive from interviewer. I have tried multiple times by mail and call but no one is responding.

Newgen Software Technologies interview questions for designations

 Senior Software Development Engineer

 (1)

 Senior Software Test Engineer

 (1)

 Software Engineer

 (37)

 Senior Software Developer

 (1)

 Software Engineer Trainee

 (1)

 Software Engineer II

 (1)

 Software Design Engineer

 (1)

 Associate Software Engineer

 (1)

Senior Software Engineer Interview Questions & Answers

user image vandana Devarinti

posted on 22 Feb 2024

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

(1 Question)

  • Q1. 1.About collections 2. Database

Get interview-ready with Top Newgen Software Technologies Interview Questions

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 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Core java , basic problem on array,string , jsp , javascript
Round 3 - Project 

(1 Question)

  • Q1. Asking more on jsp, core java and project

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn core java, javascript,jsp and basic problem on array , strings.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Genric aptitude test

Round 2 - HR 

(2 Questions)

  • Q1. About yourself and your achievements
  • Q2. About your hobbies and interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. They just asked basic questions on jave
  • Q2. And basic database questions
Round 3 - Technical 

(1 Question)

  • Q1. Basic java and database questions

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Basic Apti questions

Round 3 - Coding Test 

Basic Java Coding test

Round 4 - Technical 

(1 Question)

  • Q1. Basic JAVA fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Newgen is a product-based company, and most of the employees work on the products as this is not a plus point for growth in their career.

Newgen Software Technologies Interview FAQs

How many rounds are there in Newgen Software Technologies Senior 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, Resume Shortlist and HR.
How to prepare for Newgen Software Technologies Senior 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, Core Java, J2Ee, Hibernate and Spring Boot.
What are the top questions asked in Newgen Software Technologies Senior Software Engineer interview?

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

  1. Dofferemt ways to prevent rerendering of a child component in rea...read more
  2. -React lifecycle?-Fragment vs React. Fragment? -React pure compone...read more
  3. JavaScript hoisting?- Let, var and cont differen...read more

Tell us how to improve this page.

Newgen Software Technologies Senior Software Engineer Interview Process

based on 14 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more
Newgen Software Technologies Senior Software Engineer Salary
based on 1.8k salaries
₹4.1 L/yr - ₹14 L/yr
38% less than the average Senior Software Engineer Salary in India
View more details

Newgen Software Technologies Senior Software Engineer Reviews and Ratings

based on 180 reviews

3.1/5

Rating in categories

2.5

Skill development

2.8

Work-life balance

3.0

Salary

3.7

Job security

2.9

Company culture

3.0

Promotions

2.6

Work satisfaction

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

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
1.8k salaries
unlock blur

₹4.1 L/yr - ₹14 L/yr

Applications Engineer
526 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Team Lead
484 salaries
unlock blur

₹7.1 L/yr - ₹23 L/yr

Software Developer
450 salaries
unlock blur

₹3.5 L/yr - ₹11.5 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