Upload Button Icon Add office photos

Filter interviews by

DailyObjects Full Stack Developer Interview Questions and Answers

Updated 28 Sep 2024

DailyObjects Full Stack Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. What is binary search
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide and conquer approach

    • Compares target value with middle element of array

    • If target value is less, search left half; if greater, search right half

    • Repeat process until target value is found or subarray is empty

  • Answered by AI
  • Q2. What are the methods for http request
  • Ans. 

    Methods for HTTP request include GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD.

    • GET - Retrieve data from a server

    • POST - Send data to a server to create/update a resource

    • PUT - Update a resource on the server

    • DELETE - Remove a resource from the server

    • PATCH - Update a resource partially

    • OPTIONS - Get information about the communication options available for a resource

    • HEAD - Retrieve headers from a server without the body cont

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Apna Jobs and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What about SDLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software developers to design, develop, test, and deploy software applications.

    • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful development of a software application.

    • Examples of SDLC models include Wat...

  • Answered by AI
  • Q2. What is React, and how does it relate to JavaScript?
  • Ans. 

    React is a JavaScript library for building user interfaces, commonly used for creating interactive web applications.

    • React is a front-end library developed by Facebook.

    • It allows developers to create reusable UI components.

    • React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

    • React can be used with JavaScript to create dynamic and interactive web applications.

    • React compone...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared before an interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Impliment counter using closure in js
  • Ans. 

    Implement a counter using closure in JavaScript.

    • Create a function that returns another function which increments a counter variable.

    • The counter variable should be defined in the outer function's scope and only accessible to the inner function.

    • Each time the inner function is called, increment the counter variable and return its value.

  • Answered by AI
  • Q2. Explain promises, promise.all(), impliment binary search
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation. promise.all() is a method that takes an array of promises and returns a single promise that resolves when all of the promises have resolved.

    • Promises are used in JavaScript to handle asynchronous operations.

    • promise.all() takes an array of promises and returns a single promise that resolves when all promises in the array ha...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on kafka, cache invalidation, diff b/w authentication and authorization

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up basics of js and microservices

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions

I was interviewed in Apr 2022.

Round 1 - Coding Test 

Round duration - 75 minutes
Round difficulty - Medium

Test Comprises of 3 coding questions and some MCQs

Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

2 coding questions of (1 easy and 1 medium level) on hackerrank code-pair with the Interviewer

Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This Round was based on CS fundamentals and One coding question was there as a Code-pair.

  • 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...

  • Ans. Brute Force

    For every element in the array, we will run a loop on its right side. As soon as we find an element on its right side which is greater than it, we will break the loop, assign it as the NGE of this element, move forward, and do the same for the next element.

    Space Complexity: O(1)Explanation:

    O(1)

     

    No extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2),  Where N is the number of elements ...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chandigarh Group of Colleges (CGC), Landran. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaClearwater Analytics interview preparation:Topics to prepare for the interview - DSA, Java, OOPS, Microservices, REST APITime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Require coding skills to pass the interview. 
Tip 2 : Brush up on Java Skills
Tip 3 : Brush up on OOPS

Application resume tips for other job seekers

Tip 1 : Keep it to one page
Tip 2 : Mention relevant skills as per the job

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Apna Jobs and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What about SDLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software developers to design, develop, test, and deploy software applications.

    • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful development of a software application.

    • Examples of SDLC models include Wat...

  • Answered by AI
  • Q2. What is React, and how does it relate to JavaScript?
  • Ans. 

    React is a JavaScript library for building user interfaces, commonly used for creating interactive web applications.

    • React is a front-end library developed by Facebook.

    • It allows developers to create reusable UI components.

    • React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

    • React can be used with JavaScript to create dynamic and interactive web applications.

    • React compone...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared before an interview.

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Total of 8 questions:

4 MCQ(oops and expected output type questions) + other 2 were coding questions, out of which one is some class implementation question.

  • Q1. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    I solved it using a hashmap. It's a pretty standard problem and can also be found easily on the internet.

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round was with the USA team, the panel consisted of 2 members. It took place at around 9 PM IST. The interviewer's focus was on approach.

  • Q1. 

    Sort an Array in Wave Form

    You are given an unsorted array ARR. Your task is to sort it so that it forms a wave-like array.

    Input:

    The first line contains an integer 'T', the number of test cases.
    For ea...
  • Ans. 

    Sorted the array and then swapped the adjacent elements in groups of size 2.

  • Answered Anonymously
  • Q2. 

    Convert a Number to Words

    Given an integer number num, your task is to convert 'num' into its corresponding word representation.

    Input:

    The first line of input contains an integer ‘T’ denoting the number o...
  • Ans. 

    I tried to use hashmap to store some values as a part of pre-processing and then build up some approach, couldn't code it completely

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Easy

It was a managerial round. The position of the person taking the interview was of a technical architect. As was informed by the recruiter, previously he was a technical architect at Amazon.

  • Q1. How does Facebook store comments in its database?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in NoidaEligibility criteriaShortlisting was done on the basis of coding test.Clearwater Analytics interview preparation:Topics to prepare for the interview - Data Structures, Algorithm Design, DBMS, Object Oriented Design, Machine LearningTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice the most frequent and most common questions DSA questions asked in companies like Amazon, Microsoft.
Tip 2 : Focus on solving the questions on your own as much as you can. 
Tip 3 : Don't waste your time on the number of questions while compromising quality.
Tip 4 : Do mock interviews with your friend if it's been a long since you have given the interview.
Tip 5 : For virtual interviews, always have a backup of data(you may use mobile data if Wi-Fi goes out). While during an interview try to maintain eye contact every now and then.
Tip 6 : Keep your resume short to 1 page and have far/good knowledge of the tech stack you have mentioned

Application resume tips for other job seekers

Tip 1 : Keep it short to 1 page
Tip 2 : Prepare it well.
Tip 3 : Focus more on the problem and the solution. Rather than tools used to solve the problem

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

- simple basic ios questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked DSA array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well DSA and code

DailyObjects Interview FAQs

How many rounds are there in DailyObjects Full Stack Developer interview?
DailyObjects interview process usually has 1 rounds. The most common rounds in the DailyObjects interview process are Technical.
What are the top questions asked in DailyObjects Full Stack Developer interview?

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

  1. what are the methods for http requ...read more
  2. what is binary sea...read more

Tell us how to improve this page.

DailyObjects Full Stack Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
3.1
 • 48 Interviews
Tokopedia Interview Questions
4.1
 • 27 Interviews
Shaadi.com Interview Questions
3.4
 • 27 Interviews
HealthKart Interview Questions
3.9
 • 25 Interviews
Meritto Interview Questions
3.7
 • 22 Interviews
Furlenco Interview Questions
3.3
 • 20 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
Nestaway Interview Questions
4.0
 • 17 Interviews
View all
Graphic Designer
5 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Assistant Manager Operations
4 salaries
unlock blur

₹4.7 L/yr - ₹5.8 L/yr

Senior Graphic Designer
4 salaries
unlock blur

₹8.2 L/yr - ₹10 L/yr

Digital Marketing Manager
4 salaries
unlock blur

₹14 L/yr - ₹15 L/yr

Front end Developer
4 salaries
unlock blur

₹3 L/yr - ₹9.8 L/yr

Explore more salaries
Compare DailyObjects with

MagicPin

3.1
Compare

HealthKart

3.9
Compare

Nestaway

4.0
Compare

Awign Enterprises

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