Upload Button Icon Add office photos

Darwinbox

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Darwinbox Intern Interview Questions and Answers

Updated 9 Jul 2023

Darwinbox Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 19 Apr 2022

I applied via Campus Placement and was interviewed in Oct 2021. 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 Resume tips
Round 2 - Coding Test 

4 questions were asked. Two of them were of medium difficulty and other two were medium to hard level.

Round 3 - Technical 

(1 Question)

  • Q1. Questions from DSA, Sql were asked. There was a coding questions of easy to medium level as well. For few people puzzles were asked.
Round 4 - HR 

(1 Question)

  • Q1. Common HR questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA, solve atleast 3 questions a day and practice for Sql and see some puzzles as well.

Intern Interview Questions & Answers

user image Anonymous

posted on 9 Jul 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed before Jul 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 Resume tips
Round 2 - Coding Test 

Coding round which consists of easy-meduim level questions

Round 3 - Coding Test 

Coding round which consists of DSA questions

Round 4 - One-on-one 

(2 Questions)

  • Q1. Javascript based questions and SQL queries
  • Q2. Projects based questions

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Interview questions from similar companies

Intern Interview Questions & Answers

CodeClouds user image dipnarayan sen

posted on 3 Jan 2025

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

General Computer Science Questions.

Round 2 - Technical 

(3 Questions)

  • Q1. 2NF and 3NF difference
  • Ans. 

    2NF eliminates partial dependencies, while 3NF eliminates transitive dependencies.

    • 2NF eliminates partial dependencies by ensuring all non-key attributes are fully functionally dependent on the primary key.

    • 3NF eliminates transitive dependencies by ensuring that non-key attributes are not dependent on other non-key attributes.

    • Example: In a table with columns A, B, and C where A is the primary key, if B depends on A and C...

  • Answered by AI
  • Q2. Alternative of using loop to print 1 to 100
  • Ans. 

    Using recursion to print numbers from 1 to 100 without a loop

    • Create a recursive function that takes a number as input and prints it

    • Call the function with 1 as the initial input and increment the input by 1 in each recursive call

    • Stop the recursion when the input reaches 100

  • Answered by AI
  • Q3. Delete and Truncate Difference
  • Ans. 

    Delete removes rows from a table while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete operation can be rolled back while truncate operation cannot be rolled back.

    • Delete operation fires triggers on each row deletion while truncate operation does not fire triggers.

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Excel realated questions and answers
  • Q2. Vlookup working formula
  • Ans. 

    Vlookup is a function in Excel used to search for a value in a table and return a corresponding value.

    • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

    • lookup_value: The value to search for in the first column of the table.

    • table_array: The range of cells that contains the data.

    • col_index_num: The column number in the table from which to retrieve the value.

    • range_lookup: Optional. TRUE for approxim...

  • Answered by AI
  • Q3. H lookup formula
  • Ans. 

    HLOOKUP is a function in Excel used to search for a value in the top row of a table and return a value in the same column from a specified row.

    • HLOOKUP stands for Horizontal Lookup.

    • It is used to search for a value in the top row of a table and return a value in the same column from a specified row.

    • Syntax: =HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

    • Example: =HLOOKUP(123, A1:D4, 3, FALSE) will searc...

  • Answered by AI
Round 2 - Assignment 

Assignment 1 ,3 and 3

Round 3 - Assignment 

Payroll realated questions and answers

Interview Preparation Tips

Topics to prepare for PeopleStrong Intern interview:
  • Excel
  • Finance
  • investment
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Focused more on Logics and DSA

Round 2 - HR 

(1 Question)

  • Q1. Just with Formal Questions

Interview Questionnaire 

1 Question

  • Q1. Algorithms, Computer languages, Aptitude & Reasoning
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Based on profile and Job description

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Rectangle Area Calculation

    Given a list of rectangles, where each rectangle is represented by an array of four integers indicating its bottom-left and top-right corners, calculate the total area covered b...

  • Ans. 

    Calculate total area covered by a list of rectangles on a plane.

    • Iterate through each rectangle and calculate its area

    • Check for overlapping areas between rectangles

    • Sum up the total area covered by all rectangles

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. 

    Bit Set Problem Statement

    You are provided with a string, termed as DIGIT_PATTERN, which consists solely of digits. The objective is to identify the first digit that repeats in the sequence. If there's no...

  • Ans. 

    Identify the first repeating digit in a given string of digits.

    • Iterate through the string and keep track of seen digits using a set.

    • Return the first digit that repeats, or -1 if no digit repeats.

    • Time complexity: O(n), where n is the length of the input string.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

  • Ans. 

    Generate and print all possible permutations of a given input string.

    • Use recursion to generate all permutations by swapping characters in the string.

    • Maintain a visited array to keep track of characters already used in a particular permutation.

    • Print each permutation as it is generated.

    • Handle duplicate characters by skipping swapping if the character is already in the current position.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

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 and was interviewed before 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. The interviewer asked Basic SQL and Linux OS-related questions.
Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer asked questions regarding projects and experience.
  • Q2. The interviewer asked some aptitude and logical reasoning questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good organization for freshers and people with no/limited experience.

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Core java concepts
  • Q2. Multithreading questions
  • Q3. Previous project details
  • Ans. 

    Developed a web application for managing customer orders and inventory

    • Used Java and Spring framework for backend development

    • Implemented a responsive user interface using HTML, CSS, and JavaScript

    • Integrated with a relational database for data storage and retrieval

    • Implemented authentication and authorization features for secure access

    • Performed unit testing and bug fixing throughout the development process

  • Answered by AI
  • Q4. Java Programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics and practice coding questions to increase performance and quality of code
Contribute & help others!
anonymous
You can choose to be anonymous

Darwinbox Interview FAQs

How many rounds are there in Darwinbox Intern interview?
Darwinbox interview process usually has 4 rounds. The most common rounds in the Darwinbox interview process are Coding Test, Resume Shortlist and Technical.
How to prepare for Darwinbox Intern 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 Darwinbox. The most common topics and skills that interviewers at Darwinbox expect are Sales, Audit Compliance, CRM, Compliance and Data Mining.
What are the top questions asked in Darwinbox Intern interview?

Some of the top questions asked at the Darwinbox Intern interview -

  1. Questions from DSA, Sql were asked. There was a coding questions of easy to med...read more
  2. Javascript based questions and SQL quer...read more
  3. Common HR questions were ask...read more

Recently Viewed

INTERVIEWS

Darwinbox

No Interviews

JOBS

Darwinbox

No Jobs

JOBS

Accenture

No Jobs

SALARIES

AstraZeneca

SALARIES

Darwinbox

SALARIES

AstraZeneca

SALARIES

Darwinbox

DESIGNATION

INTERVIEWS

Granules India

No Interviews

INTERVIEWS

OPPO

No Interviews

Tell us how to improve this page.

Darwinbox Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Intern Interview Questions from Similar Companies

View all

Darwinbox Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Product Specialist
74 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
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
50 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

3.8
Compare

Sumtotal Systems

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