Newgen Software interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Newgen Software
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
I started as an engineering graduate in 2021. Learning through all the ups and downs over these four years has been an amazing experience. I learned a lot, practiced DSA, and worked on improving my personality.
Application story
We were required to fill out the application form on the company’s portal. Then, we had two interview rounds.
Why selected/rejected for the role?
I was selected for the role because I was able to answer all the questions asked in the interview. I also successfully wrote the programs that were given to me.
Preparation
Duration: 5 months
Topics: DSA, OOPs, CN, DBMS, Web Development, Algorithms
Tip
Tip

Tip 1: Stay consistent.
Tip 2: Never get disappointed by failures.
Tip 3: Practice at least 200 DSA questions on coding platforms.

Application process
Where: Campus
Eligibility: 8+ CGPA and above 90% in 10th and 12th. (Salary Package: 4.25 LPA)
Resume Tip
Resume tip

Tip 1: Have projects from different domains in your resume.
Tip 2: Have good communication skills.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration120 minutes
Interview date20 Dec 2024
Coding problem2

Coding questions, OOPs, CN

1. Cycle Detection in a Singly Linked List

Moderate
15m average time
80% success
0/80
Asked in companies
GrabThalesSterlite Technologies Limited

You are given a Singly Linked List of integers. Return true if it has a cycle, else return false.


A cycle occurs when a node's next points back to a previous node in the list.


Example:
In the given linked list, there is a cycle, hence we return true.

Sample Example 1

Problem approach

Initialize two pointers at the head. Move the slow pointer one step at a time. Move the fast pointer two steps at a time. If slow equals fast at any point, a cycle is detected. If fast or fast.next is null, there is no cycle.

Try solving now
Easy
10m average time
90% success
0/40
Asked in companies
ToXSL Technologies Pvt LtdNewgen SoftwareConsuma

Given an integer ‘n’, return first n Fibonacci numbers using a generator function.


Example:
Input: ‘n’ = 5

Output: 0 1 1 2 3

Explanation: First 5 Fibonacci numbers are: 0, 1, 1, 2, and 3.
Note:
You don't need to print anything. Just implement the given function.
Problem approach
  • We declared three variables: a, b, and c.
  • The next number is the sum of the previous two numbers.
  • c = a + b.
  • The loop runs until n - 2, and the values are updated accordingly.
Try solving now
02
Round
Easy
HR Round
Duration20 minutes
Interview date24 Dec 2024
Coding problem1

Asked about the projects I worked on during my previous internship, my willingness to relocate, and some basic HR questions.

1. HR question

What project did I work on during my last internship?

Problem approach

Tip 1: I gave an overview and explained my role in the project.
Tip 2: Then, I explained the models used.
Tip 3: I described the real-world use cases of the project.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
Software Engineer
3 rounds | 4 problems
Interviewed by Newgen Software
1003 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 5 problems
Interviewed by Newgen Software
982 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by Newgen Software
1862 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by Newgen Software
1144 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 6 problems
Interviewed by HashedIn
2582 views
0 comments
0 upvotes
company logo
Software Engineer
2 rounds | 2 problems
Interviewed by Ernst & Young (EY)
0 views
0 comments
0 upvotes
company logo
Software Engineer
4 rounds | 8 problems
Interviewed by Arcesium
1361 views
0 comments
0 upvotes