Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Servion Global Solutions Team. If you also belong to the team, you can get access from here

Servion Global Solutions Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 276 Reviews

Filter interviews by

Servion Global Solutions Dot Net Developer Intern Interview Questions and Answers

Updated 28 Oct 2024

Servion Global Solutions Dot Net Developer Intern Interview Experiences

1 interview found

Dot Net Developer Intern Interview Questions & Answers

user image Nithishkumar.R 53

posted on 28 Oct 2024

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

(2 Questions)

  • Q1. About ur self,SQL important
  • Q2. They checking our communication skills.

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
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Explain exceptional handling
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in a program.

    • Exception handling helps in gracefully handling unexpected errors in a program.

    • It prevents the program from crashing and allows for proper error logging and recovery.

    • Commonly used keywords in exception handling are try, catch, finally, and throw.

    • Example: try { // code that may throw an exception } catch(Exception ex) { // handle the exception }

  • Answered by AI
  • Q2. Explain difference between abstract and interfaces
  • Ans. 

    Abstract classes can have implementation details while interfaces cannot.

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

    • A class can only inherit from one abstract class, but can implement multiple interfaces.

    • Abstract classes can have constructors, fields, and properties, while interfaces cannot.

    • Abstract classes are used when some common functionality ne...

  • Answered by AI
  • Q3. One coding question on arrays
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
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Differences between promises and observables
  • Ans. 

    Promises are used for a single async operation while observables handle multiple async operations and can be cancelled.

    • Promises are eager, meaning they start immediately upon creation.

    • Observables are lazy, meaning they only start when subscribed to.

    • Promises can only handle a single value or error, while observables can handle multiple values over time.

    • Observables can be cancelled, while promises cannot be cancelled.

    • Pro...

  • Answered by AI
  • Q2. Angular vs react differences
  • Ans. 

    Angular and React are both popular front-end frameworks, but they have some key differences in terms of architecture, syntax, and ecosystem.

    • Angular is a full-fledged framework with a steep learning curve, while React is a library that is more flexible and easier to learn.

    • Angular uses two-way data binding, while React uses one-way data flow.

    • Angular has a more opinionated architecture and provides more out-of-the-box fea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep attending more Interviews.work on sure shot questions. Maintain goood attitude learn from rejections and get better everyday.

Skills evaluated in this interview

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 May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops questions like abstract class, interface
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?

Servion Global Solutions Interview FAQs

How many rounds are there in Servion Global Solutions Dot Net Developer Intern interview?
Servion Global Solutions interview process usually has 1 rounds. The most common rounds in the Servion Global Solutions interview process are Technical.
What are the top questions asked in Servion Global Solutions Dot Net Developer Intern interview?

Some of the top questions asked at the Servion Global Solutions Dot Net Developer Intern interview -

  1. They checking our communication skil...read more
  2. About ur self,SQL import...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
CitiusTech Interview Questions
3.4
 • 264 Interviews
View all
Senior Software Engineer
257 salaries
unlock blur

₹7.8 L/yr - ₹32.9 L/yr

Software Engineer
221 salaries
unlock blur

₹2.7 L/yr - ₹11 L/yr

Engineer
161 salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Senior Engineer
159 salaries
unlock blur

₹6.7 L/yr - ₹22.1 L/yr

Technical Lead
94 salaries
unlock blur

₹8.8 L/yr - ₹30 L/yr

Explore more salaries
Compare Servion Global Solutions with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.6
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