Upload Button Icon Add office photos

Filter interviews by

DreamOrbit Software Engineer Trainee Interview Questions and Answers

Updated 12 Sep 2024

DreamOrbit Software Engineer Trainee Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

Coding questions based on string.
1.reverse a each word of string given question.
2.swap a two variable without using 3 rd variable.
3.one question based on sql quaries.
4.refactor a given code. They given some code below.
5.write a program on palindrome string.or number.
6.rotate a array in right direction. Or right rotate array.
Some personal details.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for coding questions. They given a some login there in write code in like notepad. Timing of entire exam is 1 hr only. Be write a codes fast as much as possible.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was basic maths and vocabulary questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is the difference between primary key and foreign key?
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key refers to a field in another table.

    • Primary key is used to enforce data integrity and ensure uniqueness of records.

    • Foreign key is used to establish a relationship between two tables.

    • A table can have only one primary key, but multiple foreign keys.

    • Primary key cannot have null values, while foreign key can have null values.

    • Example: In a database of stu...

  • Answered by AI
  • Q2. What is inheritance and types of inheritance.
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • Types of inheritance include single, multiple, multilevel, hierarchical, and hybrid inheritance.

    • Single inheritance involves a child class inheriting from a single parent class.

    • Multiple inheritance involves a child class inheriting from multiple parent ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on dsa,oops and sql questions.
Only basic knowledge of these three is required.

I applied via Referral and was interviewed before Aug 2021. 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 - Aptitude Test 

Asp. Net, MVC, OOPS concepts

Round 3 - Technical 

(1 Question)

  • Q1. 1.Asked to write the syntax for number pattern program 2.SQL queries - where condition, disctinct 3.OOPS concepts 4.Authorization, authentication
Round 4 - HR 

(1 Question)

  • Q1. They said about work times and discussed about package

Interview Preparation Tips

Interview preparation tips for other job seekers - Fresher's can apply for job
All the seniors won't help you to understand about project
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is threading
  • Ans. 

    Threading is a programming technique that allows multiple tasks to run concurrently within a single process.

    • Threading allows for parallel execution of tasks within a program.

    • Threads share the same memory space, allowing for efficient communication and data sharing.

    • Examples of threading in programming languages include Java's Thread class and Python's threading module.

  • Answered by AI
  • Q2. 7 layer of networking
  • Ans. 

    The 7 layers of networking refer to the OSI model, which is a conceptual framework used to understand how networks operate.

    • Physical layer: Deals with physical connections and hardware (e.g. cables, switches)

    • Data link layer: Manages data transfer between devices on the same network (e.g. Ethernet)

    • Network layer: Handles routing and forwarding of data packets (e.g. IP)

    • Transport layer: Ensures data is delivered reliably an...

  • Answered by AI
Round 2 - CTO round 

(2 Questions)

  • Q1. Prev salary and prev experience(even if you fake it you can pass interview, he is dumb about software development)
  • Q2. What is your expectation
  • Ans. 

    My expectation is to work in a challenging environment where I can utilize my skills to contribute to the success of the team and company.

    • Expectation to work on complex projects that require problem-solving skills

    • Desire to collaborate with talented team members to achieve common goals

    • Opportunity for continuous learning and professional growth

    • Expectation for clear communication and feedback from management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go for it if you are not able to crack good companies.
They don't ask any DSA problems as they don't know about any coding platform (all are dumb )
good for those who have good communication skills in telling a small change a big change in code.
if you can inflate a task, you are going to join best company. (they don't need good code writers and best mf)

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How abstraction and inheritance are related?
  • Ans. 

    Abstraction allows for defining a common interface for related objects, while inheritance enables a class to inherit attributes and methods from another class.

    • Abstraction involves hiding the implementation details and showing only the necessary features of an object. Inheritance allows a class to inherit properties and behaviors from another class.

    • Abstraction helps in creating a blueprint of a class without providing t...

  • Answered by AI
  • Q2. Given a perticular time, find the angle between hour hand and minute hand.
  • Ans. 

    To find the angle between hour and minute hand at a given time on a clock face.

    • Calculate the angle made by hour hand with 12:00 on the clock face

    • Calculate the angle made by minute hand with 12:00 on the clock face

    • Find the absolute difference between the two angles

    • If the angle is greater than 180 degrees, subtract it from 360 degrees for the acute angle

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOP in detail. Have a good day structure knowledge. Understand how data structure can be used while solving problems.
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 Aug 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Basic technical question like oopc, dbms, os, sql

Interview Preparation Tips

Interview preparation tips for other job seekers - easy interview. Do not worry more. clear your basics first
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Regrading Self join query
  • Ans. 

    A self join query is used to join a table to itself in a SQL query.

    • Self join is used when a table needs to be joined with itself to compare rows within the same table.

    • It requires aliasing the table with different names to distinguish between the two instances of the same table.

    • Commonly used in hierarchical data structures or when comparing related rows in a table.

  • Answered by AI
  • Q2. Group by query per catagory
  • Ans. 

    Group by query is used to group data based on a specific category.

    • Use the GROUP BY clause in SQL to group data based on a specific column

    • Aggregate functions like COUNT, SUM, AVG can be used with GROUP BY to perform calculations on grouped data

    • Example: SELECT category, COUNT(*) FROM products GROUP BY category

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. I don't know why they rejected me
  • Q2. What ever they asked me for coding part the output is correct and logic is also correct
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Expectations , Future , who referred , why this firm
Round 2 - Coding Test 

DSA questions , OOPS , basics and recursion topics

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Fizz buzz question and array related

Round 2 - Technical 

(1 Question)

  • Q1. Basic react, javascript and one question to find duplicate.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

DreamOrbit Interview FAQs

How many rounds are there in DreamOrbit Software Engineer Trainee interview?
DreamOrbit interview process usually has 1 rounds. The most common rounds in the DreamOrbit interview process are Coding Test.

Tell us how to improve this page.

DreamOrbit Software Engineer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
DreamOrbit Software Engineer Trainee Salary
based on 4 salaries
₹2 L/yr - ₹4 L/yr
26% less than the average Software Engineer Trainee Salary in India
View more details
Senior Software Engineer
121 salaries
unlock blur

₹9.6 L/yr - ₹34.3 L/yr

Software Engineer
89 salaries
unlock blur

₹3 L/yr - ₹11.9 L/yr

Module Lead
36 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Technical Lead
36 salaries
unlock blur

₹16.1 L/yr - ₹33 L/yr

QA Engineer
28 salaries
unlock blur

₹2.9 L/yr - ₹9.3 L/yr

Explore more salaries
Compare DreamOrbit with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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