Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Newgen Software interview experience Real time questions & tips from candidates to crack your interview

Application Engineer

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

Interview preparation journey

expand-icon
Journey
If one needs to clear a job interview like mine then he/she should concentrate on his/her core subjects like Data Structures and Algorithms (DSA) prominently, Networking, Operating Systems, Object Oriented Programming (OOPS) using one core language like CPP or Java. Also, in these interviews the interviewer majorly concentrates on one person's will to grow. Hence if a person even tries to answer all the questions and reach near the answer then it would be surely considered.
Application story
The company came to my campus it was my pleasure that I was made eligible for my application. I thank my College for this wonderful opportunity given to me.
Why selected/rejected for the role?
I reflected great interest to the interviewer on the concerned topics and answered all the basic questions asked from me.
Preparation
Duration: 2 Months
Topics: JAVA, SQL (Structured Query Language), DSA (Data Structures and Algorithms), DBMS (Database Managment System), HTML (Hypertext Markup Language), CSS (Cascading Style Sheets)
Tip
Tip

Tip 1 : Concentrate on IT Core Subjects first for strong preparation. 
Tip 2 : Grab strong command on one of the programming languages like Java, CPP.

Application process
Where: Campus
Eligibility: >75% (B.tech Average)
Resume Tip
Resume tip

Tip 1 : Do not copy projects from web.
Tip 2 : Don't brag a lot about the topics you prepared.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90 Minutes
Interview date12 Sep 2022
Coding problem2

1. Subarray With Given Sum

Moderate
15m average time
85% success
0/80
Asked in companies
AdobeInfo Edge India (Naukri.com)Dunzo

Given an array ARR of N integers and an integer S. The task is to find whether there exists a subarray(positive length) of the given array such that the sum of elements of the subarray equals to S or not. If any subarray is found, return the start and end index (0 based index) of the subarray. Otherwise, consider both the START and END indexes as -1.

Note:

If two or more such subarrays exist, return any subarray.

For Example: If the given array is [1,2,3,4] and the value of S is equal to 7. Then there are two possible subarrays having sums equal to S are [1,2,3] and [3,4].

Try solving now

2. Clone Graph

Moderate
25m average time
75% success
0/80
Asked in companies
MicrosoftGrabAccenture

You are given a reference/address of a node in a connected undirected graph containing N nodes and M edges. You are supposed to return a clone of the given graph which is nothing but a deep copy. Each node in the graph contains an integer “data” and an array/list of its neighbours.

The structure of the graphNode class is as follows:

class graphNode 
{  
    public:
        int data;
        vector<graphNode*> neighbours;
}
Note :
1. Nodes are numbered from 1 to N.

2. Your solution will run on multiple test cases. If you are using global variables make sure to clear them.
Try solving now
02
Round
Medium
Face to Face
Duration45 Minutes
Interview date20 Sep 2022
Coding problem2

1. Puzzle

How do I can cut a cake into 6 pieces with 2 cuts?

Problem approach

Tip 1 : Think about cutting it abnormally.
Tip 2 : The cut can also be horizontal.

2. N Queens

Hard
55m average time
35% success
0/120
Asked in companies
VisaAdobeGoldman Sachs

You are given an integer 'N'. For a given 'N' x 'N' chessboard, find a way to place 'N' queens such that no queen can attack any other queen on the chessboard.

A queen can be killed when it lies in the same row, or same column, or the same diagonal of any of the other queens. You have to print all such configurations.

Try solving now
03
Round
Easy
HR Round
Duration10 minutes
Interview date20 Sep 2022
Coding problem1

1. Basic HR Questions

Introduce yourself

Where are you from?
Why Newgen?
Are you placed in any other company?

Problem approach

Tip 1 : Be confident

Here's your problem of the day

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

Skill covered: Programming

How do you write a single-line comment in C++?

Choose another skill to practice
Start a Discussion
Similar interview experiences
company logo
Application Engineer
3 rounds | 3 problems
Interviewed by Newgen Software
0 views
0 comments
0 upvotes
company logo
Application Engineer
2 rounds | 3 problems
Interviewed by Newgen Software
0 views
0 comments
0 upvotes
company logo
Application Engineer
4 rounds | 5 problems
Interviewed by Newgen Software
429 views
0 comments
0 upvotes
company logo
Application Engineer
4 rounds | 4 problems
Interviewed by Newgen Software
495 views
0 comments
0 upvotes