Upload Button Icon Add office photos

Filter interviews by

Divami Design Labs Interview Questions and Answers

Updated 2 Dec 2024

Divami Design Labs Interview Experiences

Popular Designations

5 interviews found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. General manual questions
  • Q2. Scenarios based manual testing questions
Round 2 - Technical 

(1 Question)

  • Q1. General Manual Testing Questions
Round 3 - HR 

(1 Question)

  • Q1. Package and all but they dont give what you ask for they only give what they want to give

Interview Preparation Tips

Interview preparation tips for other job seekers - Waste of time to even consider this Company, Poor HR team, no work life balance as per what I heard from working employees, they wont pay you extra but without even requiring to work on weekends they simply ask you to work on weekends too

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

What is your favourite product and How would you improve it?

Product Owner Interview Questions asked at other Companies

Q1. What are the prioritization techniques you use to arrange backlog items?
View answer (3)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They will give one coding question and you have to answer that on.

Round 2 - Technical 

(1 Question)

  • Q1. They will ask you several basic questions related to react or angular if you have applied for front end dev.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (209)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

It contains the medium aptitude questions

Round 2 - Coding Test 

Basic code question like based on math

Round 3 - Coding Test 

It contains dp question and graphs

Round 4 - Technical 

(2 Questions)

  • Q1. Algorithm you know
  • Ans. 

    Merge Sort algorithm

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves

  • Answered by AI
  • Q2. Giving some coding questions
Round 5 - HR 

(2 Questions)

  • Q1. Things about you
  • Q2. Willing to relocate

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (209)

Divami Design Labs interview questions for popular designations

 Software Engineer

 (2)

 Software Testing Engineer

 (1)

 Product Owner

 (1)

Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2021

I applied via gmail group and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Diff b/w smoke & sanity
  • Ans. 

    Smoke testing is a broad test to check if the software is stable enough for further testing. Sanity testing is a narrow test to check if the specific functionality is working as expected.

    • Smoke testing is performed to ensure that the critical functionalities of the software are working.

    • Sanity testing is performed to ensure that the recent changes or fixes have not adversely affected the functionality.

    • Smoke testing is a ...

  • Answered by AI
  • Q2. Priority & severity diff
  • Q3. Bug life cycle
  • Q4. Questions on previous company project
  • Q5. Types of testing functional-non functional
  • Ans. 

    Functional testing focuses on testing the functionality of a system, while non-functional testing focuses on testing other aspects like performance and usability.

    • Functional testing verifies if the system meets the specified functional requirements.

    • Non-functional testing includes performance testing, usability testing, security testing, etc.

    • Functional testing ensures that the system works as intended, while non-function...

  • Answered by AI
  • Q6. Agile,scrum, sprint

Interview Preparation Tips

Interview preparation tips for other job seekers - just learn all the common questions & attend the interview with calm mind that's it

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions from core java deep concept, kotlin deep concept, android app I have made, and the question from android sdk related things.

Interview Preparation Tips

Interview preparation tips for other job seekers - There was 3 round . 2 Technical and one H.R round.

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

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

Interview Questionnaire 

7 Questions

  • Q1. Nodejs architecture?
  • Q2. What is event loop?
  • Ans. 

    Event loop is a mechanism that allows JavaScript to perform non-blocking I/O operations.

    • Event loop is a part of JavaScript runtime that continuously checks the call stack and the task queue.

    • It executes the tasks in the task queue one by one, and once the task is completed, it is removed from the queue.

    • Event loop ensures that the JavaScript code does not block the main thread and allows for asynchronous programming.

    • Exam...

  • Answered by AI
  • Q3. Mongodb queries basic
  • Q4. Basic javascript questions
  • Q5. Difference between var and let
  • Ans. 

    var is function-scoped while let is block-scoped.

    • var declarations are hoisted to the top of their scope while let declarations are not.

    • var can be redeclared in the same scope while let cannot.

    • let is preferred over var for better code readability and avoiding unexpected behavior.

    • Example: var x = 10; if (true) { var x = 20; } console.log(x); // Output: 20 let y = 10; if (true) { let y = 20; } console.log(y

  • Answered by AI
  • Q6. What is prototype in javascript?
  • Ans. 

    Prototype is a property of an object that allows adding new properties and methods to an existing object.

    • Prototype is a blueprint for creating objects.

    • It is used to add new properties and methods to an existing object.

    • All objects in JavaScript have a prototype property.

    • The prototype property is used to share properties and methods between objects.

    • Modifying the prototype of an object affects all instances of that object

  • Answered by AI
  • Q7. Javascript is multi threaded or single threaded?
  • Ans. 

    Javascript is single threaded.

    • Javascript has a single call stack and event loop.

    • It can handle asynchronous operations through callbacks and promises.

    • Web workers can be used for multi-threading in Javascript.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions mainly regarding to javascript

Skills evaluated in this interview

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

Interview Questionnaire 

2 Questions

  • Q1. Brief yourself
  • Q2. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Be prepared for what you have experienced, Be Confident, and if you do not know the answer to the question be strait forward.

I applied via Campus Placement and was interviewed before May 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Ds related basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview with logical questions and ds related questions

Divami Design Labs Interview FAQs

How many rounds are there in Divami Design Labs interview?
Divami Design Labs interview process usually has 2-3 rounds. The most common rounds in the Divami Design Labs interview process are Coding Test, Technical and HR.
How to prepare for Divami Design Labs 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 Divami Design Labs. The most common topics and skills that interviewers at Divami Design Labs expect are Javascript, React.Js, Information Technology, Product Engineering and UI Development.
What are the top questions asked in Divami Design Labs interview?

Some of the top questions asked at the Divami Design Labs interview -

  1. diff b/w smoke & san...read more
  2. types of testing functional-non functio...read more
  3. Algorithm you k...read more

Tell us how to improve this page.

Divami Design Labs Interview Process

based on 7 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
Pepper Square Interview Questions
2.2
 • 2 Interviews
Think Design Interview Questions
3.7
 • 1 Interview
Ungrammary Interview Questions
3.8
 • 1 Interview
View all

Divami Design Labs Reviews and Ratings

based on 34 reviews

3.3/5

Rating in categories

3.8

Skill development

2.6

Work-life balance

3.3

Salary

2.9

Job security

3.4

Company culture

3.4

Promotions

3.2

Work satisfaction

Explore 34 Reviews and Ratings
Node.js Professional

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Strategic Account Manager

Hyderabad / Secunderabad

8-12 Yrs

Not Disclosed

Sales development Representative

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
52 salaries
unlock blur

₹3.7 L/yr - ₹15 L/yr

UX Engineer
15 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

QA Engineer
10 salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹7.2 L/yr - ₹11.8 L/yr

Software Developer
7 salaries
unlock blur

₹4.8 L/yr - ₹12 L/yr

Explore more salaries
Compare Divami Design Labs with

Frog Design

4.1
Compare

Think Design

3.7
Compare

Robosoft Technologies

3.4
Compare

NetBramha Studios

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