i
Newgen Software Technologies
Filter interviews by
I applied via Job Fair and was interviewed before Dec 2021. There were 4 interview rounds.
First Round consists of Basic Aptitude questions
I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.
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...
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
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
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
I was interviewed in Jun 2021.
Round duration - 60 minutes
Round difficulty - Easy
Total 75 Mcq With 1 coding Question
It Was a written round on amcat which consist of 30 technical Mcqs and 1 coding Question and 30 aptitude question and 15 logical reasonings were there.
10 mcq from C programming
5 mcq from dbms
5 mcq from Operating System
and rest mcq were from oops concept , Time complexities , searching , sorting , bfs and dfs .
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 outpu...
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 pointer wit...
Round duration - 50 minutes
Round difficulty - Easy
75 Psychometric question was to be answered in 50 minutes
Round duration - 60 minutes
Round difficulty - Easy
It was a technical round,so basically started with a introduction from both sides .he started asking questions from dsa
starting with easy questions
1. Reverse a string
2. difference between merge sort and quick sort
3. binary search theory
4. dbms joins questions
then he scanned my resume ans told me to explain my major project and i explained it throughly and asked some questions technologies which i have used
then some operating questions .
and later he asked about my hobbies and the how different societies and clubs have helped me in my college days.
the interview last for 1 hour and i asked for a feedback and he said it was great interviewing u .
after that some
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. Importantl...
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
Round duration - 30 Minutes
Round difficulty - Easy
It was HR round so he asked me some behaviorial questions starting with my introduction family background , Why i want to join newgen? why should we hire u?
Tip 1 : Lets Go with Dsa , Practice at least 20 question of all topics like array , string , searching sorting , tree in any online coding platform , the best is to start from geeksforgeeks ranging from easy level to medium level question. Make sure your theoratical concepts are clear before coding . OOPS concepts are very important , he grilled me 15 minutes on oops concepts
Tip 2 : Make at least 1 major Project and 1 minor Project and don't fake technologies because the interviewer is going to ask all questions from the projects (why u have used this technology or frame works , some basics and intermediate questions and some behaviorial questions like how u met the deadline, how did u divide the work in team if it's a team project ) and if possible if u have deployed ur project on github its better to provide a link of ur projects in resume
Tip 3 : The interview is here to hire u not to reject u , nobody is perfect , so he/she is searching for a never giving up attitude , he/she will grill u giving some advanced questions , don't direct say no , i cant solve this question . take ur time , think about various approaches and think loudly , so that he/she can help u , i had the same scenario but i kept on giving various approaches and after 5 mins of brainstorming , he gave me a hint and i come with a better solution . I was not able to answer 3-4 questions still gets selected. So aleways keep a positive and never giving up attitude
Tip 1 : Make at least 1 major Project and 1 minor Project and don't fake technologies because the interviewer is going to ask all questions from the projects (why u have used this technology or frame works , some basics and intermediate questions and some behavioral questions like how u met the deadline, how did u divide the work in team if it's a team project ) and if possible if u have deployed ur project on github its better to provide a link of ur projects in resume .
Tip 2 : The interview is here to hire u not to reject u , nobody is perfect , so he/she is searching for a never giving up attitude , he/she will grill u giving some advanced questions , dont direct say no , i cant solve this question . take ur time , think about various approaches and think loudly , so that he/she can help u , i had the same scenario but i kept on giving various approaches and after 5 mins of brainstorming , he gave me a hint and i come with a better solution . I was not able to answer 3-4 questions still gets selected. So aleways keep a positive and never giving up attitude
I was interviewed before May 2021.
Round duration - 60 Minutes
Round difficulty - Medium
It was an online technical, aptitude, and English test.
You are given two arrays, 'ARR' of size 'N' and 'BRR' of size 'M'. Your task is to sort the elements of 'ARR' such that their relative order matches that in 'BRR'. Any e...
The task is to sort the elements of ARR in such a way that the relative order among the elements will be the same as those are in BRR. For the elements not present in BRR, append them in the last in sorted order.
Create a frequency map of elements in ARR
Iterate through BRR and for each element, append it to the result array the number of times it appears in ARR
Iterate through the frequency map and for each element not p...
Round duration - 30 Minutes
Round difficulty - Easy
It was a face to face technical interview round where based on my previous study and resume I was supposed to answer the questions asked by them.
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 ...
The task is to find the Nth Fibonacci number using matrix exponentiation.
Use matrix exponentiation to efficiently calculate the Nth Fibonacci number
Return the answer modulo 10^9 + 7 to handle large numbers
Implement the function to solve the problem
The Fibonacci sequence starts with 1, 1, so F(1) = F(2) = 1
The time complexity can be improved to better than O(N) using matrix exponentiation
Round duration - 30 Minutes
Round difficulty - Easy
It was HR interview with basic questions and checking according to SWOT analysis.
Tip 1 : Don't try to cover everything, go with one or two skills to master it and have some general knowledge about others.
Tip 2 : Do a project along with everything you learn. Practical exposure is what organizations demand.
Tip 3 : Do not ignore soft skills at all. Many underestimate the magic of soft skills in getting selected over others.
Tip 1 : Resume should not be more than 1 or 2 pages. All information should be provided in the form of bullets and numbered in a precise manner and not just in long paragraphs with detailing for every aspect.
Tip 2 : The resume should be easily readable with formal fonts and design, and should not contain false information.
Newgen Software Technologies interview questions for designations
I applied via Recruitment Consultant and was interviewed in Oct 2021. There was 1 interview round.
Interview questions for Software Developer on triggers, method overloading/overriding, sorting, prime numbers, final/finally keyword, and normalization.
Triggers are database objects that are automatically executed in response to certain events.
Method overloading is having multiple methods with the same name but different parameters, while method overriding is having a subclass method with the same name and parameters a...
Get interview-ready with Top Newgen Software Technologies Interview Questions
I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.
I was interviewed in Nov 2020.
Round duration - 100 minutes
Round difficulty - Medium
The complete test will be Audio and Video Proctored, Please be available in front of the camera throughout the test duration. Assessment login details will be sent to the candidate’s registered email id prior to assessment. The Aptitude 25 questions - 35 Minutes, English 25 questions - 30 Minutes, Technical 25 questions - 35 Minutes. Those who clear the first test would have a second test of Psychometric duration 60 Mins on the same day of the test. Shortlisted candidates would have interviews post that.
Round duration - 30 minutes
Round difficulty - Medium
This round consisted of various technical questions such as questions on web technologies, databases, OOPS concepts, and coding questions.
Given an integer N
, determine whether its binary representation is a palindrome.
The first line contains an integer 'T' representing the number of test cases.
The next 'T'...
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.
Round duration - 15 minutes
Round difficulty - Easy
I was asked to introduce myself and about my hobbies. They were very general questions. They asked me about my strengths and weakness. In the end, they asked me would I re-locate.
Tip 1 : Strengthen DSA skills initially, know the basics and understand the working of different data structures
Tip 2 : Learn to implement them and enhance your coding skills. Make mistakes and learn from them instead of just cramming everything before practicing.
Tip 3 : To enhance coding skills, try your best to crack a question instead of giving up and looking at the solution..this will improve your problem-solving skills.
Tip 4 : It's a must to do the standard coding questions under every category of data structure and algorithms
Tip 5 : To study the topics and practice coding questions refer to GeeksforGeeks and regularly take part in coding contests.
Tip 6 : Be thorough with OOPs, DBMS, and the technologies on which you have worked for the interview.
Tip 7 : Have at least 2 projects in your resume and make sure you can answer the questions related to them.
Tip 8 : For HR interviews prepare questions, prepare questions such as introduce yourself, your strengths, your weakness.
Confidence is the key you need to be an expert in. I was not aware of some things the interviewer asked during my interviews. But due to my confidence, he skipped that part.
Tip 9 : Be in formals with the properly ironed dress, and try to join 5 minutes early than the joining time. It will have a positive affect.
Tip 1 : Make sure your resume fits everything into a single page.
Tip 2 : Have at least 2 projects on your resume.
Tip 3 : Only Mention only those technical skills that you are confident in. Do not put false things on your resume.
Tip 4 : Mention the work you have done during your internships.
Tip 5 : Include an objective in your resume.
I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.
I was interviewed before Sep 2020.
Round duration - 45 minutes
Round difficulty - Medium
I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.
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.
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.
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 ...
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
Round duration - 15 minutes
Round difficulty - Easy
It was a normal discussion about the role, the job expectations and about the company culture.
Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.
Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.
I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.
Top trending discussions
based on 12 interviews
4 Interview rounds
based on 53 reviews
Rating in categories
Software Engineer
2k
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Engineer
1.8k
salaries
| ₹0 L/yr - ₹0 L/yr |
Applications Engineer
541
salaries
| ₹0 L/yr - ₹0 L/yr |
Team Lead
488
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Business Analyst
402
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech