Upload Button Icon Add office photos

Filter interviews by

New Indictrans Technologies Associate Software Trainee Interview Questions and Answers

Updated 30 Jan 2025

New Indictrans Technologies Associate Software Trainee Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Full stack developer 

(2 Questions)

  • Q1. Python questions related to data structures and basic functionality
  • Q2. JavaScript and sql questions related to basic operations and queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to start your career in IT

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java questions and basics of testing
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. C# question on basics and advanced
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a company that you want to join.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How is GIL and how python handle multi threading
  • Ans. 

    GIL stands for Global Interpreter Lock in Python, which limits execution of multiple threads at once.

    • GIL is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once.

    • Due to GIL, Python threads are not suitable for CPU-bound tasks but are still useful for I/O-bound tasks.

    • To handle multi-threading in Python, one can use multiprocessing module or asynchronous progr...

  • Answered by AI
  • Q2. Explain How React works under the hood.
  • Ans. 

    React uses a virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • React creates a virtual DOM representation of the actual DOM.

    • When state or props change, React compares the virtual DOM with the actual DOM to determine the minimal set of changes needed.

    • React then updates the actual DOM efficiently to reflect the changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep understanding of technology you apply for

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 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 

First time attend aptitude test .

Round 3 - Technical 

(5 Questions)

  • Q1. Any computer engineering basic questions
  • Q2. C,C++,java , python
  • Q3. What is inheritance.how many times of inheritance.
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Inheritance allows for code reusability and promotes the concept of 'is-a' relationship.

    • There are different types of inheritance such as single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Example: Class B inheriting from Class A - 'class B: public A {}'

  • Answered by AI
  • Q4. How many characters are used in C.
  • Ans. 

    C uses a set of 128 characters, including letters, digits, special characters, and control characters.

    • C uses 26 letters (uppercase and lowercase), 10 digits (0-9), and various special characters like !, @, #, $, %, etc.

    • C also includes control characters like newline, tab, carriage return, etc.

    • The total number of characters used in C is 128.

  • Answered by AI
  • Q5. What is c. How many characters are used.
  • Ans. 

    C is a programming language known for its efficiency and flexibility. It uses 256 characters.

    • C is a high-level programming language used for system programming, embedded systems, and applications.

    • C uses 256 characters, including letters, digits, special characters, and whitespace.

    • Examples of characters in C include 'a', '1', '+', and ' '.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Scenerio based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Full Java deep knowledge including oops concepts then rest APIs then have some basic knowledge of microservices then spring boot all the things have mastery
Round 3 - Technical 

(4 Questions)

  • Q1. What is fast wrto performance?hashmap or treemap and why
  • Ans. 

    HashMap is faster than TreeMap wrto performance due to its constant time complexity for most operations.

    • HashMap has O(1) time complexity for most operations while TreeMap has O(log n) time complexity.

    • HashMap is implemented using an array of buckets while TreeMap is implemented using a Red-Black Tree.

    • HashMap is preferred for frequent read operations while TreeMap is preferred for frequent write operations.

    • HashMap is uno...

  • Answered by AI
  • Q2. Can I write a try catch block inside a catch Block
  • Ans. 

    Yes, it is possible to write a try catch block inside a catch block.

    • This is called nested try-catch block.

    • It is useful when we want to handle different types of exceptions in different ways.

    • Example: try { //code } catch (ExceptionType1 e1) { try { //code } catch (ExceptionType2 e2) { //code } } }

    • It is important to avoid excessive nesting as it can make the code difficult to read and maintain.

  • Answered by AI
  • Q3. Are exceptions can be written in a catch block seperated by commas,?
  • Ans. 

    Yes, multiple exceptions can be caught in a single catch block separated by commas.

    • Multiple exceptions can be caught in a single catch block separated by commas.

    • This can be useful when handling different types of exceptions in a similar way.

    • For example: catch (IOException | SQLException ex) { // handle exception }

  • Answered by AI
  • Q4. Hashmap internal working
Round 4 - HR 

(1 Question)

  • Q1. Why this and what all offers you are having It was a normal telephone call

Interview Preparation Tips

Interview preparation tips for other job seekers - Pl have a good understanding on basic concepts on java and if needed can ask me for the same

Skills evaluated in this interview

I was interviewed in May 2022.

Round 1 - Assignment 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Duplicate Integer in Array

    Given an array ARR of size N, containing each number between 1 and N-1 at least once, identify the single integer that appears twice.

    Input:

    The first line contains an integer...
Round 2 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

They wants to Check your Problem solving techniques with best case and how you approach a problem and the way you solve
they wants to solve in more than one way 
also they ask basic Questions Related to your frame Work you are working

  • Q1. 

    Anagram Pairs Verification

    In this task, you need to verify if two provided strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form t...

Round 3 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

General About yourSelf and How was your previous round and CTC discussion

  • Q1. Can you discuss the CTC (Cost to Company) offered in this position?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in GurgaonEligibility criteriaB.Tech in Computer Science with 60% throughoutErnst & Young (EY) interview preparation:Topics to prepare for the interview - JavaScript: Call Stack, Closures, object Oriented Programming ,scoping, prototype, Async React: Hooks , Callback ,Redux ,custom middleware HTML: New Elements in HTML5CSS: Positions ,Flex box, grid layout, media Query ,SelectorsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Understand the Basics and Key Concept
Tip 2 : Practice as much a possible for online coding platform 
Tip 3 : Try to solve problem in 2 or more than 2 approach

Application resume tips for other job seekers

Tip 1 : Mention Key concept to your project , don't describe
Tip 2 : Mention your Project with your Role and responsibilities ,
Tip 3 : Don't mention false things

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in May 2022. There were 4 interview rounds.

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 - Coding Test 

There was 2 coding question
One was easy One was very Difficult
20 MCQ question from Operating system and DBMS

Round 3 - Technical 

(2 Questions)

  • Q1. First question was binary search in unsorted arrays So here i have asked about sorting algorithms all sorting algorithms must be clear
  • Q2. Second question was to find longest consecutive subarray.
  • Ans. 

    Find the longest consecutive subarray.

    • Iterate through the array and keep track of the current subarray length.

    • Update the maximum length as you iterate.

    • Reset the current subarray length when a non-consecutive element is encountered.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. OOPS related question Heap insertion deletion question Hashing Spanning tree
  • Q2. Minimum Spanning tree Implementation of MST
  • Ans. 

    Minimum Spanning Tree (MST) is a tree that connects all vertices in a graph with minimum total edge weight.

    • MST can be found using Prim's algorithm or Kruskal's algorithm.

    • Prim's algorithm starts with a single vertex and adds the closest vertex to the tree until all vertices are included.

    • Kruskal's algorithm starts with the edges with the lowest weight and adds them to the tree as long as they don't create a cycle.

    • MST has...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You have strong understanding of core cs subjects
You have full command in DSA. You have to practice from leetcode
Sometimes your luck also matters

Skills evaluated in this interview

New Indictrans Technologies Interview FAQs

What are the top questions asked in New Indictrans Technologies Associate Software Trainee interview?

Some of the top questions asked at the New Indictrans Technologies Associate Software Trainee interview -

  1. Python questions related to data structures and basic functional...read more
  2. JavaScript and sql questions related to basic operations and quer...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
View all
Software Developer
31 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Python Developer
11 salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Devops Engineer
10 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Project Manager
8 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Technical Lead
5 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare New Indictrans Technologies with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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