Upload Button Icon Add office photos

Filter interviews by

Connectwise India Interview Questions, Process, and Tips

Updated 10 Jan 2025

Top Connectwise India Interview Questions and Answers

View all 37 questions

Connectwise India Interview Experiences

Popular Designations

52 interviews found

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 Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Questions were quite difficult.But some were easy

Round 2 - Coding Test 

They tested basic concepts from this coding test.

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2023. 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 - One-on-one 

(1 Question)

  • Q1. Active Directory, IP ranges, DHCP, DNS - The basics
Round 3 - One-on-one 

(1 Question)

  • Q1. Similar to Round 1. But a bit more in depth + questions that ask "What would you do in xyz situation"
Round 4 - HR 

(1 Question)

  • Q1. Standard HR questions. Prepare well!

Interview Preparation Tips

Topics to prepare for Connectwise India Security Analyst 1 interview:
  • Basic Cyber Security

Security Analyst 1 Interview Questions asked at other Companies

Q1. What is SIEM, how parsing will be done
View answer (1)

Technical Support L3 - Partner Engagement Interview Questions & Answers

user image Omkar Nath Pandey

posted on 6 Mar 2023

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

I applied via Job Portal and was interviewed in Sep 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1. Active Directory 2. Windows Administration 3. Windows Memory Management. 4. VMWare Related Questions
Round 3 - Technical 

(1 Question)

  • Q1. 1. Active Directory 2. Windows Administration 3. Windows Memory Management. 4. VMWare Related Questions
Round 4 - Behavioral 

(1 Question)

  • Q1. 1. Active Directory 2. Windows Administration 3. Windows Memory Management 4. VMWare Related Questions
Round 5 - HR 

(1 Question)

  • Q1. 1. Introduction 2. Past Experiences 3. Reason for changing the Job 4. Past Achievements 5. Expectations from the New Company 6. My Positives and Negatives 7. Expected Salary
  • Ans. 

    Answering the interview question for Technical Support L3 - Partner Engagement.

    • Introduction: Briefly introduce yourself, mentioning your relevant experience and skills.

    • Past Experiences: Discuss your previous roles and responsibilities in technical support, highlighting any achievements or notable projects.

    • Reason for changing the Job: Explain the motivation behind seeking a new opportunity, such as career growth, learni...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Connectwise India Technical Support L3 - Partner Engagement interview:
  • Active Directory
  • Windows Administration
  • VMware Administration
  • MS O365
Interview preparation tips for other job seekers - In Depth knowledge in Active Directory, Windows Administration & VMware and basic knowledge of O365 Administration.

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. The interview was pretty much straight forward which includes .net, azure, cicd pipeline, and SQL questions.
  • Q2. OOPs concepts and difference between abstraction vs encapsulation
  • Ans. 

    Abstraction focuses on what an object does, while encapsulation focuses on how it does it.

    • Abstraction is the process of hiding complex implementation details and showing only the necessary information to the user.

    • Encapsulation is the process of wrapping data and methods into a single unit, preventing direct access to the data from outside the unit.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsul...

  • Answered by AI
  • Q3. SOLID priciple with example
  • Ans. 

    SOLID principle is a set of five design principles to make software more maintainable, flexible and scalable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.

    • I - Interface Segregation Principle: Clie...

  • Answered by AI
  • Q4. Indexes in sql, temp table, query to get first and last employee records
Round 2 - One-on-one 

(8 Questions)

  • Q1. The interviewer asked to explain your previous projects and will try to add questions on it.
  • Q2. Explain your current project
  • Ans. 

    I am currently working on developing a mobile application for tracking personal fitness goals.

    • Developing a mobile application

    • Tracking personal fitness goals

    • Implementing features like goal setting, progress tracking, and workout logging

    • Using technologies like React Native, Firebase, and Redux

  • Answered by AI
  • Q3. What you do to find out issue in code
  • Ans. 

    I use a combination of debugging tools and techniques to identify and resolve issues in code.

    • I start by reproducing the issue and identifying the scope of the problem.

    • I use debugging tools like breakpoints, logging, and tracing to narrow down the issue.

    • I review the code and documentation to understand the expected behavior.

    • I collaborate with team members to get a fresh perspective and brainstorm solutions.

    • I test and va...

  • Answered by AI
  • Q4. Unit test related question
  • Q5. How to improve query performance
  • Ans. 

    Improving query performance involves optimizing database design, indexing, and query structure.

    • Optimize database design by normalizing tables and reducing redundant data

    • Create indexes on frequently queried columns

    • Use efficient query structure, such as avoiding subqueries and using joins

    • Consider using caching or denormalization for frequently accessed data

  • Answered by AI
  • Q6. Middleware and how it works
  • Ans. 

    Middleware is software that connects different applications or systems together.

    • Middleware acts as a bridge between different applications or systems

    • It provides a common platform for communication and data exchange

    • Examples of middleware include message queues, API gateways, and ESBs

  • Answered by AI
  • Q7. Dependency injection, and compare it with concrete class
  • Ans. 

    Dependency injection is a design pattern that allows objects to be passed as dependencies rather than being created within a class.

    • Dependency injection promotes loose coupling and makes code more testable.

    • Concrete classes are tightly coupled and can be difficult to test.

    • Dependency injection can be achieved through constructor injection, setter injection, or interface injection.

    • Example: A class that requires a database ...

  • Answered by AI
  • Q8. Transient vs scope difference
  • Ans. 

    Transient variables are not serialized, while scoped variables are.

    • Transient variables are not saved when an object is serialized and deserialized.

    • Scoped variables are saved when an object is serialized and deserialized.

    • Transient variables are used to indicate that a variable should not be serialized.

    • Scoped variables are used to indicate that a variable should be serialized.

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

(3 Questions)

  • Q1. Final round with the client where TL and manager interact with you, they explain their project. and try to ask question accordingly
  • Q2. A string reverse code to write and then ask to explain steps plus asked if i can improve its execution time.
  • Q3. Temp table vs cte in sql
  • Ans. 

    Temp tables are physical tables created in tempdb while CTEs are temporary result sets.

    • Temp tables are useful for storing intermediate results and can be indexed.

    • CTEs are useful for simplifying complex queries and can be recursive.

    • Temp tables require more resources and can cause contention in tempdb.

    • CTEs are limited to the scope of a single query.

    • Example: CREATE TABLE #temp (id INT); WITH cte AS (SELECT id FROM table) ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Connectwise India Software Engineer interview:
  • SOLID principle
  • SQL Server
  • Middleware
  • dependency injection
Interview preparation tips for other job seekers - Interviews question are common, but please understand project requirement and profile they are seeking from start when you interact with HR.

Skills evaluated in this interview

Top Connectwise India Software Engineer Interview Questions and Answers

Q1. OOPs concepts and difference between abstraction vs encapsulation
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (178)

Connectwise India interview questions for popular designations

 Software Engineer

 (4)

 Security Analyst 1

 (2)

 Senior Software Engineer

 (2)

 Senior Software Engineer 2

 (2)

 Software Developer Intern

 (2)

 Technical Support Engineer

 (2)

 Active Directory and System Engineer

 (1)

 Application Support Engineer

 (1)

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions of class 10 level.

Round 2 - Technical 

(2 Questions)

  • Q1. What are top 10 vulnerabilities
  • Ans. 

    Top 10 vulnerabilities include SQL injection, cross-site scripting, insecure deserialization, etc.

    • SQL injection

    • Cross-site scripting (XSS)

    • Insecure deserialization

    • Sensitive data exposure

    • Broken authentication

    • Security misconfigurations

    • XML external entities (XXE)

    • Broken access control

    • Security misconfigurations

    • Insufficient logging and monitoring

  • Answered by AI
  • Q2. What is XSS attack
  • Ans. 

    XSS attack is a type of cyber attack where attackers inject malicious scripts into web pages viewed by other users.

    • XSS stands for Cross-Site Scripting.

    • Attackers inject malicious scripts into web pages to steal sensitive information or manipulate content.

    • Types of XSS attacks include stored, reflected, and DOM-based.

    • Prevent XSS attacks by validating input, encoding output, and using Content Security Policy.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your basics cleared

Security Analyst Interview Questions asked at other Companies

Q1. How do you test a web application? What is CSRF and SSRF? What is LDAP injection? How does namp work while port scanning? (Result - open/filtered/closed) How does ssl work? Suppose a proxy server(Burpsuite) is in b/w server and client so wh... read more
View answer (2)

Get interview-ready with Top Connectwise India Interview Questions

I applied via Naukri.com and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

There were grammatical and technical quetions.

Round 3 - Technical 

(1 Question)

  • Q1. Some basics of networking and security concepts. Some scenerio based question were there.
Round 4 - Technical 

(1 Question)

  • Q1. Basics of cyber security frameworks. Personal discussion
Round 5 - HR 

(1 Question)

  • Q1. Standard HR questions and salary discussions were there

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep studying basics and scenerio based questions. Have good communication skills and be confident.

Security Analyst 1 Interview Questions asked at other Companies

Q1. What is SIEM, how parsing will be done
View answer (1)

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Java programs, agile, karate, performance testing
  • Q2. Cloud technology, frameworks
Round 3 - Technical 

(1 Question)

  • Q1. AWS, frameworks and coding questions

Principal Quality Analyst Interview Questions asked at other Companies

Q1. What are different identification options in object identification?
View answer (1)

L3 technical support Interview Questions & Answers

user image Anonymous

posted on 27 Nov 2022

I applied via Approached by Company and was interviewed in May 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions port no concept familiarity
Round 3 - Technical 

(1 Question)

  • Q1. Detailed deep level understanding of dhcp dns ad
Round 4 - Behavioral 

(1 Question)

  • Q1. If youbare ready to qork in 24*7 scenario, team management and interpersonal skill
Round 5 - HR 

(1 Question)

  • Q1. Package discussion and conpany policies

Interview Preparation Tips

Interview preparation tips for other job seekers - learn core concepts and ready for secnario based questions and prepare using google

I applied via Company Website and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. New technology is updated i am interested And looking for a job IT works in contactwise i am is wher technical support helf i am is wher joined,?
  • Q2. Cloud computing artificial intelligence mashine learning and hardware networking related?
  • Q3. This are software development project And new sarvice platform Created i am looking works And study wher I come where and looking?
Round 3 - HR 

(1 Question)

  • Q1. I am looking and study wher

Interview Preparation Tips

Interview preparation tips for other job seekers - I interested in IT works I completed diploma in information technology and other qualification network and CCNA routing and switching And New trend othar i am looking and following i am see that is what I am interested to this company are good company.

Hardware & Networking Technician Interview Questions asked at other Companies

Q1. Computer hardware and networking network LAN how Many where?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Be to the point
Round 2 - Technical 

(1 Question)

  • Q1. Was lengthy but asked many questions on process which was easy
Round 3 - One-on-one 

(1 Question)

  • Q1. Director round easy on previous experiences

Team Lead Operations Interview Questions asked at other Companies

Q1. What was thr volume of shipment handled per day in previous designation ?
View answer (19)

Connectwise India Interview FAQs

How many rounds are there in Connectwise India interview?
Connectwise India interview process usually has 2-3 rounds. The most common rounds in the Connectwise India interview process are Technical, HR and Resume Shortlist.
How to prepare for Connectwise India 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 Connectwise India . The most common topics and skills that interviewers at Connectwise India expect are Technical Support, Troubleshooting, Python, Java and AWS.
What are the top questions asked in Connectwise India interview?

Some of the top questions asked at the Connectwise India interview -

  1. What is ADFS &how does it work? What is Autodiscover in O366, DHCP, DNS server...read more
  2. OOPs concepts and difference between abstraction vs encapsulat...read more
  3. what you do to find out issue in c...read more
How long is the Connectwise India interview process?

The duration of Connectwise India interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Connectwise India Interview Process

based on 32 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
Zoho Interview Questions
4.3
 • 514 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
View all

Connectwise India Reviews and Ratings

based on 300 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.4

Salary

3.5

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 300 Reviews and Ratings
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
100 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Software Support Specialist
66 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