Upload Button Icon Add office photos

Darwinbox

Compare button icon Compare button icon Compare

Filter interviews by

Darwinbox Sr. Content Specialist Interview Questions and Answers

Updated 19 May 2022

Darwinbox Sr. Content Specialist Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Apr 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 - Technical 

(1 Question)

  • Q1. What's your editing style?
Round 3 - Assignment 

A comprehensive article about 1000 words

Round 4 - One-on-one 

(1 Question)

  • Q1. Why do you want to work with Darwinbox?

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you read each and everything related to the company and thoroughly understand the problem Darwinbox is solving. Read about HR and HR Tech. Keep your wits about since in the third round you may be asked to take a spot creativity test where you have to come up with an ad copy while on the call.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Darwinbox?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About invoicing, GL process, P2P.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prudent with you MS Excell skills , it will be required at your job too.

Sr. Content Specialist Interview Questions Asked at Other Companies

Q1. Server making and how we save data from thept issue.
Q2. How do you troubleshoot network problems?
Q3. How do you approach IT-related tasks?

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is it that makes you more preferable than others to be hired by an organisation?
  • Q2. What makes you look for this work opportunity?

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence and the tone of one's voice play key role in getting through this, besides of course the reply you make.

I applied via Referral and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. It is a contract management company so it will depend for which role you are going to appear for the interview. So I was asked about the contract terms like SLA, KPI service levels, etc.
  • Q2. I just googled all the details and gave the perfect answers.
  • Q3. Why do you want to join Sirion?
  • Q4. Just because of experience in contract management and has a good career.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident whenever you are facing an interview. Don't lie about your previous experience it will lead to a bad image on the interviewer.

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

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. MS EXCEL test
  • Q2. Invoicing related question
  • Q3. Contract life cycle related questions.
  • Q4. Personality related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your existing profile, process knowledge , basic concepts etc.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2022. There were 3 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 - Contract review assessment 

(1 Question)

  • Q1. Written test: contract review
Round 3 - One-on-one 

(1 Question)

  • Q1. Thorough knowledge of all contract clauses

Interview Preparation Tips

Interview preparation tips for other job seekers - Being a lawyer apply only if you keen to learn technical stuff and all because the work is more related to technology as compared to your legal contracts knowledge.
Are these interview questions helpful?

I applied via Walk-in and was interviewed before Sep 2021. There were 3 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 - Technical 

(1 Question)

  • Q1. They look for your skills
Round 3 - HR 

(1 Question)

  • Q1. About your salary exceptations

Interview Preparation Tips

Topics to prepare for Netenrich Technologies Analyst interview:
  • Networking
  • ITIL
  • AWS
  • Azure
Interview preparation tips for other job seekers - Keep confidence, good communication skills

I appeared for an interview 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 Sr. Content Specialist interview?
Darwinbox interview process usually has 4 rounds. The most common rounds in the Darwinbox interview process are Resume Shortlist, Technical and Assignment.

Tell us how to improve this page.

Interview Questions from Similar Companies

CodeClouds Interview Questions
4.4
 • 42 Interviews
Grey Orange Interview Questions
3.2
 • 40 Interviews
Mobileum Interview Questions
3.3
 • 38 Interviews
SirionLabs Interview Questions
3.8
 • 26 Interviews
SOTI Interview Questions
3.2
 • 24 Interviews
Replicon Interview Questions
3.8
 • 21 Interviews
FinThrive Interview Questions
3.7
 • 21 Interviews
View all
Accounts Manager
68 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Customer Success Manager
65 salaries
unlock blur

₹8.7 L/yr - ₹30 L/yr

Customer Success Consultant
59 salaries
unlock blur

₹6.8 L/yr - ₹16.5 L/yr

Payroll Associate
52 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Software Engineer
49 salaries
unlock blur

₹7.9 L/yr - ₹14.8 L/yr

Explore more salaries
Compare Darwinbox with

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

CodeClouds

4.4
Compare

Grey Orange

3.2
Compare
write
Share an Interview