Upload Button Icon Add office photos

Filter interviews by

Connectwise India Application Support Engineer Interview Questions and Answers

Updated 7 Mar 2024

Connectwise India Application Support Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Some questions about past experience, some about coding knowledge and a live coding question for exceptional handling
  • Q2. What are middlewares
  • Ans. 

    Middlewares are software components that act as a bridge between different applications or systems, facilitating communication and data exchange.

    • Middlewares help in managing communication between different software components

    • They can provide additional functionalities such as authentication, logging, and error handling

    • Examples include Express.js middleware in Node.js applications and middleware in web servers like Apac

  • Answered by AI
  • Q3. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which a class receives its dependencies from external sources rather than creating them itself.

    • Allows for easier testing by injecting mock dependencies

    • Promotes loose coupling between classes

    • Improves code reusability and maintainability

    • Commonly used in frameworks like Spring in Java

  • Answered by AI
  • Q4. Situational questions regarding issue solving.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ask about your projects and what language you have learn ( besic question )
  • Q2. Are able to travel accros navi mumbai and mumbai region as per client location and shift are compulsary to follow
Round 2 - HR 

(1 Question)

  • Q1. Same quesiton regarding traveling and work in shift

Interview Preparation Tips

Interview preparation tips for other job seekers - they say it is an application support role but some candidate say they put you in application monitoring role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the issues you are facing daily?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Coding Test 

4 coding question easy level questions based on arrays and strings

Round 2 - Assignment 

Code pairing round need to use oops to solve the problem

Round 3 - Technical 

(3 Questions)

  • Q1. Two sum problem
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses hashing to store and retrieve key-value pairs

    • It uses an array of linked lists to handle collisions

    • The key's hash code is used to determine the index in the array where the key-value pair is stored

    • HashMap allows one null key and multiple null values

    • Example: HashMap<String, Integer> map = new

  • Answered by AI
  • Q3. Sql queries on aggregate function
Round 4 - HR 

(2 Questions)

  • Q1. Gender equality
  • Q2. Situation based question

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared on oops and DSA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Out of two table employee and salary join both and 3rd max salary from salary.
  • Q2. How is problem management done.
  • Ans. 

    Problem management involves identifying, analyzing, and resolving recurring issues to prevent future incidents.

    • Identify the root cause of the problem

    • Document the problem and its resolution

    • Implement corrective actions to prevent recurrence

    • Monitor and track the effectiveness of the solution

    • Collaborate with stakeholders to ensure continuous improvement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good interview, The interviewer was attentive and was not cutting in between.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The questions are medium level more questions on quantitive apptitude

Round 2 - Coding Test 

Three questions based on array , string,and time complexity

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Applications Engineer interview:
  • Asked most on oops concepts
Interview preparation tips for other job seekers - Practice apptitude
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Scaler Carrera Hub and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The whole interview about DSA, oops database and your relevant text

Round 2 - Coding Test 

There is two interview around L1 and L2 L1 is about data structure and algorithm and oops. Concept in L2 interview is about all tach stack and resume Q&A, Ask about react, redux, Python DSA, oops, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - The company has a positive culture, although the salary is lower. However, the job rules align well with my preferences.

I applied via Naukri.com and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1. Aptitude, coding and db schema design round
  • Q2. 2. Telephonic Interview - array based question
  • Q3. Collection Framework
  • Q4. DB query (where and having)
  • Q5. Linux command
  • Q6. 3. F2F tech - flood fill, db normalization, inheritance
  • Q7. 4. HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basics. The interviewers are helpful

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Select from employees tables all those who don't work in any department.
  • Q2. What is a cursor and write a query
  • Ans. 

    A cursor is a database object used to retrieve data from a result set one row at a time.

    • A cursor is used to iterate through a result set.

    • It can be used to update or delete rows in a table.

    • Example query: DECLARE cursor_name CURSOR FOR SELECT column1, column2 FROM table_name;

    • Example usage: OPEN cursor_name; FETCH NEXT FROM cursor_name INTO @variable1, @variable2;

    • Example usage: CLOSE cursor_name; DEALLOCATE cursor_name;

  • Answered by AI
  • Q3. How early you can join

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic questions thoroughly

Skills evaluated in this interview

I applied via Company Website and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Define float, double. 2. Write a program to display amount according to the given current bill.
  • Ans. 

    Questions on float, double and programming to display amount based on current bill for Applications Engineer role.

    • Float and double are data types used to represent decimal numbers with different precision levels.

    • A program to display amount based on current bill can be written using basic arithmetic operations and input/output functions.

    • Example: float num1 = 10.5; double num2 = 20.75; printf("Total amount: %.2f", num1 +...

  • Answered by AI
  • Q2. 3. What would you do if you are a team leader and one of your team member started negatively talking about a project.
  • Q3. 4. Iam from mechanical they asked me about why you applied for an IT job.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Don't be afraid.
2. Be confident.

Skills evaluated in this interview

Connectwise India Interview FAQs

How many rounds are there in Connectwise India Application Support Engineer interview?
Connectwise India interview process usually has 1 rounds. The most common rounds in the Connectwise India interview process are One-on-one Round.
What are the top questions asked in Connectwise India Application Support Engineer interview?

Some of the top questions asked at the Connectwise India Application Support Engineer interview -

  1. What is dependency inject...read more
  2. What are middlewa...read more
  3. Situational questions regarding issue solvi...read more

Tell us how to improve this page.

Connectwise India Application Support Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Connectwise India Application Support Engineer Salary
based on 5 salaries
₹4.2 L/yr - ₹5 L/yr
11% less than the average Application Support Engineer Salary in India
View more details
Technical Support Engineer
182 salaries
unlock blur

₹2.6 L/yr - ₹8.7 L/yr

Senior Software Engineer
117 salaries
unlock blur

₹9 L/yr - ₹34 L/yr

Security Analyst
91 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Software Support Specialist
64 salaries
unlock blur

₹3.5 L/yr - ₹6 L/yr

Software Engineer
57 salaries
unlock blur

₹4.5 L/yr - ₹15 L/yr

Explore more salaries
Compare Connectwise India with

Zoho

4.3
Compare

Freshworks

3.5
Compare

TCS

3.7
Compare

HCLTech

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