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

Filter interviews by

OodlesTechnologies React Developer Interview Questions, Process, and Tips

Updated 21 Mar 2022

OodlesTechnologies React Developer Interview Experiences

1 interview found

I was interviewed in Nov 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions on React mainly.

  • Q1. What are the differences between functional and class components in React?
  • Ans. 

    Functional components are simpler and easier to test, while class components have more features and lifecycle methods.

    • Functional components are written as JavaScript functions, while class components are written as ES6 classes.

    • Functional components are stateless and do not have their own internal state, while class components can have state.

    • Functional components do not have lifecycle methods, while class components hav...

  • Answered by AI
  • Q2. What are props in React?
  • Ans. 

    Props are read-only properties passed from a parent component to a child component in React.

    • Props allow data to be passed down the component tree.

    • Props are immutable and cannot be modified by the child component.

    • Props can be used to customize the behavior or appearance of a component.

    • Props are accessed using the dot notation, like this.props.propName.

    • Props can be any type of data, including strings, numbers, objects, o

  • Answered by AI
  • Q3. What is useState() in React?
  • Ans. 

    useState() is a React hook that allows functional components to manage state.

    • useState() is used to declare a state variable in a functional component.

    • It returns an array with two elements: the current state value and a function to update the state.

    • The initial state value is passed as an argument to useState().

    • The state can be updated by calling the update function returned by useState().

    • useState() can be used multiple ...

  • Answered by AI
  • Q4. What are custom hooks in React?
  • Ans. 

    Custom Hooks are reusable functions in React that allow you to extract logic from components.

    • Custom Hooks are functions that start with the word 'use' and can call other Hooks if needed.

    • They are used to share stateful logic between components without using higher-order components or render props.

    • Custom Hooks can be used to handle common tasks like fetching data, managing form state, or subscribing to events.

    • They promot...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions on Javascript mainly. Some output based questions on Javascript were also discussed.

  • Q1. Can you explain hoisting in JavaScript?
  • Ans. 

    Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their scope.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. Does a const variable make the value immutable in JavaScript?
  • Ans. 

    No, const does not make the value immutable.

    • const only makes the variable itself immutable, not the value it holds.

    • For objects and arrays, const prevents reassignment but allows mutation of properties or elements.

    • To make a value truly immutable, you can use Object.freeze() or other techniques.

  • Answered by AI
  • Q3. What are the states of a promise object in JavaScript?
  • Ans. 

    The states of a promise object are pending, fulfilled, or rejected.

    • A promise starts in the pending state.

    • When a promise is resolved, it transitions to the fulfilled state.

    • If a promise encounters an error, it transitions to the rejected state.

    • Once a promise is settled (fulfilled or rejected), it cannot transition to any other state.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical Behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAOodles Technologies Pvt Ltd interview preparation:Topics to prepare for the interview - React, Javascript, HTML, CSS, Web Development, DSATime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Watch all videos of Akshay Saini on youtube. [Namaste JavaScript]
Tip 2 : Practice some output questions from Namaste JavaScript.
Tip 3 : Basic knowledge of React from any source.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Coding Test 

In first round, they ask a dynamic pattern question.

Round 2 - Technical 

(2 Questions)

  • Q1. What is attribute in HTML
  • Ans. 

    An attribute in HTML provides additional information about an element and is used to modify the element's behavior or appearance.

    • Attributes are added to HTML elements using the syntax attribute="value".

    • Attributes can be used to specify things like the size, color, or alignment of an element.

    • Examples of attributes include 'href' in Example and 'src' in .

  • Answered by AI
  • Q2. Constructor in php and use of constructor
  • Ans. 

    Constructor in PHP is a special method used to initialize objects of a class.

    • Constructor is a special method with the same name as the class.

    • It is automatically called when an object is created.

    • Constructors can be used to initialize object properties or perform any necessary setup.

    • Example: class Car { public function __construct() { echo 'Car object created'; }}

  • 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 and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude asked for all company

Round 2 - Coding Test 

One question to find substring of string which has double chars

Round 3 - Technical 

(2 Questions)

  • Q1. Basic oops and sql
  • Q2. Write pandas for dataframe
  • Ans. 

    Pandas is a Python library used for data manipulation and analysis, including creating and working with dataframes.

    • Import the pandas library: import pandas as pd

    • Create a dataframe: df = pd.DataFrame(data)

    • Accessing data in a dataframe: df['column_name']

    • Filtering data in a dataframe: df[df['column_name'] > value]

    • Adding a new column: df['new_column'] = values

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Give angle betweeen hour hand and min hand art 12:20
  • Ans. 

    The angle between the hour hand and minute hand at 12:20 is 10 degrees.

    • Calculate the angle made by the hour hand from 12 o'clock position: (20/60)*30 = 10 degrees

    • Calculate the angle made by the minute hand from 12 o'clock position: (20/60)*360 = 120 degrees

    • Find the difference between the two angles: 120 - 10 = 110 degrees

  • Answered by AI
  • Q2. Basic operating system questions

Interview Preparation Tips

Interview preparation tips for other job seekers - they provide good feeling of friend around you during interview

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Pseudocode problems and 2 coding questions

Round 2 - HR 

(1 Question)

  • Q1. Introduction, family background, logical question of English alphabet
Round 3 - Technical 

(3 Questions)

  • Q1. AI/ML trends, bitcoin info
  • Q2. Java code for finding even number
  • Ans. 

    Java code to find even numbers in an array

    • Iterate through the array and check if each element is divisible by 2

    • Use the modulus operator (%) to check for even numbers

    • Store the even numbers in a separate array or print them out

  • Answered by AI
  • Q3. Basic questions about technologies mentioned in the resume
Round 4 - BU Head 

(4 Questions)

  • Q1. Intro, family background
  • Q2. HTML, CSS, JAVA, CPP code
  • Q3. Logical Questions
  • Q4. Speaking Communication

Interview Preparation Tips

Interview preparation tips for other job seekers - To succeed as a junior software developer at Winjit Technology, focus on continuous learning and adapting to emerging technologies. Demonstrate a strong work ethic, collaborate effectively with your team, and showcase your problem-solving skills. Prioritize communication, both verbal and written, and actively seek feedback to enhance your skills. Stay proactive, show enthusiasm for innovation, and leverage internships or personal projects to bolster your practical experience. Remember, a positive attitude and a willingness to learn will set you apart in your career journey with Winjit Technology.

Skills evaluated in this interview

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

CSS Positioning Questions, Data fetching in React Questions , Asked about CORS Errors

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Design a full frontend page ..

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic questions about your technology
Round 3 - HR 

(1 Question)

  • Q1. About your salary expectation
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 - HR 

(2 Questions)

  • Q1. How are you ?
  • Q2. What is teamwork for you ?
Round 3 - One-on-one 

(1 Question)

  • Q1. What is oop concept
  • Ans. 

    OOP (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation: Objects can hide their internal state and require interaction through methods

    • Inheritance: Objects can inherit attributes and methods from parent objects

    • Polymorphism: Objects can take on different forms o

  • Answered by AI

I applied via Job Portal and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. JWT authentication and authorisation.
Round 2 - Technical 

(1 Question)

  • Q1. Run tasks on Code Sandbox
  • Ans. 

    Code Sandbox allows running tasks for front-end development

    • Open Code Sandbox and create a new project

    • Add necessary dependencies and files

    • Run tasks using npm scripts or command line

    • Examples: build, start, test

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for this interview as they ask you questions you have never heard of like difference between flex and pipe.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Hing

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview mode in Remote access is a suited for long distance travelling Interviewers
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Pattern question has been provided to me

Round 2 - Technical 

(2 Questions)

  • Q1. Write html code for form
  • Ans. 

    HTML code for a basic form

    • Use the <form> tag to create a form

    • Include <input> tags for user input fields

    • Use <button> tag for submit button

  • Answered by AI
  • Q2. Difference between candidate key and foreign key
  • Ans. 

    Candidate key uniquely identifies a record in a table, while foreign key establishes a relationship between two tables.

    • Candidate key is a unique key that can be used to uniquely identify a record in a table.

    • Foreign key is a key that establishes a relationship between two tables.

    • Candidate key can be a primary key or a unique key, while foreign key references a primary key in another table.

    • Example: In a 'students' table,...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software PHP Developer interview:
  • PHP
  • Laravel
Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
MAQ Software Interview Questions
1.9
 • 97 Interviews
View all
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 - ₹10 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.6
Compare

Wipro

3.7
Compare

HCLTech

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