Upload Button Icon Add office photos

VML

Compare button icon Compare button icon Compare

Filter interviews by

VML Software Developer Interview Questions and Answers

Updated 17 Jul 2024

VML Software Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Sinple dsa question was asked

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions about projects
  • Q2. System design questions

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Given the start and end times of the meetings, how can you determine if you are able to attend all of them?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How does consumer, producer work in kafka
  • Ans. 

    Consumers read data from topics, while producers write data to topics in Kafka.

    • Consumers subscribe to topics to read messages from them

    • Producers publish messages to topics for consumers to read

    • Consumers can be part of a consumer group to scale out consumption

    • Producers can specify key for messages to control partitioning

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basic JavaScript and React.js questions
  • Q2. Questions on functions, hooks and DOM
  • Q3. Questions on SSR
  • Q4. Questions on strings and arrays
Round 2 - Coding Test 

Api related questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Easy-Medium level Leetcode questions on linkedlists
  • Q2. Simple recursion question
  • Q3. An SQL query Basic question in OOPS and resume description..
  • Q4. Basic questions regarding SQL
  • Q5. Difference between thread and process
  • Ans. 

    A process is an instance of a program while a thread is a subset of a process that can run concurrently with other threads.

    • Processes have their own memory space while threads share the same memory space within a process.

    • Processes are independent of each other while threads within the same process can communicate with each other.

    • Processes are heavier in terms of resource consumption compared to threads.

    • Example: A web br...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your basics

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Spring security, JWT , Kakfa , Reverse vowels , suffix sum
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Project Explain
  • Ans. 

    Project Explain is a question where you are asked to describe a project you have worked on in detail.

    • Provide an overview of the project including its purpose and goals

    • Explain the technologies used and your role in the project

    • Discuss any challenges faced and how they were overcome

    • Highlight the outcomes and impact of the project

  • Answered by AI

Software Developer Interview Questions & Answers

HGS user image Gajendrula Deepika

posted on 2 Nov 2021

I applied via Company Website and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About c and c++ excel, ms world
  • Q2. Programs, programs of company, marks, any thing
  • Q3. In ms world we can do any thing

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a fresher of a company I don't have ny experience but i will try my in a company

I applied via Campus Placement and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. What technologies you are familiar with?
  • Ans. 

    I am familiar with a wide range of technologies used in software development.

    • Java

    • Python

    • C++

    • JavaScript

    • HTML/CSS

    • SQL

    • Git

    • Linux

    • RESTful APIs

    • Agile methodologies

  • Answered by AI
  • Q2. What are the OOPs concept in Java?
  • Ans. 

    OOPs concepts in Java include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing a simplified interfa

  • Answered by AI
  • Q3. What are the ways to achieve abstraction?
  • Ans. 

    Abstraction can be achieved through interfaces, abstract classes, and encapsulation.

    • Using interfaces to define a set of methods that a class must implement

    • Using abstract classes to provide a base implementation that can be extended by subclasses

    • Encapsulating implementation details to hide complexity and provide a simpler interface

    • Using design patterns such as Factory and Strategy to abstract away implementation details

  • Answered by AI
  • Q4. Difference between class and Interface object and fucntion instance and all the differences?
  • Ans. 

    Class is a blueprint for creating objects while interface defines a contract for implementing classes.

    • Class is a template for creating objects with properties and methods.

    • Interface is a contract that defines a set of methods and properties that a class must implement.

    • Object is an instance of a class that has its own set of properties and methods.

    • Function instance is a reference to a function that can be called with arg...

  • Answered by AI
  • Q5. Some graph question and some more questions from data structure like about linkedlist queue.
  • Q6. Inheritance
  • Q7. Scope of access modifiers
  • Ans. 

    Access modifiers control the visibility and accessibility of class members.

    • Access modifiers include public, private, protected, and internal.

    • Public members can be accessed from anywhere.

    • Private members can only be accessed within the same class.

    • Protected members can be accessed within the same class and its subclasses.

    • Internal members can be accessed within the same assembly.

    • Access modifiers help enforce encapsulation ...

  • Answered by AI
  • Q8. Some tree questions
  • Q9. Some graph question
  • Q10. What do you know about cloud
  • Ans. 

    Cloud refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • Cloud services can be categorized into three main types: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS).

    • Cloud providers include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.

    • ...

  • Answered by AI
  • Q11. Some basic question like which things come in Iaas
  • Q12. What are the ways to achieve some task on aws
  • Ans. 

    There are multiple ways to achieve tasks on AWS depending on the specific task.

    • Using AWS Management Console

    • Using AWS CLI

    • Using AWS SDKs

    • Using AWS CloudFormation

    • Using AWS Elastic Beanstalk

    • Using AWS Lambda

    • Using AWS Step Functions

    • Using AWS Batch

  • Answered by AI
  • Q13. About ec2 and many more

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest about what you know and how much you know tell them very clearly you do not know much about this do not try to make stories they know more than you

Skills evaluated in this interview

VML Interview FAQs

How many rounds are there in VML Software Developer interview?
VML interview process usually has 2 rounds. The most common rounds in the VML interview process are Coding Test and Technical.
What are the top questions asked in VML Software Developer interview?

Some of the top questions asked at the VML Software Developer interview -

  1. Basic questions about proje...read more
  2. System design questi...read more

Tell us how to improve this page.

VML Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Group Head Creative Art
6 salaries
unlock blur

₹13 L/yr - ₹13 L/yr

Technical Lead
4 salaries
unlock blur

₹26 L/yr - ₹33.4 L/yr

Project Manager
4 salaries
unlock blur

₹20.5 L/yr - ₹42.2 L/yr

Commercial Director
4 salaries
unlock blur

₹14 L/yr - ₹25 L/yr

Account Director
3 salaries
unlock blur

₹8.5 L/yr - ₹17 L/yr

Explore more salaries
Compare VML with

Wunderman Thompson

3.2
Compare

Ogilvy

3.8
Compare

Leo Burnett

3.3
Compare

Havas Worldwide

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