Premium Employer

i

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

Tata Advanced Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tata Advanced Systems Executive Software Developer Interview Questions, Process, and Tips

Updated 11 Sep 2022

Tata Advanced Systems Executive Software Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions related to c++ concepts like templates, copy constructor and inheritance. Questions related to pointers.

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is inheritance and types of inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single, multiple, multilevel, hierarchical, and hybrid.

    • Single inheritance involves a class inheriting from a single base class.

    • Multiple inheritance involves a class inheriting from multiple base c...

  • Answered by AI
  • Q2. List sorting and searching algorithms
  • Q3. Questions related to previous projects
  • Q4. What are constructors and destrutors.
  • Ans. 

    Constructors and destructors are special member functions in object-oriented programming languages.

    • Constructors are used to initialize the object's data members when it is created.

    • Destructors are used to free up any resources allocated by the object when it is destroyed.

    • Constructors have the same name as the class and no return type.

    • Destructors have the same name as the class preceded by a tilde (~) and no return type.

    • ...

  • Answered by AI
  • Q5. What is copy constructor and how is it different from regular constructors?
  • Ans. 

    Copy constructor creates a new object by copying an existing object of the same class.

    • Copy constructor is used to create a new object with the same values as an existing object.

    • It takes an object of the same class as a parameter.

    • It is different from regular constructors as it creates a new object by copying an existing object.

    • Copy constructor is invoked when an object is passed by value or returned by value.

  • Answered by AI
Round 3 - One-on-one 

(4 Questions)

  • Q1. Questions based on projects
  • Q2. What is virtual function, abstract class, differences between virtual function and pure virtual function
  • Ans. 

    Virtual functions allow polymorphism, abstract classes cannot be instantiated, pure virtual functions have no implementation.

    • Virtual functions are functions in a base class that can be overridden in derived classes

    • Abstract classes are classes that have at least one pure virtual function and cannot be instantiated

    • Pure virtual functions have no implementation and must be overridden in derived classes

    • Virtual functions can...

  • Answered by AI
  • Q3. Difference between copy constructor and = operator.
  • Ans. 

    Copy constructor creates a new object by copying an existing object, while = operator assigns the value of one object to another.

    • Copy constructor is used to create a new object with the same values as an existing object.

    • = operator is used to assign the value of one object to another.

    • Copy constructor is invoked when a new object is created from an existing object.

    • = operator is invoked when an existing object is assigned...

  • Answered by AI
  • Q4. What are lambda functions.
  • Ans. 

    Lambda functions are anonymous functions that can be passed as arguments or stored in variables.

    • Lambda functions are also known as anonymous functions or closures.

    • They are commonly used in functional programming languages like Python and JavaScript.

    • Lambda functions can be used to create higher-order functions, which take other functions as arguments.

    • They are often used for filtering, mapping, and reducing data in colle...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tata Advanced Systems Executive Software Developer interview:
  • C++
  • OOPS
Interview preparation tips for other job seekers - Prepare for the mentioned language and review your projects properly

Skills evaluated in this interview

What people are saying about Tata Advanced Systems

View All
respectfulpunch
Verified Icon
1d
works at
Tata Advanced Systems
Quality engineer
Hello guys, anyone from quality engineering here?
Got a question about Tata Advanced Systems?
Ask anonymously on communities.

Interview questions from similar companies

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

Coding on dsa with easy will question

Round 2 - Technical 

(1 Question)

  • Q1. Draw a linked list
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Coding Test 

Simple embedded c coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy embedded c coding interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2022. 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 - Aptitude Test 

Normal Aptitude test for 1 hour

Round 3 - One-on-one 

(1 Question)

  • Q1. How to reverse an array?
  • Ans. 

    To reverse an array of strings, iterate through the array and swap elements from start to end.

    • Iterate through the array using two pointers, one starting from the beginning and the other from the end.

    • Swap elements at the two pointers until they meet in the middle.

    • Repeat until all elements are swapped and the array is reversed.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for AIRBUS Software Engineer interview:
  • Programming

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

AIRBUS user image Venkat S Raghavan

posted on 13 Oct 2023

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

I applied via Job Fair and was interviewed before Oct 2022. There were 3 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 - HR 

(1 Question)

  • Q1. Tell me about your strengths and weakness
Round 3 - Technical 

(1 Question)

  • Q1. Explain OOPS and functional programming
  • Ans. 

    OOPS focuses on objects and classes, while functional programming focuses on functions as first-class citizens.

    • OOPS involves concepts like inheritance, encapsulation, and polymorphism.

    • Functional programming emphasizes immutability, pure functions, and higher-order functions.

    • In OOPS, data is typically stored in objects with methods to manipulate the data.

    • Functional programming avoids side effects and mutable state.

    • Examp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and answer your best
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

There was simple aptitude questions along with some C snippet

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between RISC and CISC?
  • Ans. 

    RISC (Reduced Instruction Set Computing) has a smaller set of simple instructions, while CISC (Complex Instruction Set Computing) has a larger set of complex instructions.

    • RISC processors have simpler instructions that can be executed in a single clock cycle, making them faster.

    • CISC processors have more complex instructions that may require multiple clock cycles to execute.

    • RISC architectures typically have a smaller chi...

  • Answered by AI
  • Q2. How ADC(Analog to Digital Converter) works?
  • Ans. 

    ADC converts analog signals into digital data by sampling the input signal at regular intervals.

    • ADC samples the input signal at regular intervals

    • It quantizes the sampled values into discrete digital values

    • The resolution of ADC determines the number of possible digital values

    • Common types of ADC include successive approximation ADC and delta-sigma ADC

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa + JavaScript related questions and outputs

Round 2 - Coding Test 

Js related coding + easy dsa

Round 3 - Behavioral 

(2 Questions)

  • Q1. Mostly about the projects you did earlier
  • Q2. What do you focus on learning in future
  • Ans. 

    I focus on learning new programming languages, technologies, and best practices to stay current in the industry.

    • Learning new programming languages such as Python or Go

    • Exploring emerging technologies like blockchain or machine learning

    • Staying updated on best practices in software development such as Agile or DevOps

    • Improving problem-solving skills through coding challenges and projects

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Assignment 

Coding questions related to logic correction and write a correct logic for wrongly given code

Round 2 - Technical 

(2 Questions)

  • Q1. Coding question
  • Q2. Coding question logic
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

Basic leetcode problems

Round 2 - Technical 

(1 Question)

  • Q1. Basic java questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview before Dec 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. About project experience

Tata Advanced Systems Interview FAQs

How many rounds are there in Tata Advanced Systems Executive Software Developer interview?
Tata Advanced Systems interview process usually has 3 rounds. The most common rounds in the Tata Advanced Systems interview process are One-on-one Round and Aptitude Test.
What are the top questions asked in Tata Advanced Systems Executive Software Developer interview?

Some of the top questions asked at the Tata Advanced Systems Executive Software Developer interview -

  1. What is virtual function, abstract class, differences between virtual function ...read more
  2. What is copy constructor and how is it different from regular constructo...read more
  3. What is inheritance and types of inherita...read more

Tell us how to improve this page.

Join Tata Advanced Systems Delivering End-to-End Innovative Solutions in Aerospace & Defence

Interview Questions from Similar Companies

Indian Army Interview Questions
4.7
 • 152 Interviews
GE Interview Questions
4.2
 • 104 Interviews
AIRBUS Interview Questions
3.6
 • 72 Interviews
Data Patterns Interview Questions
3.7
 • 47 Interviews
View all
Tata Advanced Systems Executive Software Developer Salary
based on 12 salaries
₹4.5 L/yr - ₹7 L/yr
33% more than the average Executive Software Developer Salary in India
View more details

Tata Advanced Systems Executive Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
522 salaries
unlock blur

₹4.7 L/yr - ₹16.2 L/yr

Senior Executive
394 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Assistant Engineer
336 salaries
unlock blur

₹1.9 L/yr - ₹5.3 L/yr

Executive
317 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Officer
245 salaries
unlock blur

₹1.7 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Tata Advanced Systems with

Indian Army

4.7
Compare

Indian Air Force

4.5
Compare

Hindustan Aeronautics

4.3
Compare

Indian Navy

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