i
Tata Advanced
Systems
Filter interviews by
Insertion Sort is a simple sorting algorithm that builds a sorted array one element at a time.
Works by dividing the array into a sorted and an unsorted part.
Starts with the second element, compares it to the first, and inserts it in the correct position.
Repeats this process for each subsequent element until the entire array is sorted.
Example: For array [5, 2, 9, 1], it sorts as follows: [5], [2, 5], [2, 5, 9], [1,...
You can swap two variables without a third variable using arithmetic operations or bitwise XOR, maintaining their values.
Using Arithmetic: a = a + b; b = a - b; a = a - b; // This method uses addition and subtraction to swap values.
Using Bitwise XOR: a = a ^ b; b = a ^ b; a = a ^ b; // This method uses the XOR operation to swap values without a third variable.
No Additional Memory: Both methods achieve the swap wit...
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.
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 ...
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 ass...
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 b...
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 ...
OOP is a programming paradigm based on objects, encapsulating data and behavior through four main concepts: encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.
Inheritance: Mechanism to create a new class from an existing class, inherit...
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 function...
posted on 10 Aug 2022
I appeared for an interview in Apr 2023, where I was asked the following questions.
You can swap two variables without a third variable using arithmetic operations or bitwise XOR, maintaining their values.
Using Arithmetic: a = a + b; b = a - b; a = a - b; // This method uses addition and subtraction to swap values.
Using Bitwise XOR: a = a ^ b; b = a ^ b; a = a ^ b; // This method uses the XOR operation to swap values without a third variable.
No Additional Memory: Both methods achieve the swap without ...
OOP is a programming paradigm based on objects, encapsulating data and behavior through four main concepts: encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.
Inheritance: Mechanism to create a new class from an existing class, inheriting i...
Insertion Sort is a simple sorting algorithm that builds a sorted array one element at a time.
Works by dividing the array into a sorted and an unsorted part.
Starts with the second element, compares it to the first, and inserts it in the correct position.
Repeats this process for each subsequent element until the entire array is sorted.
Example: For array [5, 2, 9, 1], it sorts as follows: [5], [2, 5], [2, 5, 9], [1, 2, 5...
I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.
Questions related to c++ concepts like templates, copy constructor and inheritance. Questions related to pointers.
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...
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.
...
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.
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...
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...
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...
Top trending discussions
I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 5 interview rounds.
Basic c Programming and Embedded Systems
posted on 8 Sep 2021
Dsa + JavaScript related questions and outputs
Js related coding + easy dsa
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
I applied via LinkedIn and was interviewed before Sep 2022. There were 3 interview rounds.
Normal Aptitude test for 1 hour
I applied via Job Fair and was interviewed before Oct 2022. There were 2 interview rounds.
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...
I applied via LinkedIn and was interviewed in Apr 2022. There were 5 interview rounds.
React server side rendering generates HTML on the server while client side rendering generates HTML on the browser.
Server side rendering is better for SEO and initial page load time
Client side rendering is better for interactivity and dynamic content
Server side rendering requires more initial setup and configuration
Client side rendering can be easier to develop and maintain
To convert a class based component to functional component, we need to remove the class syntax and use hooks instead.
Remove the class syntax and replace it with a function
Remove the render method and return the JSX directly
Replace this.props with props
Use useState hook to manage state
Use useEffect hook to manage lifecycle methods
Basic leetcode problems
I appeared for an interview before Dec 2023.
Some of the top questions asked at the Tata Advanced Systems Executive Software Developer interview -
based on 1 interview experience
Difficulty level
Duration
based on 2 reviews
Rating in categories
Assistant Manager
655
salaries
| ₹10 L/yr - ₹15.9 L/yr |
Senior Executive
460
salaries
| ₹5.3 L/yr - ₹11 L/yr |
Assistant Engineer
344
salaries
| ₹2.1 L/yr - ₹6.7 L/yr |
Executive
344
salaries
| ₹3.9 L/yr - ₹8.2 L/yr |
Officer
267
salaries
| ₹1.7 L/yr - ₹5 L/yr |
Indian Army
Indian Air Force
Hindustan Aeronautics
Indian Navy