Upload Button Icon Add office photos

Filter interviews by

Newgen Software Technologies Software Design Engineer Interview Questions and Answers

Updated 11 Jul 2024

Newgen Software Technologies Software Design Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Find prime number in Javascript
  • Ans. 

    Use a loop to check if a number is divisible by any number other than 1 and itself.

    • Iterate through numbers from 2 to n-1

    • Check if n is divisible by any number in the range

    • If not divisible, n is a prime number

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. React component with states and props uses
  • Ans. 

    React components can have states and props to manage data and communication between components.

    • States are used to manage data that can change over time within a component.

    • Props are used to pass data from parent components to child components.

    • States are mutable and can be changed using setState() method.

    • Props are read-only and cannot be changed by the child component.

    • Example: where 'name' is

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduce yourself

Skills evaluated in this interview

Software Design Engineer Jobs at Newgen Software Technologies

View all

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Questions was regarding sql queries mostly

Round 2 - Technical 

(2 Questions)

  • Q1. Basic question regarding sql like aggregate functions , joins
  • Q2. Told to write sql query scenario based question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain 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 data in the form of attributes and code in the form of methods.

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPs.

    • Example: In a banking system, a 'Customer' object can have attributes like name and account number, and method

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quants,verbels based on maths and grammer

Round 2 - Coding Test 

Problem solving - python programming,Java programming

Round 3 - HR 

(1 Question)

  • Q1. Oops logics and types Methods of overloading and overridding Class and object
  • Ans. 

    Overloading and overriding are ways to achieve polymorphism in object-oriented programming. Classes are blueprints for objects.

    • Overloading involves defining multiple methods with the same name but different parameters.

    • Overriding involves redefining a method in a subclass that is already defined in the superclass.

    • Classes are templates for creating objects, while objects are instances of classes.

    • Example: Overloading - ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Based place to experience something new skills and environment
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts,interface and abstract class
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Implement LinkedList and insert element at last
  • Ans. 

    Implement LinkedList and insert element at last

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head and tail pointers

    • Implement a method in LinkedList class to insert element at the end

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

It was basic aptitue

Round 3 - Technical 

(2 Questions)

  • Q1. Ask basic oops questions
  • Q2. Abstraction , encapsulation etc

Interview Preparation Tips

Interview preparation tips for other job seekers - NA NA NA
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Choose the answer questions for your preferred language

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round,Just check your previous experience and communication

Interview Preparation Tips

Interview preparation tips for other job seekers - If you a experience person(coding ) concern this, They again give you a training 4 to 6 months

I applied via campus placement at Rajalakshmi Engineering College, Chennai and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was aptitude and coding test in which you'll be asked questions on quantitative aptitude, logical and verbal ability and 3 programming questions.

Round 2 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with experience in multiple programming languages and a passion for problem-solving.

    • Experienced in Java, C++, and Python

    • Strong understanding of data structures and algorithms

    • Worked on various projects including web development and mobile app development

    • Excellent problem-solving and analytical skills

  • Answered by AI
  • Q2. How will you use your skills and certifications in Prodapt?
  • Ans. 

    I will utilize my skills and certifications in Prodapt to develop high-quality software solutions.

    • I will leverage my programming skills to write clean and efficient code.

    • I will apply my knowledge of software development methodologies to ensure the delivery of reliable and scalable solutions.

    • I will utilize my certifications in relevant technologies to stay updated with the latest industry trends and best practices.

    • I wil...

  • Answered by AI
  • Q3. Are you okay with signing a service bond for 18 months?
  • Ans. 

    Yes, I am okay with signing a service bond for 18 months.

    • Signing a service bond is a common practice in the software industry.

    • It ensures commitment and stability from both the employer and employee.

    • By signing the bond, I am willing to stay with the company for the specified duration.

    • It also shows my dedication and willingness to contribute to the organization's success.

    • I understand that breaking the bond may have legal

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Write a program to sort an array
  • Ans. 

    Program to sort an array of strings

    • Use built-in sorting functions

    • Implement sorting algorithms like bubble sort, merge sort, quick sort

    • Consider time and space complexity

  • Answered by AI
  • Q2. Write a program to print pattern
  • Ans. 

    Program to print a pattern using an array of strings

    • Create an array of strings to hold the pattern

    • Use loops to fill the array with the desired pattern

    • Print the array to display the pattern

  • Answered by AI
  • Q3. 1. One logical question 2. What is data structures 3. Explain array indexing 4. What is the best algorithm for sorting. 5. Simple questions on the projects I had mentioned in my resume.
  • Q4. 3 basic questions on SQL. 1. How will you modify something in a table? 2. Explain primary, secondary and foreign keys. 3. Write a query for inserting a record in a table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in your basics and prepare the topics mentioned in resume well. Most of the questions will be only from the topics mentioned in resume.

Newgen Software Technologies Interview FAQs

How many rounds are there in Newgen Software Technologies Software Design Engineer interview?
Newgen Software Technologies interview process usually has 3 rounds. The most common rounds in the Newgen Software Technologies interview process are Technical and HR.
How to prepare for Newgen Software Technologies Software Design 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 JSON, Javascript, Webpack and XML.
What are the top questions asked in Newgen Software Technologies Software Design Engineer interview?

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

  1. React component with states and props u...read more
  2. Find prime number in Javascr...read more

Tell us how to improve this page.

Newgen Software Technologies Software Design Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 800 Interviews
NeoSOFT Interview Questions
4.0
 • 260 Interviews
View all
Newgen Software Technologies Software Design Engineer Salary
based on 85 salaries
₹4.2 L/yr - ₹10.8 L/yr
27% less than the average Software Design Engineer Salary in India
View more details

Newgen Software Technologies Software Design Engineer Reviews and Ratings

based on 7 reviews

3.2/5

Rating in categories

2.0

Skill development

2.2

Work-life balance

2.7

Salary

3.0

Job security

2.1

Company culture

2.5

Promotions

2.4

Work satisfaction

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

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
1.8k salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Applications Engineer
517 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Team Lead
472 salaries
unlock blur

₹7.1 L/yr - ₹23 L/yr

Senior Business Analyst
409 salaries
unlock blur

₹7.5 L/yr - ₹19.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