Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Nexgile Technologies Team. If you also belong to the team, you can get access from here

Nexgile Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nexgile Technologies Junior Software Engineer Trainee Interview Questions and Answers

Updated 4 May 2024

Nexgile Technologies Junior Software Engineer Trainee Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy to shortlist in this round

Round 2 - Coding Test 

Difficult and based on advanced topics

Round 3 - HR 

(2 Questions)

  • Q1. General questions and managerial questions asked
  • Q2. Why do you choose software
  • Ans. 

    I choose software because of my passion for problem-solving and creating innovative solutions.

    • Passion for problem-solving

    • Interest in creating innovative solutions

    • Opportunity for continuous learning and growth

    • Desire to work in a dynamic and fast-paced industry

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack but 3yrs of bond

Interview questions from similar companies

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 

30 min test covers basic logic reasonings

Round 3 - Coding Test 

30 min round medium level questions from leetcode

Round 4 - Technical 

(1 Question)

  • Q1. Explain project you did for final year DSA
Round 5 - HR 

(1 Question)

  • Q1. Basic hr evel question

Interview Preparation Tips

Interview preparation tips for other job seekers - Please study DSA and your project well
Be confident with atleat one programming language
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Quant, logical reasoning, mathematics

Round 3 - Technical 

(2 Questions)

  • Q1. Access modifiers
  • Q2. Diff between abstract class and interface Difference between array and array list Difference between method overloading and overriding Pillars of oops Deadlock Normalisation
  • Ans. 

    Abstract class is a class with abstract methods, interface is a contract with only abstract methods. Array is fixed size, ArrayList is dynamic. Method overloading is same method with different parameters, overriding is redefining a method. OOP pillars are inheritance, encapsulation, polymorphism, abstraction. Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy applitute question with 1 coding question at the end

Round 2 - Technical 

(3 Questions)

  • Q1. String builder vs string buffer
  • Ans. 

    String builder is faster but not thread-safe, while string buffer is slower but thread-safe.

    • String builder is recommended for single-threaded applications for better performance.

    • String buffer is recommended for multi-threaded applications to ensure thread safety.

    • Example: StringBuilder sb = new StringBuilder(); StringBuffer sbf = new StringBuffer();

  • Answered by AI
  • Q2. Final keyword in oops
  • Ans. 

    The final keyword in OOP is used to restrict the user from changing the value of a variable, overriding a method, or inheriting from a class.

    • Final variable: value cannot be changed once assigned

    • Final method: cannot be overridden in child classes

    • Final class: cannot be inherited by other classes

  • Answered by AI
  • Q3. Bsf graph explanation
  • Ans. 

    BSF graph explanation

    • BFS (Breadth-First Search) is a graph traversal algorithm that explores all the neighbor nodes at the present depth before moving on to the nodes at the next depth.

    • It uses a queue data structure to keep track of the nodes to visit next.

    • BFS is often used to find the shortest path in an unweighted graph.

    • Example: BFS can be used to find the shortest path in a maze from the starting point to the exit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 4 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 

It contains 60 questions solve in 60 minutes and 1 coding questions simply debug extra 15 minutes are given

Round 3 - Technical 

(1 Question)

  • Q1. 7 to 8 minut google meet technical interview about your project, sql and basics of your main language
Round 4 - HR 

(1 Question)

  • Q1. It just normal interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

There was an OA which comprised of Aptitude questions, as well as Technical questions. And, there was a single coding question(Basic level)

Round 3 - Technical 

(2 Questions)

  • Q1. This round was with the CTO of the company and manager, and CHRO of the company. Questions related to project were asked.
  • Q2. Tell me something that is not there in your resume. Describe any one of your project in detail What is S3 architecture? Difference between GET and POST Describe HTTP Response

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed with your projects and hackathon experience is good to have. No matter you won or lost in hackathon, describe your experience about building something different and unique from scratch. Don't just copy-paste projects from yt. Recruiters will hate it. Try to add unique projects to your resume.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Easy level questions

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between object and constructor?
  • Ans. 

    Object is an instance of a class with its own state and behavior, while constructor is a special method used to initialize objects.

    • Object is created from a class using the 'new' keyword.

    • Constructor is a special method with the same name as the class.

    • Object has its own state (attributes) and behavior (methods).

    • Constructor is used to initialize the state of an object when it is created.

    • Example: Class Car { constructor(ma...

  • Answered by AI
  • Q2. Difference between abstraction and encapsulation?
  • Ans. 

    Abstraction focuses on hiding the implementation details while encapsulation focuses on bundling the data and methods that operate on the data into a single unit.

    • Abstraction is the concept of hiding the complex implementation details and showing only the necessary features of an object.

    • Encapsulation is the bundling of data and methods that operate on the data into a single unit.

    • Abstraction allows for creating simple in...

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. Questions based on Objects and Classes Basic Questions related to DSA Projects discussions- Your Roles and Tasks Scenario based Questions Few Reasoning Questions
Round 3 - Technical 

(1 Question)

  • Q1. Questions related to Trees and Graphs nested SQL Queries Scenario Based Questions Projects Logics for the coding given
Round 4 - HR 

(1 Question)

  • Q1. Just basic HR Questions Reallocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in basics
Have a good grasp over DSA and Fundamentals
Try to be confident and fluent while answering
Stay positive
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2022. There were 4 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 

This one is a combination of aptitude and coding test where medium questions abt c,cpp are asked
Do few aptitude test and some level of coding and ull be able to clear the test quite easily

Round 3 - One-on-one 

(1 Question)

  • Q1. What is inheritance in cpp Basic oops concept question Basic dbms related question
Round 4 - HR 

(1 Question)

  • Q1. For me they just asked me about my project and i was good to go

Interview Preparation Tips

Interview preparation tips for other job seekers - There wasn't any round 4 for our college atleast but it can be for o ther colleges not sure
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Question were based on coding 1 with linked list 1 with string and 1 sql one

Round 2 - Technical 

(1 Question)

  • Q1. Questions were based on oops, dsa, dbms, and more technical concepts from operating systems

Nexgile Technologies Interview FAQs

How many rounds are there in Nexgile Technologies Junior Software Engineer Trainee interview?
Nexgile Technologies interview process usually has 3 rounds. The most common rounds in the Nexgile Technologies interview process are Coding Test and HR.
What are the top questions asked in Nexgile Technologies Junior Software Engineer Trainee interview?

Some of the top questions asked at the Nexgile Technologies Junior Software Engineer Trainee interview -

  1. Why do you choose softw...read more
  2. General questions and managerial questions as...read more

Tell us how to improve this page.

Nexgile Technologies Junior Software Engineer Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
Imark InfoTech Interview Questions
4.1
 • 41 Interviews
View all
Software Developer
12 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Associate Software Engineer
12 salaries
unlock blur

₹2 L/yr - ₹3.4 L/yr

Software Engineer
7 salaries
unlock blur

₹2 L/yr - ₹2.7 L/yr

Associate Software Developer
7 salaries
unlock blur

₹2.5 L/yr - ₹3 L/yr

Automation Test Engineer
4 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Explore more salaries
Compare Nexgile Technologies with

Maxgen Technologies

4.5
Compare

Cyfuture

3.0
Compare

Value Point Systems

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview