Upload Button Icon Add office photos
Engaged Employer

i

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

Team Computers Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Team Computers Senior Engineer Interview Questions and Answers

Updated 10 Mar 2022

Team Computers Senior Engineer Interview Experiences

3 interviews found

I applied via Recruitment Consulltant and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - HR 

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. What are your salary expectations?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be relax when u are giving interview

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical Knowledge, basic commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and be professional.

Senior Engineer Interview Questions Asked at Other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
asked in Nagarro
Q2. Write a program: two input, one is N(any integer, lets say 3), se ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
Q4. When you will perform Half or Full engine overhauling.
asked in HCLTech
Q5. Written: (Data structures) 1. write a c pgm to insert a node at t ... read more

I applied via Job Portal and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a great experience while working here in team computer. As giving the interview was not that easy, as they have asked questions related to my education as well as Professional experience. As tested us how we are capable for carrying the current task by asking questions related to our projects that we have handled on our previous company and also related to our Hobbies, skills, knowledge regarding some software applications etc. So be well prepared while giving your interview regarding your education and work experience .

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Design classes, and interfaces for Card(taash ke patte) games. Numbers from A, 2, 3, ..., symbol of 10,11... was given.
  • Q2. Streams - flat map

Interview Preparation Tips

Topics to prepare for Wissen Technology Senior Engineer interview:
  • Streams
  • Low level design
  • Array problems

Senior Engineer Interview Questions & Answers

Altimetrik user image Machineni Ravisankar

posted on 1 Mar 2025

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Assignment 

When I was join there no assignment I think now they conducting

Round 2 - One-on-one 

(2 Questions)

  • Q1. Check the basic knowledge of our skills
  • Q2. Need write programs
Round 3 - Technical 

(1 Question)

  • Q1. Check the in-depth knowledge about our work
Round 4 - HR 

(1 Question)

  • Q1. Discuss salary details
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Questions from past projects
  • Q2. Questions from Process
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap uses the hashCode() method of ke...

  • Answered by AI
  • Q2. What are the feature of jdk 8
  • Ans. 

    JDK 8 features include lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces enable the use of lambda expressions.

    • Streams provide a way to work with sequences of elements efficiently.

    • Default methods allow interfaces to have concrete methods.

    • Date and Time API improvements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on new feature of java

Skills evaluated in this interview

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

(1 Question)

  • Q1. Java hash map and how it works
  • Ans. 

    Java hash map is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap in Java implements the Map interface and allows null keys and values.

    • It uses hashing to store and retrieve key-value pairs, providing O(1) time complexity for get() and put() operations.

    • Example: HashMap map = new HashMap<>(); map.put("key", 1); int value = map.get("key");

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Transaction in Java
  • Ans. 

    A transaction in Java is a unit of work that is performed as a single, indivisible operation.

    • Transactions ensure data integrity by either committing all changes or rolling them back if an error occurs.

    • Transactions are typically used in database operations to ensure consistency.

    • In Java, transactions are commonly implemented using frameworks like Spring's @Transactional annotation.

  • Answered by AI
  • Q2. GitHub code push

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. 1.SOLID Principles: Define in detail the solid principles, interviewer will be more focused on the practical examples of the principles.
  • Ans. S stands for single responsibility, O stands for Open for extension and closed for modification, L stands for Liskov Substitution principle, I stands for Inversion of control and D stands for Dependency inversion
  • Answered by Sweta Lavania
Round 3 - One-on-one 

(3 Questions)

  • Q1. Coding questions like implement linked list
  • Q2. Find the second largest element from the array.
  • Ans. 

    Find the second largest element from the array.

    • Sort the array in descending order and return the second element.

    • Iterate through the array and keep track of the two largest elements.

    • Use a priority queue to find the second largest element.

  • Answered by AI
  • Q3. Sort the array and return second last element
  • Ans. 

    Sort array and return second last element

    • Use built-in sort function

    • Access second last element using array index -2

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , focus on algorithms,
First understand the question and then start writing the code.

Skills evaluated in this interview

Team Computers Interview FAQs

How many rounds are there in Team Computers Senior Engineer interview?
Team Computers interview process usually has 1-2 rounds. The most common rounds in the Team Computers interview process are HR, Technical and Group Discussion.

Tell us how to improve this page.

Team Computers Senior Engineer Salary
based on 71 salaries
₹2.3 L/yr - ₹6 L/yr
59% less than the average Senior Engineer Salary in India
View more details

Team Computers Senior Engineer Reviews and Ratings

based on 10 reviews

2.3/5

Rating in categories

2.9

Skill development

2.4

Work-life balance

1.9

Salary

2.8

Job security

2.2

Company culture

2.1

Promotions

2.2

Work satisfaction

Explore 10 Reviews and Ratings
Desktop Support Engineer
601 salaries
unlock blur

₹0.9 L/yr - ₹4.5 L/yr

Technical Support Engineer
561 salaries
unlock blur

₹1.5 L/yr - ₹5.1 L/yr

Desktop Support Engineer L2
166 salaries
unlock blur

₹1.6 L/yr - ₹4.3 L/yr

System Administrator
149 salaries
unlock blur

₹1.7 L/yr - ₹8 L/yr

L2 Technical Support Engineer
141 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Team Computers with

HCLTech

3.5
Compare

Wipro

3.7
Compare

Tech Mahindra

3.5
Compare

TCS

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