Upload Button Icon Add office photos

Filter interviews by

Konverge Technologies Desktop Support Engineer Interview Questions and Answers

Updated 30 Aug 2024

Konverge Technologies Desktop Support Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. About your self?
  • Q2. What is your Notice period?
  • Ans. 

    My notice period is 30 days.

    • My notice period is 30 days.

    • I am required to give a 30-day notice before leaving my current position.

    • I need to work for 30 more days before I can leave my current job.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Hardware related?
  • Q2. Network related?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go with konverge they not increase your salary after cycle complete.

Desktop Support Engineer Jobs at Konverge Technologies

View all

Interview questions from similar companies

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. All basic HR questions and salary discussion.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 5 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 - Coding Test 

Duration is around 1 hour

Round 3 - Technical 

(1 Question)

  • Q1. 1. Basic programming concepts 2. OOP concepts and basic problem solving skills
Round 4 - Technical 

(1 Question)

  • Q1. Programming question
Round 5 - HR 

(1 Question)

  • Q1. 1. Basic questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Second largest number in an array
  • Ans. 

    Find the second largest number in an array of strings.

    • Convert the strings to numbers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q2. Pairs with given sum
  • Ans. 

    Find pairs in an array that sum up to a given target value.

    • Use a hash set to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hash set.

    • Return the pairs that sum up to the target value.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Basic language based questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Questions regards node js and java script concept, event loop, why node is single threaded, how event loop works in node js, database queries and previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was absolutely amazing and fantastic.
Advice:
Answer question with confidence.
Feel comfortable with interviewer.

I applied via Campus Placement

Round 1 - Aptitude Test 

In this round you have to clear Aptitude and Basic Coding

Round 2 - Coding Test 

It is pure coding test which is conduct on hacker rank platform. You have to complete 4 question(1 easy + 2 medium + 1 hard)

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question base on Sorting and Array
  • Q2. Some of theory question base on your Project technology and DSA
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve your basic concepts and coding skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Questions on dsa, 2 medium and 1 easy level.
  • Q2. Questions related to the projects.

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

Konverge Technologies Interview FAQs

How many rounds are there in Konverge Technologies Desktop Support Engineer interview?
Konverge Technologies interview process usually has 2 rounds. The most common rounds in the Konverge Technologies interview process are HR and Technical.
How to prepare for Konverge Technologies Desktop Support Engineer 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 Konverge Technologies. The most common topics and skills that interviewers at Konverge Technologies expect are Desktop Support, Windows, OS Installation, Installation and SCCM.
What are the top questions asked in Konverge Technologies Desktop Support Engineer interview?

Some of the top questions asked at the Konverge Technologies Desktop Support Engineer interview -

  1. Hardware relat...read more
  2. Network relat...read more

Tell us how to improve this page.

Konverge Technologies Desktop Support Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.8
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
View all
Konverge Technologies Desktop Support Engineer Salary
based on 39 salaries
₹2 L/yr - ₹3.5 L/yr
At par with the average Desktop Support Engineer Salary in India
View more details

Konverge Technologies Desktop Support Engineer Reviews and Ratings

based on 7 reviews

3.0/5

Rating in categories

2.6

Skill development

2.7

Work-life balance

3.1

Salary

2.7

Job security

2.9

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 7 Reviews and Ratings
Desktop Support engineer

Bangalore / Bengaluru

1-6 Yrs

Not Disclosed

Desktop Support engineer

Mumbai

1-6 Yrs

Not Disclosed

Explore more jobs
Network Engineer
48 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Desktop Support Engineer
39 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Network Security Engineer
16 salaries
unlock blur

₹5.5 L/yr - ₹9.8 L/yr

HR Executive
15 salaries
unlock blur

₹2.5 L/yr - ₹3.3 L/yr

Business Development Executive
11 salaries
unlock blur

₹3.6 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Konverge Technologies with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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