Upload Button Icon Add office photos

Filter interviews by

Connectwise India Dot Net Fullstack Developer Interview Questions and Answers

Updated 20 Mar 2024

Connectwise India Dot Net Fullstack Developer Interview Experiences

1 interview found

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

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral

Round 1 - Technical 

(5 Questions)

  • Q1. What is .Net Core ?
  • Ans. 

    .Net Core is a free, open-source, cross-platform framework for building modern, cloud-based, internet-connected applications.

    • Developed by Microsoft as the successor to the .NET Framework

    • Supports multiple operating systems like Windows, macOS, and Linux

    • Provides high performance and scalability for web applications

    • Includes a modular and lightweight runtime called CoreCLR

    • Allows developers to use C#, F#, and Visual Basic

  • Answered by AI
  • Q2. What is benefit of Microservices ?
  • Ans. 

    Microservices offer benefits such as scalability, flexibility, and easier maintenance.

    • Scalability: Microservices allow for individual components to be scaled independently, leading to better resource utilization.

    • Flexibility: Each microservice can be developed, deployed, and updated independently, allowing for more flexibility in the development process.

    • Easier maintenance: With microservices, it is easier to identify an...

  • Answered by AI
  • Q3. What is ViewBag and ViewData ?
  • Ans. 

    ViewBag and ViewData are used in ASP.NET MVC to pass data from controller to view.

    • ViewBag is a dynamic property that allows you to pass data from controller to view.

    • ViewData is a dictionary object that allows you to pass data from controller to view.

    • ViewBag is a dynamic object while ViewData is a dictionary object.

    • Example: ViewBag.Title = 'Home Page'; ViewData['Message'] = 'Welcome to my website';

  • Answered by AI
  • Q4. What is CORS ?
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing, a security feature that allows servers to specify who can access their resources.

    • CORS is a security feature implemented by browsers to prevent unauthorized access to resources on a different origin.

    • It allows servers to specify which origins are allowed to access their resources through HTTP headers.

    • CORS is commonly used to enable cross-origin requests in web applications, ...

  • Answered by AI
  • Q5. Explain JWT in Brief.
  • Ans. 

    JWT is a compact, self-contained way to securely transmit information between parties as a JSON object.

    • JWT stands for JSON Web Token.

    • It consists of three parts: header, payload, and signature.

    • It is commonly used for authentication and information exchange in web development.

    • Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf3

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

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

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to find the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap allows one null key and multiple null values.

    • Th...

  • Answered by AI
  • Q2. What is singleton class and its implementation
  • Ans. 

    Singleton class is a class that can only have one instance and provides a global point of access to it.

    • Singleton class restricts the instantiation of a class to one object.

    • It provides a way to access its unique instance globally.

    • Commonly used in scenarios where only one instance of a class is needed, such as database connections or thread pools.

  • Answered by AI
  • Q3. Find all the pairs with given sum coding
  • Ans. 

    The task is to find all pairs in an array that add up to a given sum.

    • Iterate through the array and store each element in a hash set.

    • For each element, check if the difference between the sum and the element exists in the hash set.

    • If it does, add the pair to the result list.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

One question on Java on reversing only the numbers in an array
One question on React to build search component

Round 2 - Technical 

(1 Question)

  • Q1. Fundamentals in java, react and spring
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is Middleware?
  • Ans. 

    Middleware is software that acts as a bridge between an application's front end and back end, allowing them to communicate and interact.

    • Middleware can handle tasks such as authentication, logging, error handling, and routing.

    • It can be used to modify incoming requests or outgoing responses.

    • Examples of middleware include Express.js middleware in Node.js applications and ASP.NET middleware in .NET applications.

  • Answered by AI
  • Q2. What is Dependency Injection ?
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for better code reusability and testability

    • Reduces coupling between components

    • Promotes separation of concerns

    • Examples: Constructor Injection, Setter Injection, Interface Injection

  • Answered by AI
  • Q3. What is Solid Principles ?
  • Ans. 

    Solid Principles are a set of five design principles for writing clean, maintainable, and scalable code.

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

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Redis cache and distributed cache
  • Q2. CORS , Trigger, OOPS , Queries
Round 1 - Aptitude Test 

Basic level of maths and some coding related questions

Round 2 - Group Discussion 

On current affairs and daily routine

Round 3 - Coding Test 

Two basic questions related to pattern string array etc

Round 4 - HR 

(2 Questions)

  • Q1. This is final step and would be conducted in their office itself
  • Q2. It will include some oops questions bond discussion and questions on Resume

Interview Preparation Tips

Interview preparation tips for other job seekers - It was long journey and got lot to learn and boosted my confidence
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral

Round 1 - Technical 

(5 Questions)

  • Q1. What is .Net Core ?
  • Ans. 

    .Net Core is a free, open-source, cross-platform framework for building modern, cloud-based, internet-connected applications.

    • Developed by Microsoft as the successor to the .NET Framework

    • Supports multiple operating systems like Windows, macOS, and Linux

    • Provides high performance and scalability for web applications

    • Includes a modular and lightweight runtime called CoreCLR

    • Allows developers to use C#, F#, and Visual Basic

  • Answered by AI
  • Q2. What is benefit of Microservices ?
  • Ans. 

    Microservices offer benefits such as scalability, flexibility, and easier maintenance.

    • Scalability: Microservices allow for individual components to be scaled independently, leading to better resource utilization.

    • Flexibility: Each microservice can be developed, deployed, and updated independently, allowing for more flexibility in the development process.

    • Easier maintenance: With microservices, it is easier to identify an...

  • Answered by AI
  • Q3. What is ViewBag and ViewData ?
  • Ans. 

    ViewBag and ViewData are used in ASP.NET MVC to pass data from controller to view.

    • ViewBag is a dynamic property that allows you to pass data from controller to view.

    • ViewData is a dictionary object that allows you to pass data from controller to view.

    • ViewBag is a dynamic object while ViewData is a dictionary object.

    • Example: ViewBag.Title = 'Home Page'; ViewData['Message'] = 'Welcome to my website';

  • Answered by AI
  • Q4. What is CORS ?
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing, a security feature that allows servers to specify who can access their resources.

    • CORS is a security feature implemented by browsers to prevent unauthorized access to resources on a different origin.

    • It allows servers to specify which origins are allowed to access their resources through HTTP headers.

    • CORS is commonly used to enable cross-origin requests in web applications, ...

  • Answered by AI
  • Q5. Explain JWT in Brief.
  • Ans. 

    JWT is a compact, self-contained way to securely transmit information between parties as a JSON object.

    • JWT stands for JSON Web Token.

    • It consists of three parts: header, payload, and signature.

    • It is commonly used for authentication and information exchange in web development.

    • Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf3

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. What is Middleware?
  • Ans. 

    Middleware is software that acts as a bridge between an application's front end and back end, allowing them to communicate and interact.

    • Middleware can handle tasks such as authentication, logging, error handling, and routing.

    • It can be used to modify incoming requests or outgoing responses.

    • Examples of middleware include Express.js middleware in Node.js applications and ASP.NET middleware in .NET applications.

  • Answered by AI
  • Q2. What is Dependency Injection ?
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for better code reusability and testability

    • Reduces coupling between components

    • Promotes separation of concerns

    • Examples: Constructor Injection, Setter Injection, Interface Injection

  • Answered by AI
  • Q3. What is Solid Principles ?
  • Ans. 

    Solid Principles are a set of five design principles for writing clean, maintainable, and scalable code.

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

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics questions

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Redis cache and distributed cache
  • Q2. CORS , Trigger, OOPS , Queries

Connectwise India Interview FAQs

How many rounds are there in Connectwise India Dot Net Fullstack Developer interview?
Connectwise India interview process usually has 1 rounds. The most common rounds in the Connectwise India interview process are Technical.
What are the top questions asked in Connectwise India Dot Net Fullstack Developer interview?

Some of the top questions asked at the Connectwise India Dot Net Fullstack Developer interview -

  1. How Authentication ams Authorisation is d...read more
  2. Sql queries to find 3rd highest sal...read more
  3. All the basic questions and they ask to write basic c# program based on array o...read more

Tell us how to improve this page.

Connectwise India Dot Net Fullstack Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
TCS iON Interview Questions
3.9
 • 365 Interviews
View all
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