Upload Button Icon Add office photos

Filter interviews by

ALTRAN SOLUTIONS INDIA Software Engineer Interview Questions and Answers

Updated 22 Mar 2021

ALTRAN SOLUTIONS INDIA Software Engineer Interview Experiences

1 interview found

I applied via Other and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of C, Java, data structures, basic C programs on queues, linked list and many more..

Interview Preparation Tips

Interview preparation tips for other job seekers - Just answer whatever u know.. Dont just stay blank.. And be confident

Interview questions from similar companies

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

(3 Questions)

  • Q1. Search in a sorted matrix
  • Ans. 

    Search for a target value in a sorted matrix efficiently.

    • Start from the top right corner and move left or down based on comparison with target value

    • Utilize the sorted nature of the matrix to eliminate certain rows or columns

    • Implement binary search for more efficient search in each row or column

  • Answered by AI
  • Q2. Rotting orange graph
  • Q3. Database Indexing and SQL
Round 2 - Technical 

(3 Questions)

  • Q1. Design Patterns
  • Q2. Medium level Binary tree question
  • Q3. Previous work discussion

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Patna and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding questions were at Leetcode difficulty level and were derived from the Striver sheet.

Round 2 - Technical 

(2 Questions)

  • Q1. BFS graph level
  • Q2. Minimum flight distance . I was not shortlisted for interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well and computer fundamentals.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic MCQs on General aptitude, logical reasoning and programming questions

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is a constructor in C++?
  • Ans. 

    A constructor in C++ is a special member function that is automatically called when an object is created.

    • Constructors have the same name as the class and do not have a return type.

    • They can be used to initialize the object's data members.

    • Default constructors are automatically generated if no constructor is defined.

    • Parameterized constructors can be defined to accept arguments during object creation.

  • Answered by AI
  • Q2. What is copy assignment operator?
  • Ans. 

    Copy assignment operator is a special member function in C++ that allows one object to be assigned the values of another object of the same class.

    • Copy assignment operator is denoted by the = operator.

    • It is used to copy the values of one object into another object of the same class.

    • It is automatically generated by the compiler if not explicitly defined.

    • Example: MyClass obj1; MyClass obj2; obj2 = obj1; // Copy assignment

  • Answered by AI
  • Q3. What is virtualization in C++?
  • Ans. 

    Virtualization in C++ is the process of creating a virtual version of a class or function to allow for polymorphism and dynamic binding.

    • Virtualization in C++ is achieved through the use of virtual functions and inheritance.

    • Virtual functions are declared in a base class and overridden in derived classes to provide different implementations.

    • Virtualization allows for polymorphism, where a pointer to a base class can point...

  • Answered by AI
  • Q4. Implement String class
  • Ans. 

    Implement a custom String class in a programming language.

    • Define a class with necessary properties and methods to manipulate strings.

    • Include methods for concatenation, substring, length, etc.

    • Handle memory allocation and deallocation properly.

    • Example: class MyString { // implementation }

  • Answered by AI
  • Q5. What is smart pointers?
  • Ans. 

    Smart pointers are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically deallocating memory when no longer needed.

    • Examples include unique_ptr, shared_ptr, and weak_ptr in C++.

    • They provide better memory safety compared to raw pointers.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Can you provide a detailed explanation of object-oriented programming concepts?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Management (IIM), Indore and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

I was on data structures on python , c++, sql and java

Round 2 - Technical 

(4 Questions)

  • Q1. Sql based questions
  • Q2. Java based DS and devops
  • Q3. C++ data structures
  • Q4. Machine learning and Data structures
Round 3 - Assignment 

Case study of real life

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

I applied via campus placement at Dronacharya College of Engineering, Gurgaon and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Three coding question

Round 2 - Aptitude Test 

Two technical questions based on strings and linked lists.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic data structure and algorithms, along with communication skills.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Python and java spring cloud

Interview Preparation Tips

Interview preparation tips for other job seekers - all good
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Fibonacci series and program to find the max number in list

Round 2 - Technical 

(2 Questions)

  • Q1. What is oops and explain each of the terms
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs consists of four main principles: Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to the bundling of data and methods that operate on the data into a single unit.

    • Abstraction focuses on hiding the int...

  • Answered by AI
  • Q2. What is list, dictionary, set and tuple and difference between them
  • Ans. 

    List, dictionary, set, and tuple are data structures in Python with different characteristics and use cases.

    • List: ordered collection of items, mutable (can be changed), represented by square brackets []

    • Dictionary: unordered collection of key-value pairs, mutable, represented by curly braces {}

    • Set: unordered collection of unique items, mutable, represented by curly braces {}

    • Tuple: ordered collection of items, immutable ...

  • Answered by AI

Skills evaluated in this interview

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

It was a machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Similar to the other question
  • Q2. Give an array and an element sort the array with difference of that number to array elements
  • Ans. 

    Sort an array of strings by the difference of a given element to each array element.

    • Iterate through the array and calculate the absolute difference between the given element and each array element.

    • Sort the array based on the calculated differences.

    • Return the sorted array.

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

ALTRAN SOLUTIONS INDIA Software Engineer Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

3.0

Skill development

3.7

Work-life balance

4.4

Salary

3.7

Job security

4.4

Company culture

2.9

Promotions

2.6

Work satisfaction

Explore 3 Reviews and Ratings
Technical Lead
5 salaries
unlock blur

₹15 L/yr - ₹24 L/yr

Consultant
4 salaries
unlock blur

₹3.7 L/yr - ₹7.5 L/yr

Network Engineer
4 salaries
unlock blur

₹2.2 L/yr - ₹5.5 L/yr

Explore more salaries
Compare ALTRAN SOLUTIONS INDIA with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

HCLTech

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