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 283 Reviews

Filter interviews by

OodlesTechnologies Software Developer Interview Questions, Process, and Tips

Updated 9 Jun 2022

Top OodlesTechnologies Software Developer Interview Questions and Answers

  • Q1. Find a Node in Linked List Given a singly linked list of integers, your task is to implement a function that returns the index/position of an integer value 'N' if it exi ...read more
  • Q2. Top View of Binary Tree Given a binary tree of integers, the task is to return the top view of the given binary tree. The top view of the binary tree is the set of nodes ...read more
  • Q3. Cycle Detection in a Singly Linked List Determine if a given singly linked list of integers forms a cycle or not. A cycle in a linked list occurs when a node's next poin ...read more

OodlesTechnologies Software Developer Interview Experiences

3 interviews found

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

Create a CRUD application

Round 3 - Technical 

(3 Questions)

  • Q1. Javascript, hoisting ,promise ,callback function
  • Q2. Array , object ,JSON,for loop
  • Q3. Introduction react js,and other frameworks ,like angular, Vue
Round 4 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Basic details for joining company

Interview Preparation Tips

Interview preparation tips for other job seekers - Always active for interview and day/day increase your skills and apply regarding jobs

I applied via AmbitionBox and was interviewed in Dec 2021. There were 2 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 - Technical 

(1 Question)

  • Q1. Basics questions of react native

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learn and also try to improve your skills and communication skills

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

I was interviewed in Jan 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Easy

  • Q1. 

    Find a Node in Linked List

    Given a singly linked list of integers, your task is to implement a function that returns the index/position of an integer value 'N' if it exists in the linked list. Return -1 i...

  • Ans. Recursive Approach

    The steps are as follows:

     

    1. If the head is null, return -1 since an empty list will obviously not contain the element that we need to look for.
    2. Check whether the head’s data is equal to the element we want to search. Return 0 if it is.
    3. Then recurse on the next node from the head and get its answer.
    4. If the answer from the recursive call is -1, your answer is also -1 since you already check the head’s d...
  • Answered Anonymously
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. Best Approach
    1. Maintain a linked list. Keep track of its head, and size at all times, and update them accordingly whenever a new operation is performed.
    2. Following is the way we can implement all functions of the stack using linked list:
      1. First, initialize a head node, and the size of the list as NULL and 0 respectively.
      2. Then for push function, insert new elements at the head of the list, i.e. the new element will become the ...
  • Answered Anonymously
  • Q3. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

  • Q1. 

    Top View of Binary Tree

    Given a binary tree of integers, the task is to return the top view of the given binary tree. The top view of the binary tree is the set of nodes visible when viewed from the top.

    ...
  • Ans. Using Pre-Order Traversal

    As we know that all three traversals, i.e. pre-order, in-order and post-order, visit the tree node at once. We can use any of them. Here we are going to use pre-order traversal for the explanation. So while traversing in the pre-order traversal, we will keep track of horizontal distance of the node which is going to be visited from the root node, and we also keep track of the vertical level of ...

  • Answered Anonymously
  • Q2. 

    Problem Statement: Delete Node In A Linked List

    Given a singly linked list of integers and a reference to a node, your task is to delete that specific node from the linked list. Each node in the linked li...

  • Ans. Brute-force

    Approach:

     

    We need to delete the node K from the linked list. The most general way to delete the node K from a singly linked list is to get access to the previous node of K. We can get access to the previous node by traversing from the head of the linked list. Let’s denote this previous node as P. Then, we update the next pointer of P to the next pointer of K

    Although the reference to node K is giv...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in ChennaiEligibility criteriaAbove 7 CGPAOodles Technologies Pvt Ltd interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object-Oriented Programming, System Design , any programming language, Database Management System, Operating System, NetworkingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Questions as much as you can
Tip 2 : Do at least 2 projects
Tip 3 : Do practice a lot of questions on linked list and stacks as these are two most important data structures asked in the interview. 
Tip 4 : Also, try to implement it yourself without seeing the solution. 
Tip 5 : Also prepare for Computer Science subjects like Operating System, Database Management System, Computer Networks, etc. I prepared them through Coding Ninjas notes which were simpler and easy to understand.

Application resume tips for other job seekers

Tip 1 : Keep your resume short and up to mark and check spellings before submitting it for the interview process.
Tip 2 : Have projects and internships on your resume
Tip 3 : Never lie in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding test was really good it was easier to tackle the problem and writting code for it.

Round 2 - Technical 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What is the major project you have worked on, and can you provide an explanation of it?
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database storage

    • Incorporated authentication and authorization features for user security

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. SQL ques and concept
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Group discussion was the first round on avg there were 15 people in a group discussion at last everyone was given a minute to speak

Round 2 - HR 

(4 Questions)

  • Q1. Tell me about yourself?
  • Q2. Where do you see yourself in five years?
  • Q3. Tell me about your family?
  • Q4. Do you plan on Higher education?
Round 3 - Technical 

(6 Questions)

  • Q1. Questions on OOPs concept
  • Q2. Sort the array by parity
  • Q3. Write SQL queries
  • Q4. Who wrote the book discovery of the nation
  • Q5. What is the official language of kashmir
  • Q6. Which city is called city of lakes
Round 4 - Technical 

(6 Questions)

  • Q1. Find the length of the longest word in the length
  • Q2. Push the zeroes in the arrays to the end
  • Q3. When was python launched
  • Q4. What is name of ai from meta/google/amazon
  • Q5. What do you do in your free time
  • Q6. Tell me your pros and cons

Interview Preparation Tips

Topics to prepare for Winjit Technologies Software Developer interview:
  • OOPS
  • C++
  • SQL
Interview preparation tips for other job seekers - The Recruitment process is extremely slow and even weird like asking non-technical questions in technical rounds. The interviews were often rescheduled and mismanaged. The last round was in their office we reached before time and they had no clue that they had an interview scheduled. It began after two hours. Lastly they picked those candidates who had 0 technical knowledge in fact most of them had pretty bad interview experience since then could not answer any technical questions yet they were selected on the other hand those who could answer technical questions and had good interview experience were left out also the results came after a month leading me to believe there was something fishy
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 Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude and simple technical questions of SQL &js

Round 2 - Technical 

(2 Questions)

  • Q1. Simple technical interview based on resume
  • Q2. Question based on projects
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java and Python.

    • Experienced in Java and Python programming languages

    • Worked on developing web applications using Spring framework

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. Are you okay with the bond
  • Ans. 

    Yes, I am okay with the bond as long as it is reasonable and fair.

    • I am open to discussing the terms of the bond to ensure it is fair for both parties.

    • I understand that bonds are common in the software industry and can be a way for companies to protect their investment in employees.

    • I am committed to fulfilling my obligations under the bond agreement.

    • I am confident in my skills and abilities to contribute value to the co

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

Kjigtrngh biuit xug u;byu,vtcyterjv iovyutgh, mhvtfy

Round 2 - Coding Test 

Buygtrvc sndgbhulitcyuvltyuxruyf jylbiuxtgrfdhmvjbjkkjtydtrsxgf

Round 3 - Coding Test 

Kbgjcb sgfnxvb h uibhguxcruyfviulyhviutxtkjbhgtye

Round 4 - One-on-one 

(2 Questions)

  • Q1. What is your long term goal
  • Ans. 

    To become a lead software architect and contribute to cutting-edge technology advancements.

    • Advance to a lead software architect role

    • Contribute to cutting-edge technology advancements

    • Continuously improve skills and knowledge through learning and certifications

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using various technologies.

    • Experienced in front-end development using HTML, CSS, and JavaScript

    • Proficient in back-end development with languages like Java and Python

    • Familiar with database management systems such as MySQL and MongoDB

    • Strong problem-solving skills and ability to work in a team environment

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell Me about Yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills and ability to work in a team

    • Completed multiple projects including a web-based inventory management system

  • Answered by AI
  • Q2. Question From OOPS Consept
Round 2 - One-on-one 

(2 Questions)

  • Q1. Ask About Web Form
  • Q2. SQL Question like Relation
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 Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Very basic aptitude questions along with few coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. A problem statement was given and we had to provide an optimal approach to design and handle that problem
  • Q2. Oops concepts, SQL queries
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Print Longest Increasing Subsequence
  • Ans. 

    Print the longest increasing subsequence of an array of strings.

    • Use dynamic programming to find the longest increasing subsequence.

    • Iterate through the array and keep track of the longest increasing subsequence ending at each index.

    • Return the longest increasing subsequence found.

  • Answered by AI

Skills evaluated in this interview

OodlesTechnologies Interview FAQs

How many rounds are there in OodlesTechnologies Software Developer interview?
OodlesTechnologies interview process usually has 3 rounds. The most common rounds in the OodlesTechnologies interview process are Resume Shortlist, Technical and Assignment.
How to prepare for OodlesTechnologies Software 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 OodlesTechnologies. The most common topics and skills that interviewers at OodlesTechnologies expect are Data Structures, Database Design, GIT, Hibernate and J2Ee.
What are the top questions asked in OodlesTechnologies Software Developer interview?

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

  1. Introduction react js,and other frameworks ,like angular, ...read more
  2. Javascript, hoisting ,promise ,callback funct...read more
  3. Array , object ,JSON,for l...read more

Tell us how to improve this page.

OodlesTechnologies Software Developer Salary
based on 39 salaries
₹1.9 L/yr - ₹8.6 L/yr
34% less than the average Software Developer Salary in India
View more details

OodlesTechnologies Software Developer Reviews and Ratings

based on 13 reviews

2.3/5

Rating in categories

2.9

Skill development

2.4

Work-life balance

3.0

Salary

2.3

Job security

2.3

Company culture

2.3

Promotions

2.6

Work satisfaction

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

₹2 L/yr - ₹7 L/yr

Associate Consultant
60 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Associate Development Consultant
58 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