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 Desktop Support Engineer 1 Interview Questions and Answers

Updated 11 Apr 2024

Team Computers Desktop Support Engineer 1 Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. How you will solve System Slowness Issue??
  • Ans. 

    To solve system slowness, I would start by checking for any background processes consuming resources and optimizing system settings.

    • Check for any background processes consuming high CPU or memory usage

    • Run disk cleanup and defragmentation to optimize disk performance

    • Update drivers and software to ensure compatibility and performance

    • Increase system RAM if necessary to improve multitasking capabilities

  • Answered by AI
  • Q2. What is BSOD Solution Steps??
  • Ans. 

    BSOD Solution Steps involve troubleshooting the Blue Screen of Death error on Windows systems.

    • Check for recently installed hardware or software

    • Run Windows Update to ensure system is up to date

    • Check for driver updates and compatibility issues

    • Run hardware diagnostics to check for faulty components

    • Check for malware or virus infections

    • Restore system to a previous stable state using System Restore

  • Answered by AI
  • Q3. Question on Power Issue

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Technical 

(1 Question)

  • Q1. Asked about Java,spring MVC,code snippets asked foroutput
Round 2 - Technical 

(1 Question)

  • Q1. About rest template angular spring boot
Round 3 - One-on-one 

(1 Question)

  • Q1. This round is withmanager about technical
Round 4 - One-on-one 

(1 Question)

  • Q1. Salary discussion with hr policies
Round 5 - Technical 

(1 Question)

  • Q1. No round was happened

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be strong on technical and work what you done previously
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 

(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<String, Integer> map = new HashMap<>(); map.put("key", 1); int value = map.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Technical questions and more scenario based questions. Performance related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a quick process which took just 6 days to complete the interviews and to get offer.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Previous projects, Basic React Questions and Node js questions.
Round 2 - Coding Test 

Fetching data from api, DSA question (Queue implementation)

Round 3 - HR 

(1 Question)

  • Q1. Salary and package discussion
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round - just project explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA concepts.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 2023. There were 3 interview rounds.

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 

(2 Questions)

  • Q1. 1.polyfill map, currying vs closure, reduce method, explain this?, 2.what is lazyload and suspense, single thread vs multi thread, Event loop(task queue & microtask queue)?
  • Q2. Explain redux? Redux vs context api? ES6 features? Rest vs Spread? null vs undefined?
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux is a state management library for JavaScript applications.

    • It helps in managing the state of an application in a predictable way.

    • Redux follows a unidirectional data flow pattern.

    • Context API is a built-in feature of React that can be used for state management, but it is not as powerful as Redux.

    • ES6 features include arrow functions, template literals, destru...

  • Answered by AI
Round 3 - Coding Test 

Output based question regarding shallow and deepcopy related to object.
write a program for i/p: "This is the JS guide, developer!" o/p: "sihT si eht SJ ,ediug !repoleved"
react timer based output start, stop and reset.

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared all rounds and holded one offer in this process. This whole interview process took around 2 months. BGV itself 1 month (very very slow). Got letter of intent alike Offer letter. By trusting this LOI I withdraw my other offer. HR named irfana from chennai (worst person) and Meghna who is superior to her. Both of them didnt even respond for status which i have been asking for two week continuously. No response, Literally altimetrik wasted my time and efforts.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Everything on java spring sql
  • Q2. Don’t waste your time as i did

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not waste your precious time because they will not give you offer more than your current ctc.
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

Interview Questionnaire 

1 Question

  • Q1. Closure,array destructuring,arrow function,rest parameter,bind,call and apply. Lazy loading, react context,usecallback,lifecycle method using hooks.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear. Questions based on HTML5,CSS3,Vanila JS,ES6,React JS.

Team Computers Interview FAQs

How many rounds are there in Team Computers Desktop Support Engineer 1 interview?
Team Computers interview process usually has 1 rounds. The most common rounds in the Team Computers interview process are Technical.
How to prepare for Team Computers Desktop Support Engineer 1 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Team Computers. The most common topics and skills that interviewers at Team Computers expect are Desktop Administration and Desktop Support.
What are the top questions asked in Team Computers Desktop Support Engineer 1 interview?

Some of the top questions asked at the Team Computers Desktop Support Engineer 1 interview -

  1. How you will solve System Slowness Issu...read more
  2. What is BSOD Solution Step...read more
  3. Question on Power Is...read more

Tell us how to improve this page.

Team Computers Desktop Support Engineer 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 341 Interviews
CitiusTech Interview Questions
3.3
 • 277 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 222 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Indium Software Interview Questions
4.1
 • 186 Interviews
Incedo Interview Questions
3.1
 • 184 Interviews
View all
Team Computers Desktop Support Engineer 1 Salary
based on 24 salaries
₹1.8 L/yr - ₹3.5 L/yr
7% more than the average Desktop Support Engineer 1 Salary in India
View more details

Team Computers Desktop Support Engineer 1 Reviews and Ratings

based on 7 reviews

3.6/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.5

Salary

3.7

Job security

3.4

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 7 Reviews and Ratings
Desktop Support Engineer
588 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Technical Support Engineer
494 salaries
unlock blur

₹1.5 L/yr - ₹4.9 L/yr

Desktop Support Engineer L2
166 salaries
unlock blur

₹1.6 L/yr - ₹4.3 L/yr

System Administrator
157 salaries
unlock blur

₹1.7 L/yr - ₹8.5 L/yr

Network Engineer
142 salaries
unlock blur

₹1.9 L/yr - ₹6.1 L/yr

Explore more salaries
Compare Team Computers with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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