Upload Button Icon Add office photos

Filter interviews by

Newgen Software Technologies Java Developer Interview Questions, Process, and Tips

Updated 30 Nov 2023

Top Newgen Software Technologies Java Developer Interview Questions and Answers

View all 8 questions

Newgen Software Technologies Java Developer Interview Experiences

2 interviews found

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 methods for...

  • 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

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

I applied via Recruitment Consulltant and was interviewed in Feb 2023. There were 3 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 - Aptitude Test 

1 hr withs ome basic english grammer

Round 3 - Technical 

(2 Questions)

  • Q1. What is servlet life cycle
  • Ans. 

    Servlet life cycle refers to the sequence of events that occur during the lifespan of a servlet.

    • Servlet is loaded into memory when the server starts

    • init() method is called to initialize the servlet

    • service() method is called to handle client requests

    • destroy() method is called when the servlet is removed from memory

    • Servlet can be reloaded if the server is restarted

  • Answered by AI
  • Q2. What is try with resources
  • Ans. 

    Try with resources is a feature introduced in Java 7 to automatically close resources after use.

    • It simplifies the code by eliminating the need for a finally block to close the resource

    • The resource must implement the AutoCloseable interface

    • Multiple resources can be declared in a single try-with-resources statement

    • Example: try(FileInputStream fis = new FileInputStream("file.txt")) { //code }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - dont do there interviewer dont have any common sense Ajay kumar pandey .

Skills evaluated in this interview

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Java Developer Jobs at Newgen Software Technologies

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself?basics on c , then about projects

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via LinkedIn and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's is different between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports object-oriented programming while C does not.

    • C++ has classes and templates while C does not.

    • C++ has better support for function overloading and default arguments.

    • C++ has a standard library that includes many useful functions.

    • C++ allows for both procedural and object-oriented programming.

    • C++ is generally considered to be a more complex langu

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont show your weakness

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the plsql..like functions.cursors.pakages and like that

Interview Preparation Tips

Interview preparation tips for other job seekers - from my experience its some meaning ful interested one..but after got selected...they will not respond on any support..like joining or about the assets setup and not even the situvations...as per my experience i really have a bad experience with rmg and also hr team..ultimatix login and all are not that quick responsive...as per mine ..not prefer tcs..

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic java concepts like collection frame work, exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics well, be confident, show you are flexible enough to learn

Newgen Software Technologies Interview FAQs

How many rounds are there in Newgen Software Technologies Java Developer interview?
Newgen Software Technologies interview process usually has 2-3 rounds. The most common rounds in the Newgen Software Technologies interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Newgen Software Technologies Java 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 Java, SQL, J2Ee, Core Java and Spring.
What are the top questions asked in Newgen Software Technologies Java Developer interview?

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

  1. Write a SQL query to find third highest salary from employee tab...read more
  2. Write a program to count occurance the letter in a stri...read more
  3. What is the default size of an arrayli...read more

Tell us how to improve this page.

Newgen Software Technologies Java Developer Interview Process

based on 2 interviews

Interview experience

1.5
  
Bad
View more
Newgen Software Technologies Java Developer Salary
based on 113 salaries
₹3 L/yr - ₹10.3 L/yr
At par with the average Java Developer Salary in India
View more details

Newgen Software Technologies Java Developer Reviews and Ratings

based on 12 reviews

1.9/5

Rating in categories

1.4

Skill development

1.8

Work-life balance

2.5

Salary

2.3

Job security

2.2

Company culture

2.2

Promotions

1.6

Work satisfaction

Explore 12 Reviews and Ratings
Java Developer Lead(TL/GL)

Noida

4-9 Yrs

Not Disclosed

Java Developer Lead(TL)

Noida

4-8 Yrs

Not Disclosed

SSE- Java Developers

Noida

2-4 Yrs

₹ 5.85-11.0432 LPA

Explore more jobs
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
531 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
488 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

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