Upload Button Icon Add office photos

Maruti Techlabs

Compare button icon Compare button icon Compare

Filter interviews by

Maruti Techlabs Interview Questions and Answers

Updated 22 Mar 2025
Popular Designations

11 Interview questions

A QA Engineer was asked 8mo ago
Q. Write a DBMS query using a join operation.
Ans. 

Understanding joins in DBMS is crucial for querying related data from multiple tables effectively.

  • A join combines rows from two or more tables based on a related column.

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

  • Example of INNER JOIN: SELECT * FROM Employees INNER JOIN Departments ON Employees.DeptID = Departments.DeptID;

  • LEFT JOIN returns all records from the left table and match...

View all QA Engineer interview questions
An Assistant System Engineer was asked 9mo ago
Q. What is the most frequent tool you used for incident tracking?
Ans. 

The frequent tool used for Incident tracking is ServiceNow

  • ServiceNow is a popular incident tracking tool used in IT industry

  • It helps in logging, tracking, and resolving incidents efficiently

  • Other common tools include Jira, Zendesk, and Freshservice

View all Assistant System Engineer interview questions
An Assistant System Engineer was asked 9mo ago
Q. How do you handle a customer's critical application in the Web tier?
Ans. 

Customer critical applications in Web tier require proactive monitoring, quick response to issues, and effective communication with stakeholders.

  • Implement proactive monitoring tools to detect issues before they impact customers

  • Establish clear escalation procedures to quickly address critical issues

  • Regularly communicate with customers to provide updates on issue resolution progress

  • Have a backup plan in place to ens...

View all Assistant System Engineer interview questions
A Software Engineer Trainee was asked 11mo ago
Q. What is the difference between method overloading and method overriding?
Ans. 

Method overloading involves multiple methods in the same class with the same name but different parameters. Method overriding involves a subclass providing a specific implementation of a method that is already provided by its superclass.

  • Method overloading is achieved within the same class by having multiple methods with the same name but different parameters.

  • Method overriding occurs in a subclass that provides a s...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 11mo ago
Q. Write an SQL query to join data between two tables.
Ans. 

SQL joining query between two tables

  • Use JOIN keyword to combine rows from two or more tables based on a related column between them

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 11mo ago
Q. What is transfer learning in ML?
Ans. 

Transfer learning is a machine learning technique where a model trained on one task is re-purposed on a second related task.

  • Transfer learning involves using pre-trained models as a starting point for a new task.

  • It helps in saving time and computational resources by leveraging knowledge from previous tasks.

  • Fine-tuning and feature extraction are common transfer learning approaches.

  • Example: Using a pre-trained image ...

View all Software Engineer Trainee interview questions
A Senior QA Engineer -Software Testing was asked
Q. What locators are used in Selenium?
Ans. 

Locators used in Selenium are used to identify web elements on a web page.

  • Selenium supports various locators such as ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

  • ID and Name locators are the most commonly used locators in Selenium.

  • CSS Selector and XPath locators are more powerful and flexible than other locators.

  • Example: driver.findElement(By.id("elementID"));

View all Senior QA Engineer -Software Testing interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. Code for bubble sort,What is acid property,etc...
Ans. 

Bubble sort is a simple sorting algorithm. ACID properties are used to ensure database transactions are reliable.

  • Bubble sort repeatedly swaps adjacent elements if they are in the wrong order.

  • ACID stands for Atomicity, Consistency, Isolation, and Durability.

  • Atomicity ensures that a transaction is treated as a single, indivisible unit.

  • Consistency ensures that a transaction brings the database from one valid state to...

View all Software Engineer interview questions
A Software Engineer Trainee was asked 11mo ago
Q. Types of machine learning and use cases of each.
Ans. 

Types of machine learning include supervised, unsupervised, and reinforcement learning, each with unique use cases.

  • Supervised learning: Uses labeled data to train a model to make predictions. Example: spam email detection.

  • Unsupervised learning: Finds patterns in unlabeled data. Example: customer segmentation.

  • Reinforcement learning: Learns through trial and error to maximize rewards. Example: game playing AI.

View all Software Engineer Trainee interview questions
A Software Engineer Level 1 was asked
Q. SQL query and sorting algorithm
Ans. 

SQL query to retrieve data from a database and sorting algorithm to organize the data

  • Use SELECT statement in SQL to retrieve data from a specific table

  • Use ORDER BY clause in SQL to sort the retrieved data based on a specific column

  • Implement a sorting algorithm like Bubble Sort, Quick Sort, or Merge Sort in a programming language to organize data

View all Software Engineer Level 1 interview questions

Maruti Techlabs Interview Experiences

11 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Oct 2024

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

There are total 120 min test in this maths related,oops,dbms ,cn and also 1 coding question

Round 2 - One-on-one 

(4 Questions)

  • Q1. About testing (Manual testing),testing senarios
  • Q2. DBMS query on join
  • Ans. 

    Understanding joins in DBMS is crucial for querying related data from multiple tables effectively.

    • A join combines rows from two or more tables based on a related column.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

    • Example of INNER JOIN: SELECT * FROM Employees INNER JOIN Departments ON Employees.DeptID = Departments.DeptID;

    • LEFT JOIN returns all records from the left table and matched re...

  • Answered by AI
  • Q3. DSA easy level question
  • Q4. 1 puzzel (prepare gfg)
Round 3 - Technical 

(3 Questions)

  • Q1. Testing related question
  • Q2. DSA easy-level questions
  • Q3. Resume related projects
Round 4 - Technical 

(2 Questions)

  • Q1. 1 DSA questions
  • Q2. Your interest subject releted questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of language and database
  • Q2. Programming round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What the frequent tool you used for Incident tracking
  • Ans. 

    The frequent tool used for Incident tracking is ServiceNow

    • ServiceNow is a popular incident tracking tool used in IT industry

    • It helps in logging, tracking, and resolving incidents efficiently

    • Other common tools include Jira, Zendesk, and Freshservice

  • Answered by AI
  • Q2. How to handle customer critical application in Web tier
  • Ans. 

    Customer critical applications in Web tier require proactive monitoring, quick response to issues, and effective communication with stakeholders.

    • Implement proactive monitoring tools to detect issues before they impact customers

    • Establish clear escalation procedures to quickly address critical issues

    • Regularly communicate with customers to provide updates on issue resolution progress

    • Have a backup plan in place to ensure c...

  • Answered by AI

Skills evaluated in this interview

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

Basic concepts for .net core in depth

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

I applied via Company Website and was interviewed in Sep 2023. There were 3 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 - Coding Test 

Will ask basic to medium level coding questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Will ask questions mostly related to oops, computer networks and os and database

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation of core concepts of computer engineering & database related questions will help you to crack freshers interview.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2022. There were 4 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 - Aptitude Test 

First round was the aptitude test which contains questions like oops,Dbms and maths reasoning questions.

Round 3 - Technical 

(2 Questions)

  • Q1. Interview containing questions on OOPS, DBMS and one coding question which is based on simple coding questions like write Fibonacci or factorial questions.
  • Q2. What is OOPS and say their types? then code for atm machine using switch case
Round 4 - Technical 

(2 Questions)

  • Q1. Third round is the final round but it is not hr round it is technical one where they will ask about some basic questions on computer networks,DBMS,OOPS and will give you one coding questions like bubble so...
  • Q2. Code for bubble sort,What is acid property,etc...
  • Ans. 

    Bubble sort is a simple sorting algorithm. ACID properties are used to ensure database transactions are reliable.

    • Bubble sort repeatedly swaps adjacent elements if they are in the wrong order.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single, indivisible unit.

    • Consistency ensures that a transaction brings the database from one valid state to anot...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear basic coding questions and other cs subjects if you are going for the fresher's job

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Half hour aptitude test which also contains some technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is the difference between method overloading and overwriting?
  • Ans. 

    Method overloading involves multiple methods in the same class with the same name but different parameters. Method overriding involves a subclass providing a specific implementation of a method that is already provided by its superclass.

    • Method overloading is achieved within the same class by having multiple methods with the same name but different parameters.

    • Method overriding occurs in a subclass that provides a specif...

  • Answered by AI
  • Q2. Types of machine learning and use cases of each.
  • Ans. 

    Types of machine learning include supervised, unsupervised, and reinforcement learning, each with unique use cases.

    • Supervised learning: Uses labeled data to train a model to make predictions. Example: spam email detection.

    • Unsupervised learning: Finds patterns in unlabeled data. Example: customer segmentation.

    • Reinforcement learning: Learns through trial and error to maximize rewards. Example: game playing AI.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is transfer learning in ML?
  • Ans. 

    Transfer learning is a machine learning technique where a model trained on one task is re-purposed on a second related task.

    • Transfer learning involves using pre-trained models as a starting point for a new task.

    • It helps in saving time and computational resources by leveraging knowledge from previous tasks.

    • Fine-tuning and feature extraction are common transfer learning approaches.

    • Example: Using a pre-trained image class...

  • Answered by AI
  • Q2. SQL joining query between two tables.
  • Ans. 

    SQL joining query between two tables

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are giving interview from college placements then fundamental concepts of computer engineering will be asked and if you have majorly worked in any specific domain (such as ML, Etc) then in round two you might encounter questions from it.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2022. 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 - Technical 

(2 Questions)

  • Q1. What are the locators used in Selenium
  • Ans. 

    Locators used in Selenium are used to identify web elements on a web page.

    • Selenium supports various locators such as ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

    • ID and Name locators are the most commonly used locators in Selenium.

    • CSS Selector and XPath locators are more powerful and flexible than other locators.

    • Example: driver.findElement(By.id("elementID"));

  • Answered by AI
  • Q2. Different API Methods
  • Ans. 

    API methods are functions that allow communication between different software systems.

    • GET: retrieves data from a server

    • POST: sends data to a server to create a resource

    • PUT: updates an existing resource on a server

    • DELETE: removes a resource from a server

    • PATCH: updates a part of an existing resource on a server

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project management questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the practical aspects more than theory and be confident

Skills evaluated in this interview

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

I appeared for an interview in Mar 2023, where I was asked the following questions.

  • Q1. Find the second highest number in an array with a time complexity of less than O(n²). What workflows and challenges did you face during your college final year project?
  • Q2. Difference between Web session and Cookies. Difference between of SQL and NoSql.
  • Q3. Reasoning, Comprehension, Aptitude, Maths, CS
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 Nov 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 - Aptitude Test 

OOPs, reasoning, logical, Coding

Round 3 - Technical 

(1 Question)

  • Q1. OOPs and project related questions
Round 4 - Technical 

(1 Question)

  • Q1. SQL query and sorting algorithm
  • Ans. 

    SQL query to retrieve data from a database and sorting algorithm to organize the data

    • Use SELECT statement in SQL to retrieve data from a specific table

    • Use ORDER BY clause in SQL to sort the retrieved data based on a specific column

    • Implement a sorting algorithm like Bubble Sort, Quick Sort, or Merge Sort in a programming language to organize data

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Maruti Techlabs?
Ask anonymously on communities.

Maruti Techlabs Interview FAQs

How many rounds are there in Maruti Techlabs interview?
Maruti Techlabs interview process usually has 2-3 rounds. The most common rounds in the Maruti Techlabs interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Maruti Techlabs interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Maruti Techlabs. The most common topics and skills that interviewers at Maruti Techlabs expect are Javascript, Python, SQL, Angularjs and Entity Framework.
What are the top questions asked in Maruti Techlabs interview?

Some of the top questions asked at the Maruti Techlabs interview -

  1. What is the difference between method overloading and overwriti...read more
  2. Code for bubble sort,What is acid property,etc...read more
  3. What the frequent tool you used for Incident track...read more
How long is the Maruti Techlabs interview process?

The duration of Maruti Techlabs interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 12 interview experiences

Difficulty level

Easy 38%
Moderate 63%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

KDK Software Interview Questions
3.0
 • 16 Interviews
Idfy Interview Questions
3.4
 • 16 Interviews
View all

Maruti Techlabs Reviews and Ratings

based on 41 reviews

2.8/5

Rating in categories

3.1

Skill development

2.7

Work-life balance

2.9

Salary

3.0

Job security

2.7

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 41 Reviews and Ratings
Devops Lead

Ahmedabad

6-11 Yrs

Not Disclosed

Senior Software Engineer- Dot Net

Ahmedabad

4-7 Yrs

₹ 8-15 LPA

Explore more jobs
Software Engineer
30 salaries
unlock blur

₹5.5 L/yr - ₹10.4 L/yr

Technical Lead
17 salaries
unlock blur

₹12.5 L/yr - ₹21.5 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹7.2 L/yr - ₹16.5 L/yr

Devops Engineer
14 salaries
unlock blur

₹6 L/yr - ₹13.5 L/yr

Software Engineer Level 1
13 salaries
unlock blur

₹6.6 L/yr - ₹9 L/yr

Explore more salaries
Compare Maruti Techlabs with

Global Edge Software

3.5
Compare

Moveinsync Technology Solutions

3.2
Compare

PagarBook

3.7
Compare

Trawex Technologies

4.5
Compare
write
Share an Interview