Upload Button Icon Add office photos

OSP Labs

Compare button icon Compare button icon Compare

Filter interviews by

OSP Labs Interview Questions, Process, and Tips for Freshers

Updated 19 Feb 2025

OSP Labs Interview Experiences for Freshers

Popular Designations

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

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

Jobs at OSP Labs

View all

Interview questions from similar companies

Software Engineer Interview Questions & Answers

American Megatrends user image R. Arockia Ratheesh Sahayaraj

posted on 6 Nov 2015

Interview Preparation Tips

Round: Test
Experience: Only 24 people from my campus attended the placement process of this company.The experience wasn't really good.I wasn't 
short-listed for next round as my CGPA was 7.5 and need was of above 7.5 ,as they were maintaining standards.

Round: Test
Experience: 1.C aps was really tough.
2.Section 2 we had to choose either Microprocessor or Java,I preferred microprocessor . 3.Simple Questions on 8085 and 8086 instruction set was asked.
4.How much memory are there are 20 address lines,
5.Difference between SRAM and DRAM.
6.ROM is used for stack or not.
7.What are contents of Stack Pointer after PUSH and POP operation.
8.What happens after RET instruction?
9.What is CMC equivalent instruction?

Round: Test
Experience: 16 questions on Quant which are :-
Odd number in a series, Area and Volume, Games of Skill, Time and Work, Average, Trains, Boats 
and Streams, Profit and Gain were asked.
If no. of handshakes is 66,find total number of People.?
A lotus in a pond doubles in size everyday,if it fills the pond on 20th day,when will be the pond would be half?
LOGICAL REASONING-
4 men are on the side of a bridge.One torch light is with them and without it they cannot cross 
the bridge.The bridge can withstand only 2 people at a time.The time required by the persons are 1 
min,2 mins,7 mins,10 mins respectively.Find the shortest time required by all of em to cross the
bridge.
(Answer: 17 minutes)

Round: SOFT SKILLS
Experience: scenario based questions were asked:-
1.working on a project in your company and your brother is in urgent need of a project.What will you do?
2.Your friend mails the project details to some other company.what will be you reaction?
3.Your boss allows to take your team members for a treat.Whether you choose costly one or within budget?
4.Your favorite subject in your curriculum and Why?
5.Where you would view yourself in 5 years?
6.What is a dream company in your terms?
7.Any situation were your work was criticized and what was your reaction?

Skills:
College Name: Anna University Chennai

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

I applied via Approached by Company and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Array and OOPS concept. Given set of questions to solve with each oops concept

Round 2 - One-on-one 

(3 Questions)

  • Q1. Out of box thinking. Given logical puzzles and ask you to analyze and provide your understanding
  • Q2. Explain the inheritance concept with car model
  • Ans. 

    Inheritance in car model refers to the ability of a new car model to inherit features and characteristics from an existing car model.

    • Inheritance allows for the creation of a new car model that shares common features with an existing car model

    • The new car model can add or modify features inherited from the existing car model

    • For example, a new sports car model can inherit features from a base car model such as engine, tra...

  • Answered by AI
  • Q3. Probability question with fruits and boxes

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with oops concept and be more creative. Dont find complex answers for simple questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

What is performance testing?

Round 2 - Technical 

(1 Question)

  • Q1. About load runner
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Walk-in and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is interface ?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties.

    • Interfaces in programming languages like Java and C# allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • Interfaces are used to define common behavior that multiple classes c...

  • Answered by AI
  • Q2. Hat is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation promotes code reusability and makes the code easier to maintain.

    • Example: In a class representing a car, the variables lik...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with ur basics

Skills evaluated in this interview

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

10 apti questions and 10 technical mcq on cpp

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept question
  • Q2. Sql queries on join
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Can you provide an introduction about yourself?
  • Ans. 

    Enthusiastic intern with a passion for learning and contributing to team success in a dynamic environment.

    • Currently pursuing a degree in Business Administration, focusing on marketing strategies.

    • Completed an internship at XYZ Company, where I assisted in social media campaigns that increased engagement by 30%.

    • Active member of the university's marketing club, organizing events and workshops to enhance skills.

    • Proficient ...

  • Answered by AI
  • Q2. Question on c# language

I applied via Naukri.com and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were mainly on the Data Structure and System Design.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pleade be ready to face multiple rounds, as the company can take a new round after telling you that you are selected by saying that it is just an interaction, but it will be a complete technical interview.

OSP Labs Interview FAQs

How many rounds are there in OSP Labs interview for freshers?
OSP Labs interview process for freshers usually has 2 rounds. The most common rounds in the OSP Labs interview process for freshers are Technical.
How to prepare for OSP Labs interview for freshers?
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 Social Media Marketing, IOS, SEO, ASP.Net and Content Writing.
What are the top questions asked in OSP Labs interview for freshers?

Some of the top questions asked at the OSP Labs interview for freshers -

  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 Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

HyScaler Interview Questions
4.5
 • 92 Interviews
Monotype Interview Questions
3.7
 • 23 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
AvenData GmbH Interview Questions
3.0
 • 18 Interviews
Grapecity Interview Questions
3.8
 • 17 Interviews
Xactly Corp Interview Questions
3.8
 • 17 Interviews
Dataflow Group Interview Questions
3.0
 • 14 Interviews
View all

OSP Labs Reviews and Ratings

based on 75 reviews

4.0/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.9

Salary

3.8

Job security

3.8

Company culture

3.8

Promotions

3.6

Work satisfaction

Explore 75 Reviews and Ratings
Snowflake Developer

Mumbai Suburban

4-8 Yrs

Not Disclosed

Hiring AI/ML Developer

Ahmedabad,

Mumbai

3-6 Yrs

Not Disclosed

DevOps Engineer

Mumbai

2-5 Yrs

Not Disclosed

Explore more jobs
Software Developer
45 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Senior Software Developer
19 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Front end Developer
10 salaries
unlock blur

₹6.4 L/yr - ₹11 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹9.5 L/yr - ₹30 L/yr

Senior Software Tester
8 salaries
unlock blur

₹4.6 L/yr - ₹12.4 L/yr

Explore more salaries
Compare OSP Labs with

HyScaler

4.5
Compare

Pitney Bowes

3.7
Compare

AvenData GmbH

3.0
Compare

Dataflow Group

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