Upload Button Icon Add office photos

Filter interviews by

StartLazaa DOT NET Developer Interview Questions and Answers

Updated 16 Dec 2023

StartLazaa DOT NET Developer Interview Experiences

2 interviews found

DOT NET Developer Interview Questions & Answers

user image Kishor Balpande

posted on 3 Feb 2023

Interview experience
2
Poor
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 

(1 Question)

  • Q1. Crud operation in Asp.net
  • Ans. 

    CRUD operations in ASP.NET involve creating, reading, updating, and deleting data from a database.

    • Create: INSERT statement in SQL or Entity Framework's Add() method

    • Read: SELECT statement in SQL or Entity Framework's Find() method

    • Update: UPDATE statement in SQL or Entity Framework's Update() method

    • Delete: DELETE statement in SQL or Entity Framework's Remove() method

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. General hr questions.Nothing is different.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do only Crud operation in Asp net .
That is enough.No interview questions will ask for freshers.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Jun 2023. There were 3 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 - HR 

(1 Question)

  • Q1. Check the background details and about your education.
Round 3 - Coding Test 

Crud operation (Insert, Update, Delete, and show the details in Grid then edit, update, and delete functionality on Grid)

Interview questions from similar companies

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

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. What are the types and number of constraints in your specific context?
  • Q2. What is the difference between an independent class and an abstract class?
Round 2 - Technical 

(1 Question)

  • Q1. Technical coding with the technical team
Round 3 - HR 

(1 Question)

  • Q1. What are your reasons for changing your job?

Interview Preparation Tips

Interview preparation tips for other job seekers - It's important to prepare thoroughly in order to succeed in the interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to call abstract constructor
  • Q2. Difference between generic list and list which is faster
Round 2 - Coding Test 

Write prime number code

Interview Preparation Tips

Topics to prepare for Wipro DOT NET Developer interview:
  • C#
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(9 Questions)

  • Q1. What is the extension method
  • Ans. 

    Extension methods allow adding new methods to existing types without modifying the original type

    • Extension methods are static methods that can be called as if they were instance methods of the extended type

    • They are defined in static classes and must be in the same namespace as the extended type

    • They are commonly used to add functionality to existing types or interfaces without modifying them directly

  • Answered by AI
  • Q2. What is difference between union and union all
  • Ans. 

    Union combines and removes duplicates, Union All combines without removing duplicates.

    • Union removes duplicates from the result set, while Union All does not.

    • Union is slower than Union All because it has to perform an additional step to remove duplicates.

    • Union is used when you want to combine two result sets and remove duplicates, while Union All is used when you want to combine two result sets without removing duplicat

  • Answered by AI
  • Q3. What is constructor chaining
  • Ans. 

    Constructor chaining is the process of calling one constructor from another constructor within the same class.

    • Allows for reusing code and avoiding duplication

    • Can be achieved using 'this' keyword in the constructor

    • Example: public MyClass(int x) : this(x, 0) {}

  • Answered by AI
  • Q4. What is CTE and explain
  • Ans. 

    CTE stands for Common Table Expressions, which is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs are defined using the WITH keyword in SQL.

    • They help improve readability and maintainability of complex queries.

    • CTEs can be recursive, allowing for hierarchical data querying.

    • Example: WITH CTE AS (SELECT * FROM table_name) SELECT * FROM CTE;

    • Example: WITH RECURSIVE CTE ...

  • Answered by AI
  • Q5. What is constructor
  • Ans. 

    A constructor is a special method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to.

    • They are used to initialize the object's state.

    • Constructors can be parameterized or default (no parameters).

    • Example: public class Person { public Person(string name) { this.Name = name; } }

  • Answered by AI
  • Q6. How to send bulk of data through db
  • Ans. 

    Use bulk insert or batch processing to send large amounts of data through the database.

    • Use bulk insert operations provided by the database management system.

    • Consider using batch processing techniques to optimize performance.

    • Use stored procedures or parameterized queries for efficient data transfer.

  • Answered by AI
  • Q7. Which design pattern do you used in your project
  • Ans. 

    I have used the MVC (Model-View-Controller) design pattern in my project.

    • Separates the application into three main components: Model, View, and Controller

    • Promotes code reusability, modularity, and maintainability

    • Example: ASP.NET MVC framework

  • Answered by AI
  • Q8. What are the characteristics of singleton pattern and how to use
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Characteristics include private constructor, static instance variable, static method to access instance, lazy initialization, and thread safety.

    • Example: public class Singleton { private static Singleton instance; private Singleton() {} public static Singleton getInstance() { if (instance == null) { instance = new Singlet

  • Answered by AI
  • Q9. Write a linq to fetch the data from db table(students) and data (studentid) should be in asending rder
  • Ans. 

    Use LINQ to fetch data from the 'students' table in ascending order of 'studentid'.

    • Use LINQ query syntax or method syntax to retrieve data from the 'students' table.

    • Order the data by 'studentid' in ascending order using the 'OrderBy' or 'OrderByDescending' method.

    • Ensure that the LINQ query is executed against the database to fetch the data.

  • 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 Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What's your experience
  • Q2. Whats your Qualifications
Round 2 - Technical 

(2 Questions)

  • Q1. What are joins?
  • Q2. Oops concept and its implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between web.config and Machine.config
  • Ans. 

    web.config is specific to a web application and overrides settings in Machine.config

    • web.config is specific to a web application, while Machine.config is at the machine level

    • web.config can override settings in Machine.config for a specific application

    • Machine.config is located in the .NET framework folder, while web.config is in the application folder

  • Answered by AI
  • Q2. Explain about state management
  • Ans. 

    State management in .NET refers to the process of storing and retrieving data during the lifecycle of an application.

    • State management can be achieved using various techniques such as session state, view state, cookies, and query strings.

    • Session state allows storing user-specific data across multiple pages during a user session.

    • View state stores the state of the page and its controls between postbacks.

    • Cookies can be use...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Code excution of .net application?
  • Ans. 

    The .NET application code is compiled into Intermediate Language (IL) which is then executed by the Common Language Runtime (CLR).

    • Code is compiled into Intermediate Language (IL) by the compiler

    • IL is then converted into machine code by the Just-In-Time (JIT) compiler

    • The CLR manages memory, security, and other system resources during code execution

  • Answered by AI
  • Q2. Stored procedure vs function?
  • Ans. 

    Stored procedures are precompiled SQL queries that can perform multiple operations, while functions are reusable code blocks that return a single value.

    • Stored procedures can execute multiple SQL statements and can perform complex operations.

    • Functions are reusable code blocks that return a single value and can be used in SQL queries.

    • Stored procedures can be called independently, while functions are typically called with...

  • Answered by AI
  • Q3. What is CLR, Why its used?
  • Ans. 

    CLR stands for Common Language Runtime, it is used to manage the execution of .NET programs.

    • CLR is a part of the .NET framework responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR converts the Intermediate Language (IL) code into machine code during runtime.

    • It allows for language interoperability, meaning different languages can be...

  • Answered by AI
  • Q4. What is GC, where you have used in the app?
  • Ans. 

    GC stands for Garbage Collection, a process in .NET to automatically manage memory by reclaiming unused objects.

    • GC is a feature in .NET that automatically manages memory by reclaiming unused objects.

    • It helps in preventing memory leaks and improving application performance.

    • GC can be used in .NET applications to free up memory occupied by objects that are no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamentals should be strong and in communicating better

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. General questions on ASP.NET, Projects
  • Q2. Questions from my resume and current project
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic oops implementation.

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Millewares and DI ?
  • Ans. 

    Middleware is software that acts as a bridge between an operating system or database and applications, while DI (Dependency Injection) is a design pattern used to increase flexibility and maintainability of code.

    • Middleware is software that provides common services and capabilities to applications, such as authentication, logging, and routing.

    • DI is a design pattern where the dependencies of a class are injected from the...

  • Answered by AI
  • Q2. How Authentication works in Web api ?
  • Ans. 

    Authentication in Web API involves verifying the identity of a user or system before granting access to resources.

    • Authentication headers like Authorization header are used to send credentials

    • Web API can use various authentication methods like JWT, OAuth, Basic Authentication

    • Authentication middleware is used to validate credentials and generate tokens

    • Access control lists (ACLs) can be used to define permissions for diff

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why Capgemini ?
  • Ans. 

    Capgemini is a global leader in consulting, technology services and digital transformation, offering a wide range of opportunities for growth and development.

    • Capgemini is a well-established global company with a strong reputation in the IT industry

    • They offer a wide range of projects and opportunities for career growth

    • Capgemini values innovation and provides a collaborative work environment

    • The company has a strong focus...

  • Answered by AI
  • Q2. How early I can join ?

Skills evaluated in this interview

StartLazaa Interview FAQs

How many rounds are there in StartLazaa DOT NET Developer interview?
StartLazaa interview process usually has 3 rounds. The most common rounds in the StartLazaa interview process are HR, Resume Shortlist and Coding Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 StartLazaa interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

StartLazaa DOT NET Developer Reviews and Ratings

based on 2 reviews

1.8/5

Rating in categories

1.6

Skill development

1.8

Work-Life balance

2.1

Salary & Benefits

1.8

Job Security

2.1

Company culture

1.6

Promotions/Appraisal

1.8

Work Satisfaction

Explore 2 Reviews and Ratings
Software Tester
5 salaries
unlock blur

₹1 L/yr - ₹2.1 L/yr

Software Developer
4 salaries
unlock blur

₹1.2 L/yr - ₹6 L/yr

UI/UX Designer
3 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

DOT NET Developer
3 salaries
unlock blur

₹1 L/yr - ₹3.6 L/yr

Explore more salaries
Compare StartLazaa with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.9
Compare

Paytm

3.3
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