Upload Button Icon Add office photos

Filter interviews by

Dentsu Webchutney Interview Questions and Answers

Updated 7 Dec 2024

Dentsu Webchutney Interview Experiences

Popular Designations

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Can you do codeing individually?

Technical Architect Interview Questions asked at other Companies

Q1. How to manage clients, how to handle critical issues with example
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Previous Work Experience
  • Q2. Media buying and scheduling

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thoroughly prepared when you do the work .

Finance Manager Interview Questions asked at other Companies

Q1. What are the major adjustments need to be done while finalization of Accounts ?
View answer (2)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. How meny days working, and working hours
  • Ans. 

    The number of working days and working hours for a Software Developer.

    • Software Developers typically work 5 days a week.

    • The standard working hours for Software Developers are 8 hours per day.

    • However, the actual number of working days and hours may vary depending on the company and project requirements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - He was asking more then technical question, interviewer and hr are good person, it means helpfull.

Interview Questionnaire 

1 Question

  • Q1. Are uu an experience holder ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything is fine nd gud.

I applied via Campus Placement and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Regarding my previous experience.
  • Q2. Regarding my background

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest

Interview Questionnaire 

4 Questions

  • Q1. Explain Network Layers?
  • Ans. 

    Network layers are a hierarchical way of organizing communication protocols.

    • Network layers provide a modular approach to networking.

    • Each layer has a specific function and communicates with adjacent layers.

    • The OSI model has 7 layers, while the TCP/IP model has 4 layers.

    • Examples of layers include the physical layer, data link layer, network layer, transport layer, and application layer.

  • Answered by AI
  • Q2. What is a Dead Lock?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.

    • Occurs in multi-threaded/multi-process environments

    • Can lead to system freeze or crash

    • Prevention techniques include resource ordering and timeouts

    • Example: Process A holds resource X and waits for resource Y, while Process B holds resource Y and waits for resource X

  • Answered by AI
  • Q3. Explain Paging and Segmentation
  • Ans. 

    Paging and Segmentation are memory management techniques used by operating systems.

    • Paging divides memory into fixed-size pages and stores them in physical memory.

    • Segmentation divides memory into logical segments and stores them in physical memory.

    • Paging allows for efficient use of physical memory and reduces fragmentation.

    • Segmentation allows for protection and sharing of memory between processes.

    • Examples of operating s...

  • Answered by AI
  • Q4. Pirates of different ages have a treasure of 100 gold coins. On their ship, they decide to split the coins using this scheme: The oldest pirate proposes how to share the coins, the OTHER pirates (not inc...

Interview Preparation Tips

Round: Test
Experience: It would quite a simple test, covering basic questions from general mathematics and algebra
Tips: Practice "Aptitude" on daily basis

Round: Technical Interview
Experience: Technical Interview in sapient will be quite related to understand of your basic concepts. The round also includes Puzzles. Try Practising some random puzzles from internet.
Tips: Be active and Interactive. Even, if you do not know the answer, try explaining your approach. That would get you marks.

Round: HR Interview
Experience: The HR carries larger wait-age in Sapient. Do not panic. He will give you enough time to settle down by asking background questions. He will only try to analyse the kind of person you are. Be true to yourself and your are sure to be successful

Skills: Basic Concepts of Launguages, Operating System, Networks
College Name: NIT JALANDHAR

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Technical sections had questions from almost all the sections through AMCAT(C, C++, DBMS, DS, OS)(level :moderate)Quantitative aptitude’s questions were good.. All were almost of R. S. Aggarwal level though few exceptions were there tooLogical reasoning and verbal ability was good.. Some questions were tough.

Round: HR Interview
Experience: Overall enjoyed. But not selected because of my less market knowledge.

College Name: NA

Interview Questionnaire 

13 Questions

  • Q1. Indroduce yourself ?
  • Ans. 

    I am a software developer with experience in various programming languages and frameworks.

    • Proficient in Java, C++, and Python

    • Familiar with web development using HTML, CSS, and JavaScript

    • Experience with database management systems such as MySQL and MongoDB

    • Strong problem-solving and analytical skills

    • Worked on projects involving machine learning and artificial intelligence

  • Answered by AI
  • Q2. Difference between method overloading and methode overriding ?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a subclass method with the same name and parameters as a superclass method.

    • Method overloading is used to provide different ways of calling the same method with different parameters.

    • Method overriding is used to provide a specific implementation of a method in a subclass that is already defined in the su...

  • Answered by AI
  • Q3. Difference between switch case and if else statement?
  • Ans. 

    Switch case is used for multiple conditions while if else is used for binary conditions.

    • Switch case is faster than if else for multiple conditions.

    • If else can handle complex conditions while switch case cannot.

    • Switch case can only compare values of the same data type.

    • If else can handle null values while switch case cannot.

    • Example: switch (day) { case 1: console.log('Monday'); break; case 2: console.log('Tuesday'); brea...

  • Answered by AI
  • Q4. What is interface and abstract class?
  • Ans. 

    Interface and abstract class are both used for abstraction in object-oriented programming.

    • An interface is a collection of abstract methods that define a contract for a class to implement.

    • An abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes can have non-abstract methods and instance variables.

    • An example of a...

  • Answered by AI
  • Q5. Whats is polymorphisom?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A shape class can have multiple subclasses like circle, square, etc. and all can be treated as shapes.

    • Example: A method can have different implementations in different classes but with the sa

  • Answered by AI
  • Q6. What is inherritance ?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in writing new code.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class inherits all the properties and methods of the parent class and can also add its ...

  • Answered by AI
  • Q7. Default case in switch case
  • Ans. 

    Default case in switch case statement

    • Default case is executed when no other case matches the switch expression

    • It is optional and can be placed anywhere in the switch statement

    • It is often used to handle unexpected input or errors

    • It should always be the last case in the switch statement

  • Answered by AI
  • Q8. Introduce yourself apart from resume?
  • Ans. 

    I am a passionate software developer with a strong background in web development and a love for problem-solving.

    • Experienced in HTML, CSS, JavaScript, and various web development frameworks

    • Proficient in backend development using languages like Java, Python, and Node.js

    • Familiar with database management systems such as MySQL and MongoDB

    • Strong problem-solving skills and ability to work well in a team environment

  • Answered by AI
  • Q9. What is your weaknesses ?
  • Ans. 

    I tend to get overly focused on details, which can sometimes slow down my progress.

    • I have a tendency to spend too much time on perfecting small details

    • I sometimes struggle with prioritizing tasks due to my focus on details

    • I am working on improving my time management skills to balance detail-oriented work with efficiency

  • Answered by AI
  • Q10. Do you have any offer from any other company ?
  • Ans. 

    Yes, I have received offers from two other companies.

    • Received offers from Company A and Company B

    • Currently evaluating all offers to make an informed decision

    • Considering factors like company culture, growth opportunities, and compensation

  • Answered by AI
  • Q11. Which company would you like to join apart from sapient ?
  • Ans. 

    I would like to join Google because of their innovative projects and work culture.

    • Google is known for its cutting-edge technology and innovative projects.

    • They have a strong focus on employee well-being and work-life balance.

    • Google offers opportunities for career growth and development.

    • The company has a diverse and inclusive work culture.

    • Google is a leader in the tech industry with a global presence.

  • Answered by AI
  • Q12. Have you ever worked in a team?
  • Ans. 

    Yes, I have worked in multiple teams in various projects.

    • Worked in a team of developers to create a new software application

    • Collaborated with designers, testers, and project managers to meet project deadlines

    • Participated in daily stand-up meetings to discuss progress and roadblocks

  • Answered by AI
  • Q13. 8 metals bolls are similar ?
  • Ans. 

    Yes, they are similar.

    • All 8 metal balls are of the same material.

    • They have the same size and weight.

    • They have the same physical properties.

    • They are interchangeable in any given situation.

  • Answered by AI

Interview Preparation Tips

College Name: NIT Meghalaya

Skills evaluated in this interview

I appeared for an interview before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions on Java and data structures with few analytics questions
  • Q2. Basic questions

Interview Preparation Tips

Round: Test
Experience: 1 minute for each question. Completely technical round with questions on Java, algorithm and data structures
Duration: 1 hour 30 minutes
Total Questions: 90

Round: HR Interview
Experience: They ask about your interest, your hobbies and once you are done with this they will ask you questions on the hobbies you previously claimed you like.

Skills: Java Programming
College Name: Thapar University, Patiala

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between C and C++?
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) which C does not have.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is the difference between for and while loop?
  • Ans. 

    For loop is used for iterating over a sequence while while loop is used for iterating until a condition is met.

    • For loop is used when the number of iterations is known beforehand

    • While loop is used when the number of iterations is not known beforehand

    • For loop is faster than while loop for iterating over a sequence

    • While loop is useful for iterating until a specific condition is met

    • For loop can be used with range() functio...

  • Answered by AI
  • Q3. Write a program to add two numbers without using + operator
  • Q4. How to you reverse a string without using any looping and inbuilt functions?
  • Ans. 

    To reverse a string without using any looping and inbuilt functions, we can use recursion.

    • Create a function that takes a string as input.

    • If the length of the string is 0 or 1, return the string.

    • Otherwise, call the function recursively with the substring starting from the second character and concatenate the first character at the end.

    • Return the reversed string.

    • Example: reverseString('hello') returns 'olleh'.

  • Answered by AI
  • Q5. How many queues will you use to implement a priority queue?
  • Ans. 

    A priority queue can be implemented using a single queue or multiple queues.

    • One approach is to use a single queue and assign priorities to elements using a separate data structure.

    • Another approach is to use multiple queues, each representing a different priority level.

    • For example, if there are three priority levels, three queues can be used to implement the priority queue.

  • Answered by AI
  • Q6. Which datastructure would you use to implement an heteregenous array?
  • Ans. 

    An array of objects can be used to implement a heterogeneous array.

    • Each element in the array can be an object that represents a different data type.

    • The objects can have different properties and methods based on their respective data types.

    • For example, an element can be an object representing a string with a 'value' property and a 'length' method.

  • Answered by AI
  • Q7. Tell me about yourself?
  • Q8. Describe your project?
  • Ans. 

    Developed a web-based inventory management system for a retail company.

    • Used HTML, CSS, and JavaScript for the front-end development.

    • Implemented a RESTful API using Node.js and Express for the back-end.

    • Utilized a MySQL database to store and manage inventory data.

    • Implemented features like product search, order management, and reporting.

    • Ensured data security and user authentication using encryption and JWT.

    • Collaborated wi...

  • Answered by AI
  • Q9. You are given a match-box and two candles of equal size, which can burn 1 hour each. You have to measure 90 minutes with these candles. (There is no scale or clock). How do you do?
  • Q10. You have 8 balls which are identical(completely). You are given a weighing scale. How many times would you measure to get the odd ball out?
  • Q11. Three friends rent a room for Rs.30 by paying Rs.10 each. The owner decides to give them a discount Rs.5 and gives it to the broker. The broker who a cunning man takes Rs.2. and returns one rupee to each ...
  • Ans. 

    The missing rupee is not actually missing. The calculation is misleading and does not account for the total amount paid.

    • The initial amount paid by each person was Rs.10, totaling Rs.30.

    • The owner gave them a discount of Rs.5, so they paid Rs.25 in total.

    • The broker took Rs.2, leaving them with Rs.23.

    • When the broker returned Rs.1 to each person, they each received Rs.1 back, totaling Rs.3.

    • So, the total amount paid by the ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Let me share my interview process with Sapient. As I did not find any helpful papers before attending interview.The initial test was amcat test, which consisted of aptitude, english comprehension(which was annoying because they ask a lot of unknown word meanings), C and C++ basic concepts. I cleared that test.

Round: Technical Interview
Experience: There are 2 interviews round
1) Technical
2) HR

General Tips: Bond: 1.5 yearEligibility Criteria : Greater than 6.5 CGPA
Skills: C++, Java, Algorithm
College Name: NA
Motivation: Sapient, Trust me it’s an awesome company .Be strong in technical area.

Skills evaluated in this interview

Dentsu Webchutney Interview FAQs

How many rounds are there in Dentsu Webchutney interview?
Dentsu Webchutney interview process usually has 1 rounds. The most common rounds in the Dentsu Webchutney interview process are Technical.
How to prepare for Dentsu Webchutney 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 Dentsu Webchutney. The most common topics and skills that interviewers at Dentsu Webchutney expect are Financial Reporting, Operations, Balance Sheet, Budgeting and Management.
What are the top questions asked in Dentsu Webchutney interview?

Some of the top questions asked at the Dentsu Webchutney interview -

  1. Can you do codeing individual...read more
  2. Media buying and schedul...read more

Tell us how to improve this page.

Dentsu Webchutney Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Publicis Sapient Interview Questions
3.5
 • 616 Interviews
Link Group Interview Questions
3.8
 • 34 Interviews
Ogilvy Interview Questions
3.8
 • 7 Interviews
Leo Burnett Interview Questions
3.4
 • 5 Interviews
BBDO Interview Questions
3.1
 • 2 Interviews
Isobar Interview Questions
2.3
 • 1 Interview
View all

Dentsu Webchutney Reviews and Ratings

based on 29 reviews

3.8/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.6

Salary

3.7

Job security

3.8

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 29 Reviews and Ratings
Group Account Manager
11 salaries
unlock blur

₹6 L/yr - ₹12.1 L/yr

Creative Director
8 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

ART Director
7 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Senior Accounts Executive
7 salaries
unlock blur

₹3 L/yr - ₹7.3 L/yr

Accounts Manager
6 salaries
unlock blur

₹5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Dentsu Webchutney with

Ogilvy

3.8
Compare

Wunderman Thompson

3.3
Compare

Publicis Sapient

3.5
Compare

Isobar

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