Upload Button Icon Add office photos
Engaged Employer

i

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

Technotask Business Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Technotask Business Solutions Desktop Support Engineer Interview Questions and Answers

Updated 1 Feb 2023

Technotask Business Solutions Desktop Support Engineer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

You have to give a exam on computer in that. Exam there optional and theorical question

Round 2 - Technical 

(2 Questions)

  • Q1. Diffrence between Linux and windows
  • Ans. 

    Linux and Windows are two different operating systems with distinct features and functionalities.

    • Linux is an open-source operating system, while Windows is a proprietary operating system.

    • Linux is known for its stability, security, and flexibility, while Windows is known for its user-friendliness and compatibility with a wide range of software.

    • Linux uses a command-line interface (CLI) as its primary interface, while Win...

  • Answered by AI
  • Q2. Remain questions based on your cv

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic be confident just relax and don't hesitate

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions are related to your past working experience and the position that you applied for Microwave Transmission related questions: What is Microwave and types What is fadind and it's resolution steps D...
  • Q2. PDH-SDH related questions- Difference between PDH and sdh Frame structure of sdh High order and low order bytes and alarms related to bytes Alarms in sdh Ethernet over sdh What is GFP, ENCAPSULATION, VCAT,...
  • Q3. Generally your current work related questions Why you want to change your job What is your expectations from new job Where you seeing your self after 5 year's Current salary and expectations

Interview Preparation Tips

Round: HR Round
Experience: Related to offer they are giving and related cross questions

General Tips: I had been interviewed with Huawei in 2016 and total 2 rounds was there for me. Questions I already had shared, go through it.

I got my offer letter after 1 month after HR discussion but please follow up with HR team once you get call for your selection
Skills: Ethernet over SDH, SDH, Microwave, Technical Knowledge(ML, Microwave, Communication, Presentation Skills
Duration: 1-3 Months

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 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 - Aptitude Test 

Analytical Test with Mathematical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Java and Angular properly to crack the interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 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 - Aptitude Test 

1-hour exam, few math questions, and few technical were asked, and all were MCQs

Round 3 - Group Discussion 

Very general topics were asked to check our communication skills

Round 4 - Technical 

(3 Questions)

  • Q1. Intro, DBMS, SQL questions, OOPs concepts, and real-life examples, About the project I worked in, were asked. Most of the questions are based on the resume.
  • Q2. OOPs- inheritance, encapsulation code on it overloading, overriding concept and coding question
  • Q3. Coding questions on strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPs concepts properly, understand the questions properly, and give the right answers. Deliver every answer with real life example.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 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 - HR 

(2 Questions)

  • Q1. Regarding pervious experience
  • Q2. Roles and responsibilities
Round 3 - Technical 

(2 Questions)

  • Q1. Regarding Os issues
  • Q2. Wifi issues network issue
  • Ans. 

    Wifi issues can be caused by various network issues such as signal interference, outdated drivers, or incorrect network settings.

    • Check for signal interference from other electronic devices

    • Update wifi drivers on the device

    • Verify correct network settings such as SSID and password

    • Restart the router and device

    • Check for firmware updates on the router

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have faced many issues by joining this company actual they said it's a 3 months contract but in the 2nd month only they lay of us stating that project did not selected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Related to It Field.
  • Q2. About DHCP, Dns , IP address,Dora,
  • Q3. Windows, Troubleshooting, Networking
  • Q4. Good Question...

Interview Preparation Tips

Interview preparation tips for other job seekers - When I received call I think that it is fake it was good to join the company all is of this sites

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 126 minutes
Round difficulty - Hard

This round consist of coding questions as well as mcqs based on aptitude as well as some domain sections. This round is hard.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    Find the maximum sum path in a matrix from top row to bottom row by moving down or diagonally.

    • Use dynamic programming to keep track of maximum sum at each cell.

    • At each cell, consider the maximum sum from the cell above, left diagonal, and right diagonal.

    • Add the current cell value to the maximum of the three possibilities.

    • Repeat this process for all cells in the matrix to find the maximum sum path.

  • Answered by AI
  • Q2. 

    Boolean Matrix Transformation Challenge

    Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specifi...

  • Ans. 

    Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

    • Iterate through the matrix to find elements with value 1

    • Store the row and column indices of these elements

    • Update the entire row and column for each element found to be 1

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In this round the interviewer ask few questions related to domain and at last he ask some behavioral questions.

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of the lists by adjusting the pointers

    • Traverse both lists simultaneously until a common node is found

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in DelhiEligibility criteriaNo criteriaQuess Corp interview preparation:Topics to prepare for the interview - Data structures knowledge, OOPs, Pointers, Dynamic programming and Recursion, Graphs, Hashmaps and Priority Queues, Operating system, DBMS, Networking, Arrays, Strings, Stacks, Trees, Pointers, OS Kernel, Deadlock, Virtual Memory, Memory Management, Paging, Segmentation, Puzzles and aptitudeTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be calm and have confidence . Confidence is the key to crack any interview. 
Tip 2 : Try to give maximum time on basics of a topic 
Tip 3 : Practice interview questions
Tip 4 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Put only those skills in resume which the company requires, but don't put false information in resume
Tip 2 : Write only those things in resume in which you are 100% confident
Tip 3 : Have projects in resume and prepare well for it
Tip 4 : Keep it short and crisp.
Tip 5 : Focus on important things in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Related to cv and experience
  • Q2. Related to expectation and career
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. What are the responsibilities of a Data Analyst?
  • Ans. 

    Data Analysts are responsible for collecting, processing, and analyzing data to help organizations make informed decisions.

    • Collecting and organizing data from various sources

    • Cleaning and processing data to ensure accuracy and consistency

    • Analyzing data using statistical techniques and tools

    • Creating visualizations and reports to present findings

    • Interpreting data to provide insights and recommendations

    • Collaborating with s...

  • Answered by AI
  • Q2. Software engineer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. What you strength

Interview Preparation Tips

Interview preparation tips for other job seekers - Give the chance for experience people

Technotask Business Solutions Interview FAQs

How many rounds are there in Technotask Business Solutions Desktop Support Engineer interview?
Technotask Business Solutions interview process usually has 3 rounds. The most common rounds in the Technotask Business Solutions interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

Technotask Business Solutions Desktop Support Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.8
 • 424 Interviews
IKS Health Interview Questions
3.6
 • 235 Interviews
Alldigi Tech Interview Questions
4.0
 • 198 Interviews
IntouchCX Interview Questions
2.9
 • 197 Interviews
TTEC India Interview Questions
3.7
 • 137 Interviews
Globiva Interview Questions
3.1
 • 107 Interviews
Provana Interview Questions
3.9
 • 104 Interviews
ReSource Pro Interview Questions
4.0
 • 93 Interviews
View all
Technotask Business Solutions Desktop Support Engineer Salary
based on 17 salaries
₹1.4 L/yr - ₹3 L/yr
28% less than the average Desktop Support Engineer Salary in India
View more details

Technotask Business Solutions Desktop Support Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

2.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Customer Service Associate
146 salaries
unlock blur

₹0.9 L/yr - ₹3 L/yr

Team Lead
98 salaries
unlock blur

₹1.2 L/yr - ₹4.2 L/yr

C.S.A
90 salaries
unlock blur

₹0.9 L/yr - ₹3.5 L/yr

Customer Support Associate
89 salaries
unlock blur

₹0.9 L/yr - ₹3 L/yr

Customer Service Executive
85 salaries
unlock blur

₹1 L/yr - ₹2.6 L/yr

Explore more salaries
Compare Technotask Business Solutions with

Quess

3.8
Compare

Statestreet HCL Services

3.3
Compare

IKS Health

3.6
Compare

Alldigi Tech

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