Upload Button Icon Add office photos

Filter interviews by

Connectwise India Software Developer Intern Interview Questions and Answers

Updated 10 Jun 2024

Connectwise India Software Developer Intern Interview Experiences

2 interviews found

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

I applied via campus placement at Pimpri Chinchwad College of Engineering, Pimpri and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

3 DSA Questions on Normal Fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Computer Subject related Medium level Questions
  • Q2. Array for stack
  • 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.

  • Answered by AI

Skills evaluated in this 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 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 ta ... read more
asked in CommVault
Q2. Sliding Maximum You are given an array 'ARR' of integers of lengt ... read more
asked in Amazon
Q3. Fish EaterThere is a river which flows in one direction. One day, ... read more
Q4. Program to check the validity of a PasswordNinjas are trying to h ... read more
Q5. Find K Closest ElementsYou are given a sorted array 'A' of length ... read more

Interview questions from similar companies

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 Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Technical MCQ questions on core computer science subjects were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to find whether the given linked list has loop in it?
  • Q2. Explain osi model with example of browser.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Chitkara Institute of Engineering & Technology, Rajpura and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 coding questions, very basic

Round 2 - One-on-one 

(1 Question)

  • Q1. Again DSA and DBMS questions, easy to medium easy

Interview Preparation Tips

Interview preparation tips for other job seekers - Just practice on oops, DSA and DBMS.

I applied via Campus Placement and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

There was apti round with good apti questions and also code debugging

Round 2 - Technical 

(3 Questions)

  • Q1. About polymorphism ,code polymorphism and inheritance
  • Ans. Coded it in cpp in notepad
  • Answered Anonymously
  • Q2. 3 apti question and also discussion on resume
  • Q3. Angle between hands of clock on 10:25? Trains traveling towards eachother give speed where will they collide?
  • Ans. 

    Angle between hands of clock at 10:25 is 147.5 degrees. Trains will collide at midpoint of their initial positions.

    • To calculate angle between hands of clock, use formula: |(30*H)-(11/2)*M|

    • For 10:25, H=10 and M=25, so angle = |(30*10)-(11/2)*25| = 147.5 degrees

    • When two trains are traveling towards each other, their relative speed is added to get the collision speed.

    • The collision point is the midpoint of their initial po...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. General resume based
  • Q2. Strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident it depends on interviewer what he would ask
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Google updates and was interviewed before Oct 2022. 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 - Technical 

(1 Question)

  • Q1. There are three technical rounds one round will be tough
Round 3 - HR 

(2 Questions)

  • Q1. They didn't ask me anything
  • Q2. Will give U false promises and showoff about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for DSA , but with that knowledge try for any product based company not only one in limelight you can try any other but not Accolite, because though you clear all those 3 rounds and get hired , there is nothing in this company other than false promises and mere showoff. They are either terminating or extending the internship for of no reason amid doing projects, and also you will not get the work you are trained and desired for , they will use U for QA testing rather being hired as developer

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 mintues
Round difficulty - Easy

The round contain 20 MCQ and 2 coding questions.

  • Q1. Jar of Candies

    There is a jar full of candies for sale at a mall counter. Jar has the capacity ‘N’. That is, jar can contain maximum ‘N’ candies when a jar is full. At any point in time jar can not have 0 ...

  • Ans. Comparing Candies

    The main idea is to check if K is greater than N or not.

    • If K is lesser than N, therefore, we can give the customer K candies and return the remaining candies in the jar by subtracting K from N.
    • If K is greater than N therefore, we can't give customer K candies, Hence return -1.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Since we are not using any extra space to keep track of the elements.

    Time Complexi...
  • Answered by CodingNinjas
  • Q2. Fitness Test In Indian Navy

    Selection in the Indian Navy includes a fitness test which is conducted in the seawater. In this test, there will be a group of 3 trainees appearing for the swimming test in the...

  • Ans. Brute Force

    The idea behind this approach is to calculate the average of all the rounds and store them in an array/list and then calculate the maximum of all the average remaining oxygen levels. If more than one have the same value then print the trainee number and if average is less than 70 then simply print “Unfit”.

     

    Here is the complete algorithm:

    • Make an array/list ‘answer’ of type string to store the final answe...
  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 45 mintues
Round difficulty - Easy

Easy question where asked basic type like what is difference between inteprator and compiler. Method to prevent deadlock and best way to implement Fibonacci series.

  • Q1. Nth Element Of Modified Fibonacci Series

    You have been given two integers ‘X’ and ‘Y’ which are the first two integers of a series and an integer ‘N’. You have to find the Nth number of the series using th...

  • Ans. Dynamic Programming

    Let’s define a dp array of size N, where dp[i] represents the i-th Fibonacci number. For each block, let’s compute the answer in a top-down fashion, starting with the leftmost blocks (dp[0] and dp[1]). We will iterate through the array for i = 2 to N and then we can fill the array in a top-down manner like:

     

                   ...

  • Answered by CodingNinjas
  • Q2. Reverse Alternate Nodes of a Singly Linked List

    For a given Singly Linked List of integers, you are required to reverse alternate nodes and append them to the end of the list.

    For Example:

    The given lin...
  • Ans. 

    Take 2 variable fast and slow , fast=temp->next and slow = temp and then transverse slow will be at the middle of the linked list.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteriamore than 6 CGPATata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Recursion,array,BST,Binary Tree,DP , Backtracking and pointer.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice as many question you can 
Tip 2 : Focus on key concept
Tip 3 : Practice previous year question

Application resume tips for other job seekers

Tip 1 : Specify at least one good project
Tip 2 : Write only those things which you know in detail

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Oct 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

  • Q1. Search In A Row Wise And Column Wise Sorted Matrix

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. You are given a target integer 'X'. Find t...

  • Ans. Brute Force
    • Run a loop from i = 0 to N - 1, to check each row.
      • Run a loop from j = 0 to N - 1, to check each element of the row.
        • If there is a match, return {i, j}.
    • If the element is not found in the entire matrix, return {-1, -1}
    Space Complexity: O(1)Explanation:

    O(1).

     

    Since only constant extra space is required.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2), where ‘N’ is the number of rows or columns in the matrix.

    &nb...

  • Answered by CodingNinjas
  • Q2. String Palindrome

    Given a string, determine if it is a palindrome, considering only alphanumeric characters.

    Palindrome
    A palindrome is a word, number, phrase, or other sequences of characters which read...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered by CodingNinjas
  • Q3. Covid Vaccination

    We are suffering from the Second wave of Covid-19. The Government is trying to increase its vaccination drives. Ninja wants to help the Government to plan an effective method to help incr...

  • Ans. Brute force

    The idea is to choose a peak value at the ‘dayNumber’ th index. Then we can create the array like a mountain with the peak of the mountain being at the  ‘dayNumber’ th index. The sum of the elements of this array must be less than or equal to maxVaccines.If we find that the sum is greater, then we have chosen a high peak value, and if it is less, then it means we have chosen a smaller peak value. So we ...

  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    Tell us about yourself ?
    Your dream company?
    Why should we hire you?

Interview Preparation Tips

Eligibility criteriaNANewgen Software Technology interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There were 3 dsa questions

Round 2 - Technical 

(1 Question)

  • Q1. Normal cse questions from topics like os,oops, dbms and dsa
Round 3 - Technical 

(1 Question)

  • Q1. Similar just into some deep dsa and oops,os, sql questions to write on notepad

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

Timing of test start from 11 AM and everything goes well here .

  • Q1. OS Question

    What is segmentation

  • Q2. DBMS Question

    How many level of Normalization are there ?

Round 2 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

It happen nicely and no problem occur.

  • Q1. Trapping Rain Water

    You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Pri...

  • Ans. Brute Force Approach

    The idea here is to travel over every elevation on the map and calculate the units of water the elevation can store.

     

    Here is the algorithm :

     

    1. Iterate over every elevation or element and find the maximum elevation on to the left and right of it. Say, the maximum elevation on to the left of the current elevation or element that we are looking at is ‘maxLeftHeight’ and the maximum elevation on...
  • Answered by CodingNinjas
  • Q2. Sort 0 1 2

    You have been given an integer array/list(ARR) of size 'N'. It only contains 0s, 1s and 2s. Write a solution to sort this array/list.

    Note :
    Try to solve the problem in 'Single Sca...
  • Ans. Sorting

    Use any good sorting algorithm like Merge Sort, Quick Sort or inbuilt sorting function of different languages.

    • Sort the Array and just return.
    Space Complexity: O(1)Explanation:

    O(1), As we are using constant space.

    Time Complexity: O(nlogn)Explanation:

    O(N*log(N)), where ‘N’ is the size of the array.

    We are using inbuilt sort algorithm which has Overall Time Complexity O(N*log(N))

  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 90 mintues
Round difficulty - Hard

Environment is very bad the intervier video call is lagging.

  • Q1. Compiler Design Question

    . List The Sub Parts Or Phases Of Analysis Part

  • Q2. Left Rotations of An Array

    You are given an array consisting of 'N' elements and you need to perform 'Q' queries on the given array. Each query consists of an integer which tells the number...

  • Ans. Rotate One Element At A Time

    The idea is to create a function which would rotate the array one element at a time. This can be done by shifting the array towards left by one element and copying the first element to the end of the array. For every query repeatedly call the above function, until the desired rotation is obtained.

     

    If the number of rotations required, say ‘K’, is greater than the number of elements, ‘N’,...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteria6 CGPAAccolite interview preparation:Topics to prepare for the interview - Recursion,Tress of different types, DP, Graphs,array and pointer.Time required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare Data structure and algorithm
Tip 2 : Focus on operating system 
Tip 3 : RDBMS and CAO are also important

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Always write things which you can explain there.

Final outcome of the interviewSelected

Skills evaluated in this interview

Connectwise India Interview FAQs

How many rounds are there in Connectwise India Software Developer Intern interview?
Connectwise India interview process usually has 2 rounds. The most common rounds in the Connectwise India interview process are Coding Test, Technical and Aptitude Test.
What are the top questions asked in Connectwise India Software Developer Intern interview?

Some of the top questions asked at the Connectwise India Software Developer Intern interview -

  1. Array for st...read more
  2. Computer Subject related Medium level Questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Connectwise India interviews
Campus Placement
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Technical Support Engineer
173 salaries
unlock blur

₹2.6 L/yr - ₹9 L/yr

Senior Software Engineer
115 salaries
unlock blur

₹9 L/yr - ₹32.2 L/yr

Security Analyst
98 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview