Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by OodlesTechnologies Team. If you also belong to the team, you can get access from here

OodlesTechnologies Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 282 Reviews

Filter interviews by

OodlesTechnologies Software Engineer Interview Questions and Answers

Updated 25 Mar 2023

OodlesTechnologies Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
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 - Coding Test 

Basic array and string based questions.

Round 3 - Technical 

(2 Questions)

  • Q1. Basics of OOPS and resume.
  • Q2. Reverse a string without using new variable
  • Ans. 

    Reverse a string without using new variable

    • Use two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move the pointers towards each other until they meet in the middle

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPS, DS, and one programming language. Deep understanding of any programming language will better.

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Focusing on moderate level patterns

Round 2 - Technical 

(4 Questions)

  • Q1. Discuss object oriented principles in depth
  • Ans. 

    Object oriented principles are fundamental concepts in software development that focus on organizing code into objects with properties and behaviors.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behaviors from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in di...

  • Answered by AI
  • Q2. Deep discuss of interface
  • Q3. Deep discuss of exception, multithreading
  • Q4. Deep discuss of oop
Round 3 - HR 

(1 Question)

  • Q1. Asked some tricky question related to real life problems

Interview Preparation Tips

Interview preparation tips for other job seekers - All Good 👍🏻
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Springboot notations
  • Q2. How to handle multiple request on springboot
  • Ans. 

    Use thread pooling and asynchronous processing to handle multiple requests efficiently in Spring Boot.

    • Implement thread pooling to manage multiple requests concurrently.

    • Use asynchronous processing to handle requests without blocking the main thread.

    • Consider using reactive programming with Spring WebFlux for better scalability.

    • Optimize database queries and external API calls to reduce response times.

    • Implement caching mec...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Coding question
  • Q2. Asked to make some component in react
Round 2 - Technical 

(2 Questions)

  • Q1. Javascript questions
  • Q2. Normal js questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI
  • Q2. What is an angular
  • Ans. 

    Angular is a popular open-source web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology, (NIT), Sikkim and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Behavioral 

(1 Question)

  • Q1. General aptitude question
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Questions and some coding questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

2 dsa questions and mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Questions on oops dsa
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Prime number , factorial

Round 2 - Technical 

(2 Questions)

  • Q1. Question asked from OOPs , DSA
  • Q2. WAP to print prime number
  • Ans. 

    A program to print prime numbers

    • Iterate through numbers and check if each number is prime

    • A prime number is only divisible by 1 and itself

    • Start checking from 2 onwards

    • Optimization: Only check up to square root of the number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the DSA topics
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude test was easy level and moderate level.

Round 2 - Coding Test 

Coding test was held in the google form which was very easy.

Round 3 - Technical 

(3 Questions)

  • Q1. What is volatile keyword?
  • Ans. 

    The volatile keyword in software engineering is used to indicate that a variable's value can be modified by multiple threads.

    • Volatile keyword ensures that the variable's value is always read from and written to the main memory, rather than cached in a thread's local cache.

    • It is used to prevent unexpected behavior in multi-threaded environments where multiple threads may access and modify the same variable simultaneousl...

  • Answered by AI
  • Q2. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have abstract methods that must be implemented by its subclasses.

    • An abstract class can also have non-abstract methods that can be inherited by its subclasses.

    • An abstract class provides a common interface for its subclasses.

    • An abstract class can have instance variables and constructors.

    • An abstract class cannot be...

  • Answered by AI
  • Q3. Where do you use abstract class
  • Ans. 

    Abstract classes are used to provide a common interface and partial implementation for related classes.

    • Abstract classes are used when you want to create a base class that cannot be instantiated on its own but can be inherited by other classes.

    • They are useful when you want to define common methods and properties that multiple related classes should have.

    • Abstract classes can have both abstract and non-abstract methods.

    • Ab...

  • Answered by AI

Skills evaluated in this interview

OodlesTechnologies Interview FAQs

How many rounds are there in OodlesTechnologies Software Engineer interview?
OodlesTechnologies interview process usually has 3 rounds. The most common rounds in the OodlesTechnologies interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in OodlesTechnologies Software Engineer interview?

Some of the top questions asked at the OodlesTechnologies Software Engineer interview -

  1. Reverse a string without using new varia...read more
  2. Basics of OOPS and resu...read more

Tell us how to improve this page.

OodlesTechnologies Software Engineer Salary
based on 13 salaries
₹2.8 L/yr - ₹11.8 L/yr
9% less than the average Software Engineer Salary in India
View more details

OodlesTechnologies Software Engineer Reviews and Ratings

based on 3 reviews

1.0/5

Rating in categories

1.1

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 3 Reviews and Ratings
Front end Developer
74 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Associate Consultant
62 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Associate Development Consultant
59 salaries
unlock blur

₹2 L/yr - ₹7.6 L/yr

Senior Associate Consultant
47 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Associate Consultant Developer
42 salaries
unlock blur

₹1.2 L/yr - ₹7.1 L/yr

Explore more salaries
Compare OodlesTechnologies 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