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

Filter interviews by

Newgen Software Technologies Software Developer Interview Questions and Answers

Updated 7 Jun 2025

15 Interview questions

A Software Developer was asked
Q. 

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

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

A Software Developer was asked
Q. 

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

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

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 Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. 

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.

A Software Developer was asked
Q. 

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

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

A Software Developer was asked
Q. 

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.

Newgen Software Technologies Software Developer Interview Experiences

23 interviews found

Software Developer Interview Questions & Answers

user image pericharla ayyappa

posted on 7 Jun 2025

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Where are you from?
  • Ans. 

    I'm from a vibrant city known for its tech innovation, diverse culture, and beautiful parks, where creativity thrives.

    • The city has a rich history, with landmarks dating back to the 1800s.

    • It's a hub for tech startups, attracting talent from around the world.

    • The local cuisine is diverse, offering everything from street food to fine dining.

    • There are numerous parks and recreational areas, perfect for outdoor activities.

  • Answered by AI
  • Q2. In which year do you plan to complete your postgraduate studies?
  • Ans. 

    I plan to complete my postgraduate studies by 2025, focusing on advanced software development techniques and emerging technologies.

    • I am currently enrolled in a master's program that spans two years.

    • I aim to complete my thesis on machine learning applications by mid-2025.

    • I have set a timeline to finish all coursework by the end of 2024.

  • Answered by AI
  • Q3. What percentage did you achieve in your postgraduate studies?
  • Ans. 

    I achieved a commendable percentage in my postgraduate studies, reflecting my dedication and understanding of the subject matter.

    • Graduated with a percentage of 85%, which placed me in the top 10% of my class.

    • Completed a thesis project that contributed to my high marks, focusing on software optimization techniques.

    • Participated in various workshops and seminars, enhancing my practical knowledge and skills.

  • Answered by AI
  • Q4. What the purpose of job
  • Ans. 

    The purpose of a job is to fulfill responsibilities, contribute to goals, and achieve personal and professional growth.

    • Provides financial stability: A job allows individuals to earn a living and support themselves and their families.

    • Fosters personal development: Engaging in work helps individuals develop new skills and gain experience.

    • Contributes to society: Jobs create products or services that benefit the community a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communicat essaly
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Javascript features
  • Q2. Virtual dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear and definitions should be at your tips
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

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

DSA questions were asked of easy to mid

Software Developer Interview Questions & Answers

user image Manisha Bhatt

posted on 20 Jun 2024

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

(2 Questions)

  • Q1. Define Opps concept
  • Ans. 

    OOPs concept stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, polymorphism, and abstraction are the four main principles of OOPs.

    • Example: Inheritance allows a class to inherit properties and behavior from another class, promoting code reusability.

  • Answered by AI
  • Q2. What are constructor?
  • Ans. 

    Constructors are special methods in a class that are used to initialize objects.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can have parameters to initialize object properties.

    • Example: public class Person { public Person(String name) { this.name = name; }}

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java basic Spring boot
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself Strength and weakness

Software Developer Interview Questions & Answers

user image Homely Masala Kitchen

posted on 15 Oct 2024

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

DSA easy to mid level were asked

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

Basic aptitude test consist of quant and coding

Round 2 - Technical 

(1 Question)

  • Q1. Java interview ,what is oops
  • Ans. 

    OOPs in Java is a programming paradigm based on objects, enabling code reusability and modularity through encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with attributes like 'color' and methods like 'drive()'.

    • Inheritance: Mechanism where one class inherits properties and behaviors from another. Example: 'Dog'...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

All basic coding questions on pattern and star sums it easy

Round 3 - One-on-one 

(2 Questions)

  • Q1. About Yourself full information
  • Q2. Role that u want

Interview Preparation Tips

Interview preparation tips for other job seekers - All good just stay confident
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Job Portal

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 

Basic aptitude questions of maths and english. Easy solvabale.

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic core java questions and collections questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Database, Core Java, coding questions on Java.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic core concepts and and work experience related questions.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Newgen Software Technologies?
Ask anonymously on communities.

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.

Overall Interview Experience Rating

4.6/5

based on 14 interview experiences

Difficulty level

Easy 33%
Moderate 50%
Hard 17%

Duration

Less than 2 weeks 20%
2-4 weeks 80%
View more
Join Newgen Software Technologies Leading provider of an AI-enabled digital transformation platform
Newgen Software Technologies Software Developer Salary
based on 354 salaries
₹4.2 L/yr - ₹10 L/yr
32% less than the average Software Developer Salary in India
View more details

Newgen Software Technologies Software Developer Reviews and Ratings

based on 56 reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.6

Salary

4.2

Job security

3.7

Company culture

3.7

Promotions

3.4

Work satisfaction

Explore 56 Reviews and Ratings
Software Engineer
1.9k salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Senior Software Engineer
1.9k salaries
unlock blur

₹6 L/yr - ₹14.1 L/yr

Applications Engineer
593 salaries
unlock blur

₹3.5 L/yr - ₹6.2 L/yr

Senior Business Analyst
486 salaries
unlock blur

₹11 L/yr - ₹19 L/yr

Team Lead
484 salaries
unlock blur

₹11.4 L/yr - ₹21 L/yr

Explore more salaries
Compare Newgen Software Technologies with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview