Upload Button Icon Add office photos

Indecomm Global Services

Compare button icon Compare button icon Compare

Filter interviews by

Indecomm Global Services DOT NET Developer Interview Questions and Answers

Updated 21 Aug 2024

Indecomm Global Services DOT NET Developer Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept all question with answer
  • Q2. Sql concept all question with answer
Round 2 - Coding Test 

Oops concept all type coding

Interview Preparation Tips

Topics to prepare for Indecomm Global Services DOT NET Developer interview:
  • OOPS
  • SQL
  • ASP.Net
  • MVC
Interview preparation tips for other job seekers - Esay tips
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Normal topics for gd

Round 2 - Technical 

(3 Questions)

  • Q1. Array coding questions
  • Q2. .net structure and other components
  • Q3. Oops concepts and .net concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for oops concepts,.net basics questions and c# problems

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS concepts, SOLID principles, design patterns Thread vs Task
  • Q2. C# coding questions and SQL questions
Round 2 - Technical 

(2 Questions)

  • Q1. Second round was technical + managerial round
  • Q2. Asked some scenario based questions in sql and .NET
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is JWT Authentication
  • Q2. Design Patterns
  • Q3. Different Types of Routing in MVC
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Oop questions they will ask
  • Q2. C# basic string var dymaic out ref
  • Q3. Sql , dot net
Round 2 - Managment Round 

(2 Questions)

  • Q1. This round they will ask strategic question
  • Q2. How you will handle the team , deadlines
  • Ans. 

    I will handle the team by setting clear expectations, delegating tasks effectively, monitoring progress, and providing support as needed.

    • Set clear goals and deadlines for the team to ensure everyone is on the same page

    • Delegate tasks based on team members' strengths and workload

    • Regularly check in with team members to monitor progress and offer assistance if needed

    • Adjust deadlines or redistribute tasks as necessary to me...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was rejected in the second round, check what domain the company is working.

Interview Questionnaire 

1 Question

  • Q1. Abstract claas

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops, encapsulation, interface, private constructors
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Depenency injejction
  • Q2. Routings
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(1 Question)

  • Q1. What is Entity Framework and how does it function?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2023. There were 2 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 

(12 Questions)

  • Q1. Abstract class vs interfaces. What would i choose and why.
  • Ans. 

    Abstract class is used when there is a need for default implementation, while interfaces are used for multiple inheritance.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can provide default implementations for methods, while interfaces cannot.

    • Interfaces allow a class to implement multiple interfaces, but can only inherit from one abstra...

  • Answered by AI
  • Q2. Difference between .NET core, .NET framework and .NET
  • Ans. 

    NET core is a cross-platform, open-source framework for building modern, cloud-based, internet-connected applications. NET framework is a Windows-only framework for building Windows desktop applications. NET is a general term encompassing both .NET core and .NET framework.

    • NET core is cross-platform and open-source, while .NET framework is Windows-only.

    • .NET core is modular and lightweight, allowing for faster performanc...

  • Answered by AI
  • Q3. Pipelines and Middlewares in .NET. How would i configure them.
  • Ans. 

    Pipelines and Middlewares in .NET are used for request processing and can be configured using middleware components.

    • Pipelines in .NET are used to define a series of middleware components that process an HTTP request.

    • Middlewares are components that can handle requests and responses in the pipeline.

    • To configure pipelines and middlewares in .NET, you can use the 'UseMiddleware' method in the 'Configure' method of the Star...

  • Answered by AI
  • Q4. Difference between App.Use() and App.Run()
  • Ans. 

    App.Use() is used for adding middleware to the request pipeline, while App.Run() is used for handling the request directly.

    • App.Use() is used to add middleware components to the request pipeline.

    • App.Run() is used to handle the request directly without passing it to the next middleware component.

    • App.Use() is typically used for setting up middleware like authentication, logging, etc.

    • App.Run() is used for handling the fina...

  • Answered by AI
  • Q5. SOLID principles (S and O was asked)
  • Q6. Dependency Inversion vs Inversion of Control. I had to write examples of constructor injection, method injection with the help of a DBContext file.
  • Q7. String vs String Builder. Comparision of their mutability, speed, memory allocated, usability. Was provided a use case and asked which one to use and how. String Interpolation. String Manipulation.
  • Ans. 

    String is immutable, while StringBuilder is mutable. StringBuilder is faster and more memory efficient for string manipulation.

    • String is immutable, meaning once created, it cannot be changed. StringBuilder is mutable, allowing for efficient string manipulation.

    • StringBuilder is faster than String for concatenating multiple strings, as it does not create a new string object each time.

    • String uses more memory as it creates...

  • Answered by AI
  • Q8. Database Normalization (2NF was asked). Was given an sample dataset, asked to normalize and eliminate partial dependency. Given 2 entities Students and Class, establish relationships between them and prepa...
  • Q9. Difference between Unique, Primary Key. Clustered and Non-Clustered Indices.
  • Ans. 

    Unique, Primary Key, Clustered, and Non-Clustered Indices are all used in database management to enforce data integrity and improve query performance.

    • Unique constraint ensures that all values in a column are unique, but allows NULL values.

    • Primary Key constraint ensures that all values in a column are unique and not NULL. Each table can have only one Primary Key.

    • Clustered Index physically reorders the way records in the...

  • Answered by AI
  • Q10. Prepare an example of JWT authentication and Oauth for an API.
  • Ans. 

    JWT authentication and OAuth example for API

    • Implement JWT authentication by generating a token upon user login and including it in the Authorization header of API requests

    • Use OAuth for user authorization by obtaining access tokens from a third-party provider like Google or Facebook

    • Ensure API endpoints validate JWT tokens and OAuth access tokens before allowing access to resources

  • Answered by AI
  • Q11. Difference between $.post and $.ajax.
  • Ans. 

    Both $.post and $.ajax are methods in jQuery used for making AJAX requests, but $.ajax is more versatile and customizable.

    • Both $.post and $.ajax are used for making AJAX requests in jQuery.

    • $.post is a shorthand method for $.ajax with predefined settings for POST requests.

    • $.ajax is more versatile and customizable, allowing for different types of requests and more options.

    • Example: $.post('example.php', {data: 'example'},...

  • Answered by AI
  • Q12. Write a Linq query to fetch data the fastest.(i used iQueryable) Write a Linq query to check if a record exists in the table.(i used ANY)

Interview Preparation Tips

Topics to prepare for NeoSOFT DOT NET Developer interview:
  • C#
  • webapi
  • SQL Server
Interview preparation tips for other job seekers - The interviewer was asking real life use case-driven questions. You can learn a bit about low level system design.
Focus more on C# and DOTNET 6.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Code for prime numbers

Interview Preparation Tips

Interview preparation tips for other job seekers - good interview done here

Indecomm Global Services Interview FAQs

How many rounds are there in Indecomm Global Services DOT NET Developer interview?
Indecomm Global Services interview process usually has 2 rounds. The most common rounds in the Indecomm Global Services interview process are Technical, Group Discussion and Coding Test.
How to prepare for Indecomm Global Services DOT NET Developer 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 Indecomm Global Services. The most common topics and skills that interviewers at Indecomm Global Services expect are C#, SQL, MVC, ASP.Net and Javascript.
What are the top questions asked in Indecomm Global Services DOT NET Developer interview?

Some of the top questions asked at the Indecomm Global Services DOT NET Developer interview -

  1. Oops concept all question with ans...read more
  2. Sql concept all question with ans...read more
  3. .net structure and other compone...read more

Tell us how to improve this page.

Indecomm Global Services DOT NET Developer Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more

Fast track your campus placements

View all

Indecomm Global Services DOT NET Developer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

2.0

Job security

4.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Associate Lead
347 salaries
unlock blur

₹1.5 L/yr - ₹9 L/yr

Associate
267 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Senior Software Engineer
196 salaries
unlock blur

₹5.6 L/yr - ₹25 L/yr

Software Engineer
97 salaries
unlock blur

₹2.7 L/yr - ₹12.6 L/yr

Process Associate
76 salaries
unlock blur

₹1.2 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Indecomm Global Services with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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