Upload Button Icon Add office photos

Filter interviews by

Sarvodaya Infotech Interview Questions and Answers

Updated 27 Apr 2024

Sarvodaya Infotech Interview Experiences

Popular Designations

3 interviews found

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

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

Round 1 - Group Discussion 

Good process and everyone was suppporting us

Round 2 - Technical 

(2 Questions)

  • Q1. They basically ask you question based on your resume
  • Q2. They ask you question about your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Write what you know well in your resume

ASP.NET Developer Interview Questions asked at other Companies

Q1. All opps concept. What is constructor?, what is delegets? What is inheritance? What is abtract class.?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Assignment 

Accounts related questions

Round 2 - HR 

(1 Question)

  • Q1. Introduction about yourself
Round 3 - Face to face interview 

(2 Questions)

  • Q1. Introduction about family
  • Q2. My mother is house wife and my 2 elder brother are business man

Account Assistant Interview Questions asked at other Companies

Q1. How many types of invoices to process
View answer (4)
Interview experience
1
Bad
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 - Aptitude Test 

They will ask random question which will not make any sense to the actual job

Round 3 - Coding Test 

Technical Round generally of C# and basics

Round 4 - One-on-one 

(1 Question)

  • Q1. What do you do in free time what did your father do what is your expectatiosn and other

ASP.NET Developer Interview Questions asked at other Companies

Q1. All opps concept. What is constructor?, what is delegets? What is inheritance? What is abtract class.?
View answer (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write linq query
  • Ans. 

    LINQ query to retrieve data from a collection

    • Use 'from' to specify the data source

    • Use 'where' to filter the data

    • Use 'select' to define the shape of the result

    • Example: var result = from item in collection where item.Property == value select item;

  • Answered by AI
  • Q2. SOILD principle
  • Ans. 

    SOLID is a set of five principles for writing clean, maintainable, and scalable object-oriented code.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses without affecting the pro...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 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. Project discussion with previous company ,oops concepts questions, inheritance, interface, polymorphism, abstract calss,ado.net questions, dataset data table, data adopter,executenonquery,executescaler,etc...
Round 3 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
Round 4 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.
  • Q3. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview is very good, am very happy. i would like to thank you for naukri.com

I applied via Infosys and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Oops, Concepts, ADO.Net
  • Q2. Explain MVC models and Action Listeners.
  • Ans. 

    MVC models are a design pattern for web applications. Action Listeners are used to handle user input.

    • MVC stands for Model-View-Controller

    • Model represents the data and business logic

    • View is the user interface

    • Controller handles user input and updates the model and view

    • Action Listeners are used in GUI programming to handle user input events

    • For example, a button click can trigger an Action Listener to perform a specific ac

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready to face questions for the following topics, C# oops, ADO.NET and ASP.Net, your projects.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of oops concepts,caching,session,viewstate,boxing and unboxing,basic queries
  • Q2. Delete and truncate difference,roles in your previous project,garbage collector
  • Ans. 

    Delete vs Truncate, roles in previous project, garbage collector

    • Delete removes rows one by one, while truncate removes all rows at once

    • Roles in previous project may include developer, tester, project manager, etc.

    • Garbage collector in .NET automatically manages memory by reclaiming unused objects

  • Answered by AI
  • Q3. How did you handled production things in your application,how much do you rate yourself in sql
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which a class receives its dependencies from external sources rather than creating them itself.

    • Allows for better code reusability and testability

    • Promotes loose coupling between classes

    • Commonly used in ASP.NET Core for managing services and components

  • Answered by AI
  • Q2. View, primary key, unique key
Round 2 - Technical 

(2 Questions)

  • Q1. What are restful api's
  • Ans. 

    RESTful APIs are a type of web service that follows the principles of REST (Representational State Transfer) architecture.

    • RESTful APIs use standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations on resources.

    • They are stateless, meaning each request from a client to the server must contain all the information necessary to understand the request.

    • RESTful APIs typically return data in JSON or XML forma...

  • Answered by AI
  • Q2. What are stored procedures
  • Ans. 

    Stored procedures are precompiled SQL queries stored in a database for reuse.

    • Stored procedures are used to improve performance by reducing the need to send multiple queries to the database server.

    • They can be parameterized to accept input values and return results.

    • Stored procedures can contain logic and business rules, making them reusable and secure.

    • Examples include procedures for inserting, updating, and deleting data

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(8 Questions)

  • Q1. Explain solid principle
  • Ans. 

    SOLID principles are a set of five design principles that help developers create more maintainable and scalable software.

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

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI
  • Q2. Why we use Sealed class
  • Ans. 

    Sealed class is used to prevent inheritance and ensure that the class cannot be extended.

    • Prevents inheritance, ensuring that the class cannot be extended

    • Helps in maintaining code integrity and security

    • Used when a class is not intended to be inherited or overridden

  • Answered by AI
  • Q3. Types of constructor
  • Ans. 

    Types of constructors include default, parameterized, copy, and static constructors.

    • Default constructor has no parameters

    • Parameterized constructor takes one or more parameters

    • Copy constructor creates a new object as a copy of an existing object

    • Static constructor is used to initialize static data members

  • Answered by AI
  • Q4. . net core features?
  • Ans. 

    ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • Cross-platform support allows development on Windows, macOS, and Linux

    • High performance with improved speed and scalability

    • Modular design for flexibility and easy maintenance

    • Built-in dependency injection for better code organization

    • Support for Docker containers for easy deployment

  • Answered by AI
  • Q5. Explain Startup file?
  • Ans. 

    Startup file is a configuration file in ASP.NET that specifies settings and behavior for the application.

    • Startup file is typically named 'Startup.cs' in ASP.NET Core projects.

    • It contains configuration for services, middleware, and the request processing pipeline.

    • The 'ConfigureServices' method is used to add services to the dependency injection container.

    • The 'Configure' method is used to configure the HTTP request pipel...

  • Answered by AI
  • Q6. Dependency injection
  • Q7. Explain Api lifetimes
  • Ans. 

    API lifetimes refer to the duration for which an API is available and supported.

    • API lifetimes can vary depending on the service provider or platform.

    • Some APIs may have a limited lifetime and be deprecated after a certain period.

    • Developers should be aware of API lifetimes to plan for potential changes or updates.

    • Regularly check for updates or announcements regarding API lifetimes to stay informed.

  • Answered by AI
  • Q8. Diffrent between transient vs scope
  • Ans. 

    Transient objects are created each time they are requested, while scoped objects are created once per request.

    • Transient objects are created every time they are requested, leading to potentially higher memory usage.

    • Scoped objects are created once per request and are shared within the scope of that request.

    • Example: Transient objects are typically used for lightweight services, while scoped objects are used for services t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Infosys talent acquisition team is not responding once interview completed.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - online 

(1 Question)

  • Q1. Mcq questions were asked with camera on
Round 2 - Technical 

(1 Question)

  • Q1. Questions were asked on SQL, Oops concepts, etl setup

Sarvodaya Infotech Interview FAQs

How many rounds are there in Sarvodaya Infotech interview?
Sarvodaya Infotech interview process usually has 3 rounds. The most common rounds in the Sarvodaya Infotech interview process are Group Discussion, Technical and Resume Shortlist.
How to prepare for Sarvodaya Infotech 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 Sarvodaya Infotech . The most common topics and skills that interviewers at Sarvodaya Infotech expect are Javascript, C#, SQL Server, ASP and .Net.
What are the top questions asked in Sarvodaya Infotech interview?

Some of the top questions asked at the Sarvodaya Infotech interview -

  1. My mother is house wife and my 2 elder brother are business ...read more
  2. They basically ask you question based on your res...read more

Tell us how to improve this page.

Sarvodaya Infotech Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Sarvodaya Infotech Reviews and Ratings

based on 19 reviews

3.3/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

3.1

Salary

3.2

Job security

3.4

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 19 Reviews and Ratings
Software Tester
8 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Softwaretest Engineer
7 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Software Engineer
5 salaries
unlock blur

₹1.7 L/yr - ₹13 L/yr

Software Developer
4 salaries
unlock blur

₹1.6 L/yr - ₹3 L/yr

Business Development Manager
4 salaries
unlock blur

₹1.3 L/yr - ₹4 L/yr

Explore more salaries
Compare Sarvodaya Infotech with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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