Upload Button Icon Add office photos

Filter interviews by

Connectwise India Senior Software Net Engineer Interview Questions, Process, and Tips

Updated 17 Oct 2023

Connectwise India Senior Software Net Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Apr 2023.

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 

(2 Questions)

  • Q1. Can we create string 2 from string 1.
  • Ans. 

    Yes, string 2 can be created from string 1 by rearranging the characters.

    • String 2 can be created by rearranging the characters of string 1.

    • Use sorting or permutation algorithms to rearrange the characters.

    • Example: String 1 = 'hello', String 2 = 'olleh'

  • Answered by AI
  • Q2. Return all the pairs from array who's sum is equal to given value
  • Ans. 

    Use a hash set to store elements as you iterate through the array, check if the difference between the target value and current element exists in the hash set.

    • Iterate through the array and store elements in a hash set

    • For each element, check if the difference between the target value and current element exists in the hash set

    • If it does, add the pair to the result array

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. Compress the string aaabbbbaaa to 3a4b3a
  • Ans. 

    Use a loop to iterate through the string and count consecutive characters.

    • Iterate through the string and keep track of the current character and its count.

    • Append the character and its count to a new string.

    • Return the compressed string.

  • Answered by AI
  • Q2. Return orginal string from compressed string
  • Ans. 

    Decompress a compressed string to return the original string

    • Iterate through the compressed string and rebuild the original string based on the characters and their frequencies

    • Use a stack to keep track of characters and their frequencies while decompressing the string

  • Answered by AI
  • Q3. Few managerial usual questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't hold up for them. My interview was perfect, solved all the problems and answered all the questions. They will send an standard template reply of online test score doesn't match the requirement even when. There was no online test round.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. DS Questions 1. kth largest element. 2. Implement merge sort
  • Q2. Springboot basics, oops, collection api

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepeare DS well

Interview Questionnaire 

2 Questions

  • Q1. 1.Implement merge sort. 2. Kth largest element.
  • Ans. 

    Implement merge sort and find kth largest element in an array.

    • Merge sort is a divide and conquer algorithm that recursively divides the array into two halves, sorts them and then merges them.

    • Kth largest element can be found using quick select algorithm or by sorting the array and returning the kth element from the end.

    • Merge sort has a time complexity of O(nlogn) and space complexity of O(n).

    • Quick select has a time comp...

  • Answered by AI
  • Q2. Springboot RestTemplate, singleton, oops

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself.

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Android, Java, Kotlin.
  • Q2. Mvvm architecture, RxJava, jetpack components

Interview Preparation Tips

Interview preparation tips for other job seekers - Had 3 technical round and one HR Round.

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

Interview Questionnaire 

2 Questions

  • Q1. OOPS, collection, database
  • Q2. Method overload and overrding, interface, abstract class, one small program on string manipulation,database queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Have your core java basics revised and keep sound knowledge of your project

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java collections, program to remove duplicate from array, cursor, indexes in database,stream api's , some questions of hibernate and spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Atleast prepare core java fully along with some basic db concepts and all keys and prepare spring boot

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Online test of 90 minutes at 5:30 pm

  • Q1. What are the basic concepts of Object-Oriented Programming, and how do they relate to data structures and algorithms?
  • Ans. 

    Object-Oriented Programming concepts include encapsulation, inheritance, and polymorphism, which are used to organize and manipulate data in data structures and algorithms.

    • Encapsulation: Bundling data and methods that operate on the data together in a single unit (object). Example: a class representing a car with properties like color and methods like drive().

    • Inheritance: Allowing a class to inherit properties and meth...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Online coding interview of 45 minutes at 6:10PM.

  • Q1. 

    String Compression Problem Statement

    Implement a program that performs basic string compression. When a character is consecutively repeated more than once, replace the consecutive duplicates with the coun...

  • Ans. 

    Implement a program to compress a string by replacing consecutive duplicates with the count of repetitions.

    • Iterate through the string and keep track of consecutive characters and their counts.

    • Replace consecutive duplicates with the count of repetitions.

    • Handle the case where the count of repetitions is greater than 1 and less than or equal to 9.

  • Answered by AI
  • Q2. Can you explain queries related to insert, selection, and joins in a database management system?
  • Ans. 

    Explanation of insert, select, and join queries in a database management system.

    • Insert query is used to add new records to a table.

    • Select query is used to retrieve data from a table based on specified criteria.

    • Join query is used to combine rows from two or more tables based on a related column between them.

    • Examples: INSERT INTO table_name (column1, column2) VALUES (value1, value2); SELECT * FROM table_name WHERE condit...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round of 30 minutes at 6pm

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in NoidaEligibility criteriaAbove 7 cgpaNewgen Software interview preparation:Topics to prepare for the interview - Data Structures and algorithms(arrays,strings,linked list,graphs,trees,recursion,backtrack),OOPS,Relational Database Management System, Operating SystemTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be accurate in one language rather than doing more languages but not perfect in anyone
Tip 2 : Revise your concepts regularly and try to attempt 3-4 times a question which you cannot do in first time so that after that if u see question of that type u know how to approach 
Tip 3 : Do practice of quality questions not only quantity.

Application resume tips for other job seekers

Tip 1 : One page resume 
Tip 2 : Only mentioned that projects and skills in which you are really good don't write anything just to fulfill the space

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of DS and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - be thorough in data structures and algorithms

I applied via Campus Placement and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Dsa java oops dbms networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience.
You have to be very strong in DSA.

Connectwise India Interview FAQs

How many rounds are there in Connectwise India Senior Software Net Engineer interview?
Connectwise India interview process usually has 3 rounds. The most common rounds in the Connectwise India interview process are Behavioral, Resume Shortlist and Technical.
What are the top questions asked in Connectwise India Senior Software Net Engineer interview?

Some of the top questions asked at the Connectwise India Senior Software Net Engineer interview -

  1. Return all the pairs from array who's sum is equal to given va...read more
  2. Can we create string 2 from string...read more
  3. Return orginal string from compressed str...read more

Tell us how to improve this page.

Connectwise India Senior Software Net Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 373 Interviews
ITC Infotech Interview Questions
3.6
 • 350 Interviews
CitiusTech Interview Questions
3.3
 • 278 Interviews
NeoSOFT Interview Questions
3.6
 • 270 Interviews
Tiger Analytics Interview Questions
3.7
 • 228 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
INDIUM Interview Questions
4.1
 • 192 Interviews
Xoriant Interview Questions
4.1
 • 189 Interviews
View all
Technical Support Engineer
177 salaries
unlock blur

₹2.6 L/yr - ₹9 L/yr

Security Analyst
121 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Senior Software Engineer
113 salaries
unlock blur

₹9 L/yr - ₹34 L/yr

Software Support Specialist
69 salaries
unlock blur

₹3.5 L/yr - ₹6.2 L/yr

Software Engineer
59 salaries
unlock blur

₹4.5 L/yr - ₹15 L/yr

Explore more salaries
Compare Connectwise India with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

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