Upload Button Icon Add office photos
Engaged Employer

i

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

Techahead Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Techahead Software Head/VP/GM-Production Interview Questions and Answers

Updated 11 Oct 2020

Techahead Software Head/VP/GM-Production Interview Experiences

1 interview found

I applied via Facebook and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Question on project Management and people management

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and innovative

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which area interview?
  • Q2. How much days working is one week?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was s technical and major stress test.

I applied via Company Website and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself Linked list and Array list
  • Ans. 

    I am a software trainee with knowledge in linked list and array list.

    • I have experience in implementing linked lists and array lists in various programming languages.

    • Linked lists are dynamic data structures while array lists are static data structures.

    • Linked lists are efficient for insertion and deletion operations while array lists are efficient for random access.

    • Examples of programming languages that support linked li

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview one should have technical knowledge and know programming language

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Dec 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical,Quantitative, Aptitude

Round 2 - Coding Test 

Write program on reverse a number

Round 3 - HR 

(2 Questions)

  • Q1. General questions about family, Ready to relocate etc.
  • Q2. Few technical questions on C/C++

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to learn all basics, be confident while giving answers

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your technical skills and background?
  • Q2. What is the use of pointers?
  • Ans. 

    Pointers are variables that store memory addresses. They are used to manipulate data structures and improve program efficiency.

    • Pointers allow for dynamic memory allocation

    • Pointers can be used to pass values by reference

    • Pointers can be used to create linked lists

    • Pointers can be used to access array elements

    • Example: int *ptr = # // stores address of num variable

    • Example: void swap(int *x, int *y) { int temp = *x; *x =...

  • Answered by AI
  • Q3. Difference between arrays and linkedlist?
  • Ans. 

    Arrays are fixed in size and contiguous memory while linked lists are dynamic and non-contiguous.

    • Arrays have constant time access to elements while linked lists require traversal.

    • Arrays are better for random access while linked lists are better for insertion and deletion.

    • Arrays use less memory overhead than linked lists.

    • Example: Array of strings - ['apple', 'banana', 'orange']

  • Answered by AI
  • Q4. Tell me about variables and its types?
  • Ans. 

    Variables are containers that store data values. There are different types of variables in programming.

    • Variables are declared using keywords like var, let, const.

    • Variables can store different types of data such as numbers, strings, booleans, objects, arrays, etc.

    • Variables can be global or local depending on where they are declared.

    • Variables can be reassigned with new values.

    • Examples: var age = 25; let name = 'John'; co

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't get disappointed for any reason

Skills evaluated in this interview

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 Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

This is a basic test where you will be asked to solve logical and reasoning questions. Pseudo codes and some basic programs.

Round 2 - Technical 

(4 Questions)

  • Q1. They will ask about the programming language that we know well. Be prepared everything about the specific programming language. And last but not least if you had done any projects be prepared on that as we...
  • Q2. What is Object-oriented programming?
  • Ans. 

    Object-oriented programming is a programming paradigm that organizes code into objects that interact with each other.

    • Encourages modular and reusable code

    • Focuses on data and behavior encapsulation

    • Supports inheritance and polymorphism

    • Examples: Java, C++, Python

  • Answered by AI
  • Q3. What is encapsulation?
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation is a fundamental principle of object-oriented programming.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data and methods within a class, we can control access to them.

    • Encapsulation improves code maintainability and reusability.

    • Example: A class with private ...

  • Answered by AI
  • Q4. Program to find prime number
  • Ans. 

    Program to find prime number

    • A prime number is a number greater than 1 that has no positive divisors other than 1 and itself

    • To check if a number is prime, iterate from 2 to the square root of the number and check if it divides the number evenly

    • If the number is divisible by any number in the range, it is not prime

    • Optimization: Only iterate up to the square root of the number, as factors repeat after that

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions like Tell me about yourself, strengths and weakness, will you be able to relocate, any challenges faced, participated in any challenges.

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Trainee interview:
  • OOPS
  • Java
  • HTML
  • CSS
  • SQL
Interview preparation tips for other job seekers - Just be confident and try to express that you are well versed with what you know.

Skills evaluated in this interview

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. Basic questions of java like core java , oops concepts
  • Q2. What is constructor
  • Ans. 

    A constructor is a special method that is used to initialize objects of a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object of the class is created.

    • They can be used to set default values for object properties.

    • Constructors can be overloaded to accept different parameters.

    • Example: public class Car { public Car() { // constructor code here } }

  • Answered by AI
  • Q3. How can we achieve multiple inheritance in java
  • Ans. 

    Java does not support multiple inheritance, but it can be achieved using interfaces.

    • Java supports multiple interface inheritance

    • A class can implement multiple interfaces

    • Interfaces can extend other interfaces

    • Example: class A implements interface B and C

    • Example: interface B extends interface D and E

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very good and I was selected in first attempt

Skills evaluated in this interview

I applied via Campus Placement

Interview Questionnaire 

3 Questions

  • Q1. Basic questions of java like core java , oops concepts
  • Q2. What is constructor
  • Ans. 

    A constructor is a special method that is used to initialize objects of a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • They can be used to set initial values for object properties.

    • Constructors can be overloaded to accept different parameters.

    • Example: public class Car { public Car() { // constructor code here } }

  • Answered by AI
  • Q3. How can we achieve multiple inheritance in java
  • Ans. 

    Multiple inheritance cannot be achieved directly in Java, but it can be simulated using interfaces or abstract classes.

    • Java does not support multiple inheritance of classes

    • Multiple inheritance can be achieved using interfaces or abstract classes

    • Interfaces allow a class to inherit from multiple interfaces

    • Abstract classes can provide partial implementation and can be extended by a single class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very good and I was selected in first attempt

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Array manipulation questions
  • Q2. Regarding your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong your basic of programing and make sure add only skills in which your confident

I applied via Company Website and was interviewed in May 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 

Clock,time and distance etc. And the time duration was 45 min.

Round 3 - Technical 

(2 Questions)

  • Q1. Basics concepts of oops , little bit of dsa topics and about the project.
  • Q2. Inheritance , abstraction , constructor and then Data Structure and algorithm.

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basics first . then work on some advance topics.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
View all
Software Engineer
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
76 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Techahead Software with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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