Upload Button Icon Add office photos

Darwinbox

Compare button icon Compare button icon Compare

Filter interviews by

Darwinbox Software Engineer Level 1 Interview Questions and Answers

Updated 12 Apr 2022

Darwinbox Software Engineer Level 1 Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Mar 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 - Coding Test 

It consisted of 16 MCQs and 4 coding Questions of mid difficulty.

Round 3 - Technical 

(1 Question)

  • Q1. In this round I was asked to explain about the projects that I have done and about the work I am involved with in my organization. Later it started on with a few Data Structure Coding questions, Algorithms...
Round 4 - Technical 

(1 Question)

  • Q1. The Second Technical started of with SQL queries and moved to web development related questions and the level of interview was mid. Questions are mainly focused about the project that I have done and its i...

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good with the basics of CS and have good projects then its just a cake wal.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Algorithms, Computer languages, Aptitude & Reasoning

Analyst Interview Questions & Answers

Sakon user image Anonymous

posted on 14 Jan 2021

Interview Questionnaire 

1 Question

  • Q1. Mostly about my job profile at my previous organisation. Some questions related to the company profile.

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 6 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 - Coding Test 

Hacker rank test on Python, SQL and Aptitude , English

Round 3 - Technical 

(2 Questions)

  • Q1. Technical from Hiring Manager
  • Q2. How many Surf excel are consuming in Gurgaon area on daily basis Advance excel Questions. Python and SQL basics
Round 4 - Technical 

(1 Question)

  • Q1. Technical -Senior Manager-Product Management
Round 5 - Technical 

(1 Question)

  • Q1. HOD Product Management- 1: 1 Techno Managerial -
Round 6 - HR 

(1 Question)

  • Q1. Salary Discussion and Hr rounds -general question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific.
They more focused on a problem What and How.
be ready to answer any challenge based on technical or Case studies

Analyst Interview Questions & Answers

Sakon user image Anonymous

posted on 26 Aug 2021

I applied via Recruitment Consultant and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Knowledge on Telecom industry and MS excel
  • Q2. What is vlookup, conditional formatting and pivot table?
  • Ans. 

    Vlookup, conditional formatting and pivot table are Excel functions used for data analysis and organization.

    • Vlookup is used to search for a specific value in a table and return a corresponding value from another column.

    • Conditional formatting allows users to format cells based on certain criteria, such as highlighting cells that meet a certain value or condition.

    • Pivot tables are used to summarize and analyze large amoun...

  • Answered by AI
  • Q3. What are important aspects in Telecommunication industry?
  • Ans. 

    Important aspects in Telecommunication industry include network infrastructure, technology advancements, customer service, and regulatory compliance.

    • Network infrastructure: The backbone of telecommunication industry that enables communication between devices and people.

    • Technology advancements: Constantly evolving technology that improves communication quality and speed.

    • Customer service: Essential for customer satisfact...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about general information about Telecommunications industry and Ms excel

Analyst Interview Questions & Answers

Sakon user image Nikita Soni

posted on 14 Jun 2022

I applied via Referral and was interviewed before Jun 2021. There were 5 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 - Aptitude Test 

English, maths, logical reasoning

Round 3 - HR 

(2 Questions)

  • Q1. Tell.me something about yourself
  • Q2. What is the expected salary
Round 4 - Technical 

(3 Questions)

  • Q1. What was the work you were doing in previous company (process knowledge)
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in next few years
Round 5 - HR 

(2 Questions)

  • Q1. About the notice period
  • Q2. About the salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prominent in technical round
Be good in handling Excel and Ms office

Analyst Interview Questions & Answers

Sakon user image Anonymous

posted on 14 Sep 2023

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

I applied via Naukri.com and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to work in this company
Round 3 - Aptitude Test 

General aptitude with some ms excel questions

Round 4 - Technical 

(1 Question)

  • Q1. Excel questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basic telecom terms and ms excel .

Analyst Interview Questions & Answers

Sakon user image Anonymous

posted on 24 Dec 2024

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

I applied via Walk-in and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Past experience

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. 

    Longest Consecutive Sequence Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. System architecture
  • Q2. Dict ,list and other questions

Darwinbox Interview FAQs

How many rounds are there in Darwinbox Software Engineer Level 1 interview?
Darwinbox interview process usually has 4 rounds. The most common rounds in the Darwinbox interview process are Technical, Resume Shortlist and Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

PeopleStrong Interview Questions
3.4
 • 50 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
CodeClouds Interview Questions
4.5
 • 35 Interviews
PubMatic Interview Questions
3.9
 • 30 Interviews
Sakon Interview Questions
3.1
 • 29 Interviews
SirionLabs Interview Questions
3.8
 • 23 Interviews
View all
Product Specialist
76 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
71 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Consultant
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Manager
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Darwinbox with

PeopleStrong

3.4
Compare

SAP SuccessFactors

5.0
Compare

greytHR

4.0
Compare

Sumtotal Systems

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