Upload Button Icon Add office photos

Filter interviews by

OSP Labs DOT NET Developer Interview Questions, Process, and Tips

Updated 8 Jun 2024

OSP Labs DOT NET Developer Interview Experiences

1 interview found

DOT NET Developer Interview Questions & Answers

user image Swati shivaji Raykar

posted on 8 Jun 2024

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

(2 Questions)

  • Q1. Sarah cover 600 m streat in 5 minutes.what is the speed of Sarah in km/h?
  • Ans. 

    Sarah's speed is 7.2 km/h.

    • Convert 600 meters to kilometers (600m = 0.6 km)

    • Calculate the speed using the formula: Speed = Distance / Time

    • Speed = 0.6 km / 5 minutes = 0.12 km/min

    • Convert minutes to hours (1 hour = 60 minutes)

    • Speed = 0.12 km/min * 60 min/hour = 7.2 km/h

  • Answered by AI
  • Q2. A:B=3:4,C:B=5:4 ,C:D=10:9 then what will be A:D ?
  • Ans. 

    A:D = 6:5

    • First, find the common ratio between A and B, which is 3:4

    • Then, use the ratios between B and C, and C and D to find the ratio between A and D

    • Calculate the ratio A:D using the ratios found in the previous steps

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is OOP in C#?
  • Ans. 

    OOP in C# stands for Object-Oriented Programming, a programming paradigm that uses objects to design and build applications.

    • OOP focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP in C#.

    • Example: Creating classes like 'Person' with properties like 'Name' and methods like 'SayHello'.

  • Answered by AI
  • Q2. What is async and await in dot net?
  • Ans. 

    Async and await are keywords in C# that allow for asynchronous programming, making it easier to write code that doesn't block the main thread.

    • Async is used to define a method as asynchronous, allowing it to run concurrently with other code.

    • Await is used within an async method to pause execution until a task is complete, without blocking the main thread.

    • Async and await are commonly used in scenarios such as making web r...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is .dot net
  • Ans. 

    Dot net is a software framework developed by Microsoft for building and running applications on Windows.

    • Developed by Microsoft

    • Used for building and running applications on Windows

    • Consists of a large class library called Framework Class Library (FCL)

    • Supports multiple programming languages like C#, VB.NET, and F#

  • Answered by AI
  • Q2. Advantages of using dot net
  • Ans. 

    Some advantages of using dot net include platform independence, language interoperability, and extensive class library.

    • Platform independence allows for cross-platform development.

    • Language interoperability enables developers to use multiple programming languages within the same project.

    • Extensive class library provides pre-built code for common tasks, saving time and effort.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions of quant and technical

Round 2 - One-on-one 

(1 Question)

  • Q1. Received the call and on spot interview. the interviewer asked basic questions on c#,oops,.net .the interview got over quickly like in 20 minutes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Process was smooth
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. Experience in domains
  • Q2. Previous companies
Round 2 - Technical 

(2 Questions)

  • Q1. SQL basic questions
  • Q2. .net and OOP basics
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

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

I applied via campus placement at Hindustan College of Science and Technology, Agra and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

1 round is coding round in pan paper test atleast 5 coding questions and some multiple questions and 1 DSA questions and 4 coding questions correct and dsa correct than interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Everything HTML CSS SQL and core java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

OSP Labs Interview FAQs

How many rounds are there in OSP Labs DOT NET Developer interview?
OSP Labs interview process usually has 2 rounds. The most common rounds in the OSP Labs interview process are Technical.
How to prepare for OSP Labs 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 OSP Labs. The most common topics and skills that interviewers at OSP Labs expect are Java Web Services, outbound, simplex, Share Market and HT Breakers.
What are the top questions asked in OSP Labs DOT NET Developer interview?

Some of the top questions asked at the OSP Labs DOT NET Developer interview -

  1. Sarah cover 600 m streat in 5 minutes.what is the speed of Sarah in km...read more
  2. A:B=3:4,C:B=5:4 ,C:D=10:9 then what will be A:...read more
  3. What is async and await in dot n...read more

Tell us how to improve this page.

OSP Labs DOT NET Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Software Developer
46 salaries
unlock blur

₹3.2 L/yr - ₹14.2 L/yr

Senior Software Developer
19 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹8.7 L/yr - ₹30 L/yr

Senior Software Tester
8 salaries
unlock blur

₹4.6 L/yr - ₹12.4 L/yr

Copywriter
7 salaries
unlock blur

₹4.6 L/yr - ₹6 L/yr

Explore more salaries
Compare OSP Labs with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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