Upload Button Icon Add office photos

Filter interviews by

DevRepublic Full Stack Software Developer Interview Questions and Answers

Updated 19 Aug 2023

DevRepublic Full Stack Software Developer Interview Experiences

1 interview found

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

I was interviewed in Jul 2023.

Round 1 - Telephonic Call 

(5 Questions)

  • Q1. What is Event Loop
  • Ans. 

    Event Loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event Loop is responsible for handling asynchronous operations in JavaScript.

    • It allows for tasks to be queued and executed in a non-blocking manner.

    • Event Loop continuously checks the call stack and the task queue, moving tasks from the queue to the stack when the stack is empty.

    • Example: setTimeout() func...

  • Answered by AI
  • Q2. Event Loop in Node js
  • Ans. 

    Event Loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event Loop is a mechanism that allows Node.js to perform non-blocking I/O operations.

    • It continuously checks the Call Stack for any functions that need to be executed, and the Callback Queue for any callback functions that need to be executed.

    • It prioritizes the execution of I/O operations and callback function...

  • Answered by AI
  • Q3. Features of Node js
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Uses non-blocking, event-driven architecture for high performance

    • Allows for building scalable network applications

    • Has a large ecosystem of open-source libraries and frameworks like Express.js

    • Can be used for real-time web applications with technologies like Socket.io

  • Answered by AI
  • Q4. React Js feature and questions
  • Q5. Mongodb basic questions
Round 2 - Coding Test 

Asked me to build a front end and backend prject

Round 3 - One-on-one 

(1 Question)

  • Q1. Had a chit chat with Technical Head and Lead Developer and asked basic questions about event emiters , sharding , replica set etc etc
Round 4 - HR 

(2 Questions)

  • Q1. Your strengths ?
  • Q2. Your weakness ?

Interview Preparation Tips

Topics to prepare for DevRepublic Full Stack Software Developer interview:
  • Node.Js
  • React.Js
  • Javascript
  • DBMS
Interview preparation tips for other job seekers - Focus on basic fundamentals to crack the interview.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs is based on the four main concepts: Encapsulation, Inheritance, Polymorphism, and Abstraction.

    • Encapsulation is the process of hiding the implementation details from the user.

    • Inheritance is the process of creating a new class from an existing class.

    • Polymorphism is the ability of an object to take on many forms.

    • ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was mostly around Frontend and JavaScript, asked basic questions on javascript. Then they gave me a problem to make form with multiple steps where every step has some form fields, handle state and validations for such form. After building the solution he asked follow up questions like what if form is dynamic.

Round 2 - Technical 

(1 Question)

  • Q1. It was a normal discussion around my past projects and experiences.
Round 3 - HR 

(1 Question)

  • Q1. Genral Discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Which type Technical interive qustion
  • Q2. What is OOPS Conceps ?
  • Ans. 

    OOPS (Object-Oriented Programming) concepts are the principles that define the foundation of object-oriented programming languages.

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

    • Inheritance: Allowing a class (subclass) to inherit properties and behavior from another class (superclass).

    • Polymorphism: The ability of different classes to be treated as instances of a common sup...

  • Answered by AI
  • Q3. DSA and java base
  • Q4. Codding and other of the
  • Q5. Why higher you .
Round 2 - Coding Test 

Java DSA , HTML , CSS , JS , MERN

Interview Preparation Tips

Topics to prepare for Flipkart Mern Full Stack Developer interview:
  • Java
  • HTML
  • Networking
  • Operating Systems
Interview preparation tips for other job seekers - To work with best my abilities and skill in order to benefit my origination also
to be batter other in this competitive time and influential possession in the organization.

I applied via Campus Placement and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How much experince in this filld

Interview Preparation Tips

Interview preparation tips for other job seekers - Majorly a stress test. It lasted for about 1 hour 10 minutes.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 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 - HR 

(5 Questions)

  • Q1. Tell me about your self. Why are you interested in this company/role?
  • Q2. Do you have any questions for us
  • Q3. Greatest professional achievement so far
  • Q4. Short team and long team goals
  • Q5. Your strength & weakness

Interview Preparation Tips

Topics to prepare for Amazon Mern Full Stack Developer interview:
  • Core java SQL
  • SQL
  • MongoDB
  • Git hub
  • Spring Boot
  • JDBC
Interview preparation tips for other job seekers - Self-assessment/ Research/online presence,/follow up......

I was interviewed in Sep 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

11:05am – 12:05pm (IST). What are classes in javascript? how do you integrate js in html.

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Q3. 

    Number of Islands Problem Statement

    Given a non-empty grid of 0s and 1s, determine the number of distinct islands. An island is a collection of '1's (land) connected horizontally, vertically, or diagonall...

Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

12:30pm – 1:30pm (IST). SQL questions What are Aggregate and Scalar functions? What is a Stored Procedure?

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Q2. 

    Container with Most Water Problem Statement

    Given a sequence of 'N' space-separated non-negative integers A[1], A[2], ..., A[i], ..., A[n], where each number in the sequence represents the height of a lin...

Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Easy

5pm – 6pm (IST)

Interview Preparation Tips

Eligibility criteriaNONEFlipkart interview preparation:Topics to prepare for the interview - Data Structures & Algorithms, Dynamic Programming ,Hashing Tree, Graph ,Heap, OOPS, DBMSTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot of questions from Leetcode and Interviewbit
Tip 2 : Go through all theory questions regarding OOPs, DBMS, Networking from GeeksForGeeks
Tip 3 : Go through all the basics SQL queries or must know about any 1 database perfectly.

Application resume tips for other job seekers

Tip 1 : Try to keep it on one page . And never put false things on resume and write only those topics that you have thorough knowledge
Tip 2 : Thorough with the project mentioned and aware of all tech stack used

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2023. There were 4 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 - Aptitude Test 

According to my knowledge

Round 3 - Group Discussion 

About daily internet applications

Round 4 - HR 

(1 Question)

  • Q1. About course Early package

I applied via Referral and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Amazon pay customer service cnt number

Round 2 - Group Discussion 

Customer care number..

Round 3 - One-on-one 

(2 Questions)

  • Q1. Calling" Amazon 091-53-56-47-89- Customer Care number to receive email from trustpilot about your reviews, inspection, tips about businesses and product, ...Calling" Amazon 09153.564.789 .Customer Care num...
  • Q2. Amazon pay customer care number

Interview Preparation Tips

Interview preparation tips for other job seekers - Calling" Amazon 091-53-56-47-89- Customer Care number to receive email from trustpilot about your reviews, inspection, tips about businesses and product, ...Calling" Amazon 09153.564.789 .Customer Care number to receive email from trustpilot about your reviews, inspection, tips about businesses and product, ...
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. I am JaiMangal I live in sirsa haryana

Interview Preparation Tips

Interview preparation tips for other job seekers - I am JaiMangal I live in the
Sirsa haryana

DevRepublic Interview FAQs

How many rounds are there in DevRepublic Full Stack Software Developer interview?
DevRepublic interview process usually has 5 rounds. The most common rounds in the DevRepublic interview process are Resume Shortlist, Telephonic Call and Coding Test.
What are the top questions asked in DevRepublic Full Stack Software Developer interview?

Some of the top questions asked at the DevRepublic Full Stack Software Developer interview -

  1. What is Event L...read more
  2. Event Loop in Node...read more
  3. Features of Node...read more

Tell us how to improve this page.

DevRepublic Full Stack Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Senior PHP Developer
6 salaries
unlock blur

₹4.5 L/yr - ₹6.5 L/yr

SQL Developer
4 salaries
unlock blur

₹3 L/yr - ₹8.4 L/yr

PHP Developer
4 salaries
unlock blur

₹1.6 L/yr - ₹4.8 L/yr

Senior Web Developer
4 salaries
unlock blur

₹4.9 L/yr - ₹10.6 L/yr

Software Developer
3 salaries
unlock blur

₹5.7 L/yr - ₹10 L/yr

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