Upload Button Icon Add office photos
Engaged Employer

i

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

Tracelink Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 44 Reviews

Filter interviews by

Tracelink Associate Software Engineer Interview Questions and Answers

Updated 1 Aug 2024

Tracelink Associate Software Engineer Interview Experiences

1 interview found

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

3 dsa questions were asked

Round 2 - HR 

(5 Questions)

  • Q1. Dsa questinsxare asked
  • Q2. Coding in live anlong project explanation
  • Ans. 

    Coding in live project involves writing and implementing code in a real-world software development project.

    • Understand the project requirements and scope before writing any code.

    • Collaborate with team members to ensure code integration and compatibility.

    • Test and debug code to ensure it meets project specifications.

    • Document code changes and updates for future reference.

    • Follow coding best practices and guidelines to mainta...

  • Answered by AI
  • Q3. Nothing is asked in my 3rd question
  • Q4. What does the following C++ code snippet do? int x = 5; while (x > 0) { cout << x << " "; x--; } Results in a compilation error Prints "54321" Prints "545454" Prints "12345"
  • Ans. 

    Prints numbers from 5 to 1 separated by a space

    • The code initializes x to 5, then enters a while loop that prints the value of x and decrements it until x is no longer greater than 0

    • The output will be '54321'

  • Answered by AI
  • Q5. What will be the value printed to the console? #include void function(int arr[], int size) { for (int 10; 1 size; 1++) { arr[1] = 2; } int main() { int arr[] {1, 2, 3, 4, 5); function(arr, 5);...
  • Ans. 

    The value printed to the console will be 246810.

    • The function modifies the array elements to be 2.

    • The main function calls the function to modify the array.

    • The loop in main function prints the modified array elements.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at International Institute of Information Technology (IIIT), Bhubaneswar and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a mcq + coding round with computer fundamentals and aptitude + easy-medium level dsa questions.

Round 2 - Aptitude Test 

It was an offline aptitute test with 30 questions for 30 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Detect a loop in the linked list
  • Ans. 

    Detect a loop in a linked list by using Floyd's Cycle Detection Algorithm

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Initialize slow and fast pointers at the head of the linked list

    • Move slow pointer by one step and fast pointer by two steps in each iteration

    • If the fast pointer reaches the end of the list or meets the slow pointer,

  • Answered by AI
  • Q2. Find the unique element in an array
  • Ans. 

    Find the unique element in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • After iterating, check the hashmap for elements with frequency 1 to find the unique element

  • Answered by AI
  • Q3. Tell about your projects
  • Ans. 

    I have worked on various projects including a web application for a local business and a mobile app for tracking daily habits.

    • Developed a web application using HTML, CSS, and JavaScript for a local business to manage their inventory and sales.

    • Created a mobile app using React Native to track daily habits and provide reminders for healthy routines.

    • Collaborated with a team to implement new features and fix bugs in existin...

  • Answered by AI
  • Q4. Write a MySQL query for selecting the id of second highest salary from employee table
  • Ans. 

    MySQL query to select the id of second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to select the second row

    • Use a subquery to avoid duplicates if multiple employees have the same salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Associate Software Engineer interview:
  • RDBMS
  • Frontend
  • DSA
  • System Design

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to NODEJS , PHP, Past projects, Resume
  • Q2. Why Mongodb over Sql
  • Ans. 

    MongoDB is preferred over SQL for its flexibility, scalability, and ease of use in handling unstructured data.

    • MongoDB is a NoSQL database, making it easier to work with unstructured data compared to SQL.

    • MongoDB is schema-less, allowing for more flexibility in data modeling and changes.

    • MongoDB is horizontally scalable, making it easier to handle large amounts of data and high traffic loads.

    • MongoDB's document-based data ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ResMed Associate Software Engineer interview:
  • Nodejs
  • MongoDB
  • PHP
  • SQL
Interview preparation tips for other job seekers - They asked related to resume only.

I didn't got selected because I couldn't justify what was written on my resume.

Skills evaluated in this interview

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

Around 1 hour with 2 coding and few aptitude questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Regarding linked lists
  • Q2. Data Structures
Round 3 - HR 

(2 Questions)

  • Q1. Given few situations
  • Q2. Asked about few other details
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Roles and responsibilities
  • Q2. Problem based questions
  • Q3. Code test & discussions over best practices, best solutions, time and space complexities
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introducing your self and project
  • Q2. Severity and priority
  • Q3. Smoke and sanity testing
  • Q4. Scenario base question if find bug before release

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all manual testing type question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions, Easy and medium based

Round 2 - Technical 

(1 Question)

  • Q1. Stacks queues and array questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on projects
Round 4 - HR 

(1 Question)

  • Q1. How to tackle any uncertain situations? Behavioural questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy basic questions were there and we were asked to write two emails.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to projects
  • Q2. QBasic SQL questions

Tracelink Interview FAQs

How many rounds are there in Tracelink Associate Software Engineer interview?
Tracelink interview process usually has 2 rounds. The most common rounds in the Tracelink interview process are Coding Test and HR.
What are the top questions asked in Tracelink Associate Software Engineer interview?

Some of the top questions asked at the Tracelink Associate Software Engineer interview -

  1. What will be the value printed to the console? #include void functi...read more
  2. What does the following C++ code snippet do? int x = 5; while (x > 0) { cout <...read more
  3. Coding in live anlong project explanat...read more

Tell us how to improve this page.

Software Engineer
16 salaries
unlock blur

₹11.6 L/yr - ₹21 L/yr

Senior Product Manager
15 salaries
unlock blur

₹32 L/yr - ₹69.3 L/yr

Technical Support Engineer
12 salaries
unlock blur

₹10.5 L/yr - ₹21.6 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹25 L/yr - ₹40 L/yr

Software Engineer II
9 salaries
unlock blur

₹20.3 L/yr - ₹33 L/yr

Explore more salaries
Compare Tracelink with

Cognizant

3.8
Compare

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview