Upload Button Icon Add office photos

Connectwise India

Compare button icon Compare button icon Compare

Filter interviews by

Connectwise India Interview Questions and Answers

Updated 1 Jul 2025
Popular Designations

31 Interview questions

A Software Developer was asked 2w ago
Q. Write a function to calculate the factorial of a given number.
Ans. 

Factorial is the product of all positive integers up to a given number, denoted as n!.

  • Factorial of 0 is 1 (0! = 1).

  • Factorial of 1 is also 1 (1! = 1).

  • For n > 1, n! = n × (n-1) × (n-2) × ... × 1.

  • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

  • Factorials grow very quickly; 10! = 3,628,800.

View all Software Developer interview questions
A Product Manager was asked 2mo ago
Q. Why do you want to join ConnectWise?
Ans. 

I want to join ConnectWise to leverage my skills in product management and contribute to innovative solutions in the tech industry.

  • ConnectWise's commitment to innovation aligns with my passion for developing cutting-edge technology solutions.

  • The company's focus on empowering IT service providers resonates with my desire to make a meaningful impact in the tech community.

  • I admire ConnectWise's collaborative culture,...

View all Product Manager interview questions
A SDE Intern was asked 3mo ago
Q. What are the key concepts in React, such as Props, State, and Hooks?
Ans. 

React key concepts include Props, State, and Hooks, essential for building dynamic user interfaces.

  • Props: Short for properties, used to pass data from parent to child components. Example: <ChildComponent name='John' />.

  • State: A component's internal data storage that can change over time. Example: const [count, setCount] = useState(0);.

  • Hooks: Functions that let you use state and other React features in functi...

View all SDE Intern interview questions
A Senior Software Engineer 1 was asked 7mo ago
Q. Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is disti...
Ans. 

Find and remove duplicates in an array of strings

  • Iterate through the array and use a Set to keep track of unique elements

  • Check if each element is already in the Set, if so, remove it from the array

View all Senior Software Engineer 1 interview questions
A Senior Frontend Web Developer was asked 8mo ago
Q. How many Promise methods do you know?
Ans. 

There are several promise methods in JavaScript, including .then(), .catch(), .finally(), and more.

  • Common promise methods include .then(), .catch(), and .finally()

  • Other promise methods include .all(), .race(), and .resolve()

  • Examples: promise.then(), promise.catch(), promise.finally()

View all Senior Frontend Web Developer interview questions
A Senior Frontend Web Developer was asked 8mo ago
Q. What are closures?
Ans. 

Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

  • Closures allow functions to access variables from their parent function's scope

  • They maintain references to their outer scope even after the outer function has finished executing

  • Closures are commonly used in event handlers and callbacks

View all Senior Frontend Web Developer interview questions
A Security Analyst was asked 10mo ago
Q. What is an 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.

View all Security Analyst interview questions
Are these interview questions helpful?
A Security Analyst was asked 10mo ago
Q. What are the 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

View all Security Analyst interview questions
An Intern was asked 11mo ago
Q. Explain your weaknesses.
Ans. 

I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

  • I often spend too much time on a task trying to make it perfect

  • I have difficulty delegating tasks to others because I want to ensure they are done correctly

  • I can be self-critical and have high expectations for myself

View all Intern interview questions
A Software Developer Intern was asked
Q. Implement a stack using an array.
Ans. 

An array of strings can be used to implement a stack data structure.

  • Use an array to store the elements of the stack.

  • Keep track of the top of the stack using an index variable.

  • Push elements onto the stack by adding them to the end of the array.

  • Pop elements from the stack by removing the element at the top of the array.

View all Software Developer Intern interview questions

Connectwise India Interview Experiences

58 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How many promise method you know?
  • Ans. 

    There are several promise methods in JavaScript, including .then(), .catch(), .finally(), and more.

    • Common promise methods include .then(), .catch(), and .finally()

    • Other promise methods include .all(), .race(), and .resolve()

    • Examples: promise.then(), promise.catch(), promise.finally()

  • Answered by AI
  • Q2. What are closures?
  • Ans. 

    Closures are functions that have access to variables from their outer scope even after the outer function has finished executing.

    • Closures allow functions to access variables from their parent function's scope

    • They maintain references to their outer scope even after the outer function has finished executing

    • Closures are commonly used in event handlers and callbacks

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Data Backup, alerts assignment, Remote Access, SAAS, CRM experience
  • Q2. Windows, Patch management, Security Software, Basic understanding of Networking
Round 2 - HR 

(2 Questions)

  • Q1. Tell me abut yourself
  • Q2. General question, Salary Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Open mouth for salary as much as you can. Cos yearly growth and increment is negligible.
Hybrid mode, no home drop, no cafeteria, No gym. Some manager and director are toxic in nature they feels like employee is bots. No work life balances again for some department.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. What are delegates
  • Ans. 

    Delegates are type-safe function pointers in C# that allow methods to be passed as parameters.

    • Delegates are similar to function pointers in C/C++.

    • They are used to create callback functions and event handling in C#.

    • Delegates can reference methods with matching signatures.

    • Example: delegate void MyDelegate(string message);

  • Answered by AI
  • Q2. Polymorphism and encapsulation
Round 2 - Technical 

(2 Questions)

  • Q1. Authentication and authorisation workflow
  • Q2. Unit test case scenario’s
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. SOLID, Web API, dependency injection, JWT, SQL query, code
Round 2 - One-on-one 

(1 Question)

  • Q1. SOLID, design patterns, code
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What values have you contributed to your previous organization?
  • Ans. 

    I contributed to process improvements, enhanced team collaboration, and ensured high-quality deliverables in my previous organization.

    • Implemented a new quality assurance process that reduced defects by 30%, leading to improved customer satisfaction.

    • Conducted regular training sessions for team members on best practices in quality analysis, fostering a culture of continuous improvement.

    • Collaborated with cross-functional ...

  • Answered by AI
  • Q2. Qc tools knowledge, Data reading, Report insight
  • Q3. Why do you want to downgrade the position from Senior to Normal?
  • Ans. 

    I seek to downgrade to focus on quality work and team collaboration rather than managerial responsibilities.

    • Desire to focus on hands-on quality analysis rather than administrative tasks.

    • Want to enhance my technical skills and contribute directly to projects.

    • Enjoy collaborating with team members and mentoring junior analysts.

    • Believe that a normal position allows for deeper engagement with quality processes.

  • Answered by AI
  • Q4. What suggestions did you contribute to your previous organization?
  • Ans. 

    I contributed several process improvements and quality initiatives that enhanced efficiency and reduced errors in my previous organization.

    • Implemented a new automated testing tool that reduced testing time by 30%.

    • Proposed a standardized documentation process that improved knowledge sharing among teams.

    • Conducted regular training sessions on quality standards, leading to a 15% decrease in defects.

    • Suggested a feedback loo...

  • Answered by AI
  • Q5. If given the opportunity to become an Operations Team Leader in the future, would you choose to remain in a Quality Assurance role?
  • Ans. 

    I value both roles for their unique contributions to operational success and quality improvement.

    • Quality Assurance provides a strong foundation in process improvement, which is essential for effective leadership.

    • As a Quality Analyst, I develop a keen eye for detail, which is crucial in ensuring operational excellence.

    • Transitioning to an Operations Team Leader role would allow me to implement quality initiatives on a la...

  • Answered by AI

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 30 Mar 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What are the key concepts in React, such as Props, State, and Hooks?
  • Ans. 

    React key concepts include Props, State, and Hooks, essential for building dynamic user interfaces.

    • Props: Short for properties, used to pass data from parent to child components. Example: <ChildComponent name='John' />.

    • State: A component's internal data storage that can change over time. Example: const [count, setCount] = useState(0);.

    • Hooks: Functions that let you use state and other React features in functional ...

  • Answered by AI
  • Q2. Was I asked about JavaScript and requested to write DOM manipulation code for a given scenario?

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 dsa questions online gfg platform

Round 2 - Technical 

(2 Questions)

  • Q1. Sql backend related
  • Q2. About my projects
Round 3 - Technical 

(2 Questions)

  • Q1. CV based questions asked
  • Q2. Projects worked upon in the past
  • Ans. 

    I have worked on various projects, including a mobile app for health tracking and a data analysis project for market research.

    • Developed a mobile app for tracking daily health metrics, which included features for logging food intake and exercise.

    • Conducted a data analysis project using Python and SQL to identify market trends for a local startup, resulting in actionable insights.

    • Collaborated on a team project to create a...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why this company
  • Ans. 

    I admire this company's commitment to innovation and its positive impact on the community, aligning with my career goals and values.

    • The company's focus on cutting-edge technology resonates with my passion for innovation, as seen in my project on AI-driven healthcare solutions.

    • I appreciate the company's dedication to sustainability, which aligns with my values demonstrated through my volunteer work in environmental init...

  • Answered by AI
  • Q2. Weakness explain
  • Ans. 

    I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

    • I often spend too much time on a task trying to make it perfect

    • I have difficulty delegating tasks to others because I want to ensure they are done correctly

    • I can be self-critical and have high expectations for myself

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Why do you want to join connectwise.
  • Ans. 

    I want to join ConnectWise to leverage my skills in product management and contribute to innovative solutions in the tech industry.

    • ConnectWise's commitment to innovation aligns with my passion for developing cutting-edge technology solutions.

    • The company's focus on empowering IT service providers resonates with my desire to make a meaningful impact in the tech community.

    • I admire ConnectWise's collaborative culture, whic...

  • Answered by AI
  • Q2. How many lions are there in pune '
  • Ans. 

    Pune does not have a native lion population; lions are primarily found in the Gir Forest of Gujarat, India.

    • Native Habitat: Lions are not native to Pune; they primarily reside in the Gir Forest National Park in Gujarat.

    • Conservation Efforts: The Asiatic lion population is protected and monitored in their natural habitat, with efforts to increase their numbers.

    • Zoos and Sanctuaries: While Pune may have lions in zoos, such ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Duplicates in an array
  • Ans. 

    Find and remove duplicates in an array of strings

    • Iterate through the array and use a Set to keep track of unique elements

    • Check if each element is already in the Set, if so, remove it from the array

  • Answered by AI
  • Q2. Golang general questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is your roles and responsibilities?
  • Ans. 

    As a Senior Software Engineer 2, I lead projects, mentor teams, and ensure high-quality software delivery.

    • Lead the design and architecture of software solutions, ensuring scalability and performance. For example, I designed a microservices architecture for a large-scale application.

    • Mentor junior engineers, providing guidance on best practices and code reviews to enhance their skills and productivity.

    • Collaborate with cr...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. All the basic questions and they ask to write basic c# program based on array or any logical program
  • Q2. Design patterns
  • Q3. How Authentication ams Authorisation is done
  • Ans. 

    Authentication is the process of verifying the identity of a user, while authorization is the process of determining what resources a user can access.

    • Authentication can be done using various methods such as username/password, tokens, or biometrics.

    • Authorization involves assigning roles or permissions to users based on their identity.

    • Authentication and authorization are often implemented using frameworks like OAuth or J...

  • Answered by AI
  • Q4. Program writing
  • Q5. Sql queries to find 3rd highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find 3rd highest salary

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 2,1 to skip first two highest salaries and get the third highest salary

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Connectwise India ?
Ask anonymously on communities.

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, AWS and Java.
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
What are the most common questions asked in Connectwise India HR round?

The most common HR questions asked in Connectwise India interview are -

  1. What are your strengths and weakness...read more
  2. What are your salary expectatio...read more
  3. Why are you looking for a chan...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.

Overall Interview Experience Rating

3.8/5

based on 38 interview experiences

Difficulty level

Easy 16%
Moderate 84%

Duration

Less than 2 weeks 76%
2-4 weeks 20%
4-6 weeks 4%
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 385 Interviews
ITC Infotech Interview Questions
3.7
 • 376 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 241 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
View all

Connectwise India Reviews and Ratings

based on 354 reviews

3.6/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.4

Salary

3.5

Job security

3.5

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 354 Reviews and Ratings
Technical Support Engineer
182 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Senior Software Engineer
138 salaries
unlock blur

₹16.5 L/yr - ₹29.6 L/yr

Security Analyst
122 salaries
unlock blur

₹3.5 L/yr - ₹6.1 L/yr

Software Support Specialist
79 salaries
unlock blur

₹3.5 L/yr - ₹6.2 L/yr

Software Engineer
67 salaries
unlock blur

₹4.5 L/yr - ₹14.8 L/yr

Explore more salaries
Compare Connectwise India with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview