Upload Button Icon Add office photos

Google

Compare button icon Compare button icon Compare

Filter interviews by

Google Web Developer Interview Questions and Answers

Updated 3 Dec 2024

Google Web Developer Interview Experiences

5 interviews found

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

(2 Questions)

  • Q1. Low level design
  • Q2. High level design
Round 2 - Coding Test 

Leetcode medium to hard question

Web Developer Interview Questions & Answers

user image Anonymous

posted on 31 Dec 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Tell me about your self and Technology related
  • Q2. About Technology
  • Q3. About family background
  • Q4. Web development realated questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Internshala
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Internshala
Q5. Loot Houses Problem Statement A thief is planning to steal from s ... read more

Web Developer Interview Questions & Answers

user image Anonymous

posted on 24 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Group Discussion 

What do you mean by AI

Web Developer Interview Questions & Answers

user image Anonymous

posted on 20 May 2022

I applied via Approached by Company and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 
Round 2 - Aptitude Test 

What is your week point. Which make you emotional.

Round 3 - HR 

(3 Questions)

  • Q1. What is your long term goals.
  • Q2. What is your strength to handle anything.
  • Q3. What is your expectation related to this job

Interview Preparation Tips

Topics to prepare for Google Web Developer interview:
  • Web Development
  • Web Technologies
  • Communication Skills
  • Javascript
  • CSS
  • React.Js
Interview preparation tips for other job seekers - Hii friends
Everything is possible in this world so never give up. And always try to learn new things. Make yourself better to best.
All the best

What people are saying about Google

View All
allookachalu
Verified Icon
1w
currently not working
Google Bengaluru: Office or a slice of paradise?
Looking for jobs in Bengaluru and stumbled upon a video of Google's office here. What an amazing place for any job seeker! I'm doing my best to get an interview scheduled. Anyone currently working there, please share a referral or insights on the interview process!
Got a question about Google?
Ask anonymously on communities.

Web Developer Interview Questions & Answers

user image Rohit Tyagi

posted on 19 Nov 2022

I applied via Approached by Company and was interviewed before Nov 2021. There were 8 interview rounds.

Round 1 - Aptitude Test 

I dont know when it happened i think i missed it

Round 2 - Coding Test 

I wrote hello world in machine language and they were surprised, one was willing to marry her daughter with me

Round 3 - Group Discussion 

Ahh the fun round it was a great experience obviously i won the GD as i was the only 1 in the room

Round 4 - Assignment 

I can barely solve my bro's 8th test paper but at least i put my roll number correct

Round 5 - Case Study 

Nah , never heard of this one before

Round 6 - HR 

(3 Questions)

  • Q1. Tf, am i the only one who got a male HR ?
  • Q2. What are your salary expectations
  • Q3. Where do you see yourself in 5 years
Round 7 - Technical 

(2 Questions)

  • Q1. What is a for loop
  • Q2. How to create a html file
  • Ans. 

    To create a HTML file, you can use a text editor to write the code and save it with a .html extension.

    • Open a text editor like Notepad, Sublime Text, or Visual Studio Code

    • Write your HTML code including tags like <html>, <head>, <title>, <body>

    • Save the file with a .html extension, for example index.html

    • Open the file in a web browser to view the HTML content

  • Answered by AI
Round 8 - One-on-one 

(1 Question)

  • Q1. Never heard of this one

Interview Preparation Tips

Interview preparation tips for other job seekers - Never herd of ambition box before bu rating this because i was getting bored

Skills evaluated in this interview

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. My first question is tell me about yourself then they ask what you do after graduation. Then ask some technical question like oops concept and collections and map and some question in sql and jdbc also.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a product base MNC and it is good for fresher.

Google HR Interview Questions

125 questions and answers

Q. What motivates you?
Q. What are your weaknesses?
Q. What job do you perform?

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Find All Anagrams Problem Statement

    Given a string STR and a non-empty string PTR, identify all the starting indices of anagrams of PTR within STR.

    Explanation:

    An anagram of a string is another string ...

  • Ans. 

    Given a string STR and a non-empty string PTR, find all starting indices of anagrams of PTR within STR.

    • Create a frequency map of characters in PTR.

    • Use sliding window technique to check anagrams in STR.

    • Return the starting indices of anagrams found.

  • Answered by AI
  • Q2. 

    Subset Sum Problem Statement

    Given an array of integers, find the sum of all subsets in non-decreasing order of the given array.

    Example:

    Input:
    N = 3, array = [1, 2]
    Output:
    [0, 1, 2, 3]
    Explanatio...
  • Ans. 

    Find sum of all subsets in non-decreasing order of given array.

    • Use recursion to generate all subsets of the array

    • Calculate sum of each subset and store in a list

    • Sort the list in non-decreasing order to get the final result

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

First he asked me to tell about myself, then he asked me some OOPS Concepts,difference in shallow copy and deep copy,
asked me to write a code for boundary traversal of binary tree.

  • Q1. 

    Boundary Traversal of Binary Tree Problem Statement

    Given a binary tree consisting of integers, your task is to provide the boundary nodes of this tree in an anti-clockwise direction, starting with the ro...

  • Ans. 

    Boundary traversal of a binary tree to find left boundary, right boundary, and leaf nodes in an anti-clockwise direction.

    • Perform a pre-order traversal to get the left boundary nodes

    • Perform an in-order traversal to get the leaf nodes

    • Perform a post-order traversal to get the right boundary nodes

    • Combine the results to get the boundary nodes in anti-clockwise direction

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The second tech interview lasted for about an hour and half. First he asked me to tell about myself. Then he asked me how my first interview was. He then asked me where should I start, data structures, databases, to which I replied anywhere.
He started asking questions about C. He asked difference between call by pointer and call by reference. Whether a function can be defined as
void function(int &x, int &y);
Then he asked what is volatile data type in C. Then about the static data class.
He also asked me to write a program to find length of a string.
Then he asked about how functions in C work. How does the program know where to go back after a function is over, etc.
He then asked me if I knew C++, I said no. So he continued to ask a few questions on data structures.
He then asked about the ACID properties which a good database must have. He asked how are transactions managed by a database, what are commits, how, in case of a power failure, data is reverted back, etc.
Then he asked me whether I like to work individually or in a team. I said in a team. He then gave me scenario where I have to decide between a project I am working on, whose deadline is approaching, and helping a friend working on another project whose deadline is also approaching, and asked me what would I do in such a case.

  • Q1. 

    Find the Middle of a Linked List

    This problem requires you to return a pointer that references the middle node of a singly linked list.

    Explanation:

    If the number of elements in the linked list is odd, ...

  • Ans. 

    Return the middle node of a singly linked list, considering odd and even number of elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the node pointed to by the slow pointer as the middle node

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria7 CGPASAP Labs interview preparation:Topics to prepare for the interview - Data Structures ,sql, machine learning, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5 codes daily.
Tip 2 : Do at-least one machine Learning Project.

Application resume tips for other job seekers

Tip 1 : Have at least three project.
Tip 2 : Put some achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 75 minutes
Round difficulty - Easy

This was the coding round which consisted of three coding questions and the time limit was of 75 minutes. The platform used was Co-Cubes. 3 questions were asked of 2, 3 and 5 marks respectively with varying difficulty.

  • Q1. 

    Nearest Multiple of 10 Problem Statement

    Given an integer N, find the nearest multiple of 10. If there are multiple nearest multiples, return the smallest one.

    Input:

    The first line contains an integer ...
  • Ans. 

    Given an integer, find the nearest multiple of 10. If multiple nearest multiples, return the smallest one.

    • Iterate through each test case

    • Calculate the remainder when dividing N by 10

    • If remainder is less than or equal to 5, nearest multiple is N - remainder

    • If remainder is greater than 5, nearest multiple is N + (10 - remainder)

  • Answered by AI
  • Q2. 

    Day of the Week Calculation

    Your task is to create a function that determines the day of the week for any given date, whether in the past or the future.

    Input:

    The first line consists of an integer 'T',...
  • Ans. 

    Create a function to determine the day of the week for any given date.

    • Parse the input integers to create a date object

    • Use a library or algorithm to calculate the day of the week for the given date

    • Return the corresponding day of the week as a string

  • Answered by AI
  • Q3. 

    Delete N Nodes After M Nodes in a Linked List

    Given a singly linked list and two integers 'N' and 'M', traverse the linked list to retain 'M' nodes and then delete the next 'N' nodes. Continue this proces...

  • Ans. 

    Traverse a linked list to retain 'M' nodes and then delete the next 'N' nodes, repeating until the end of the list.

    • Create a function that takes the head of the linked list, 'N', and 'M' as input parameters.

    • Traverse the linked list, retaining 'M' nodes and deleting the next 'N' nodes in each iteration.

    • Continue this process until the end of the linked list is reached.

    • Update the next pointers accordingly to skip 'N' nodes...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This was a written round and we were expected to write fully functional code, without any bugs and errors. Library functions used if any, had to be explained and if possible, code for that too (not that rigorous). Pseudocode and algorithms were also allowed. All the assumptions made had to be explained as well.

  • Q1. 

    Look-And-Say Sequence Problem Statement

    The Look-And-Say sequence is a series of positive integers generated in a specific pattern:

    1, 11, 21, 1211, 111221, 312211, 13112221,...

    To construct this sequen...

  • Ans. 

    The Look-And-Say sequence is a series of positive integers generated in a specific pattern based on the count of digits in the previous number.

    • Implement a function to generate the Nth term of the Look-And-Say sequence efficiently.

    • Use a loop to iterate through the sequence generation process.

    • Keep track of the count of consecutive digits in each number to generate the next number.

    • Handle the constraints of the number of t...

  • Answered by AI
  • Q2. 

    Rearrange Array to Form Largest Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible number. The digits within each number cannot be changed.

    ...

  • Ans. 

    Rearrange the array elements to form the largest possible number by concatenating them.

    • Sort the array elements in a custom way to form the largest number.

    • Convert integers to strings for comparison while sorting.

    • Handle edge cases like leading zeros in the final number.

    • Example: For input [12, 5, 34], the output should be '53412'.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Easy

The interviewer was very friendly and started asking me questions by making me comfortable.

  • Q1. 

    Simplify Directory Path Problem Statement

    You are provided with a directory path in Unix-style notation, and your task is to simplify it according to given rules.

    In a Unix-style file system:

    • A dot (...
  • Ans. 

    The task is to simplify a directory path in Unix-style notation according to given rules.

    • Use a stack to keep track of directories while iterating through the input path.

    • Handle cases for '.', '..', and multiple slashes to simplify the path.

    • Return the simplified path starting with a slash and without a trailing slash.

  • Answered by AI
  • Q2. 

    Polynomial Simplification Problem Statement

    You are provided with two arrays representing the coefficients and degrees of a polynomial expression. Your task is to simplify this polynomial into its general...

  • Ans. 

    Simplify a polynomial expression by combining like terms and arranging them in descending order of degrees.

    • Iterate through the coefficients and degrees arrays to combine like terms

    • Create a map to store coefficients based on degrees

    • Sort the map keys in descending order to get the simplified polynomial

  • Answered by AI
Round 4 - Face to Face 

Round duration - 40 minutes
Round difficulty - Easy

This round was focused on resume and projects

Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This round was basically a mix of HR and creative design round. The interviewer wanted to check whether the candidate can think out-of-the-box with regard to any given problem and come up with unique, optimized solutions.

Interview Preparation Tips

Eligibility criteria6.0 CGPAMicrosoft interview preparation:Topics to prepare for the interview - DSA, DBMS, OOPS, OS, TOC and to some extent CNTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : I would suggest practicing as many questions on data structures and algorithms as you can because it is the question practice that would help you in building your concepts strong. I practiced a lot of questions on InterviewBit and completed all modules of data structures and algorithms because there you can find the recent interview questions that you should know. 
Tip 2 : If you have time for your interviews, I would recommend going through Leetcode as it has a good variety of questions sorted on topic wise difficulty level where you can try to solve at least 20-30 questions for each data structure and algorithm. Moreover, you should regularly participate in the weekly contests happening there so that you could know about your weak areas to improve.
Tip 3 : Along with coding you should be clear about some basic concepts of Operating systems and Databases that would help in your interviews. One more thing is that do some good research about the company's goal and vision and be prepared to ask some company-related queries that show your interest in the company.

Application resume tips for other job seekers

Tip 1 : Your Resume should consist of mainly skills, projects, and achievements. Projects would play a crucial part in your interview and you should have at least one most relevant and good project that shows how strong your concepts are in development. 
Tip 2 : The most important tip is that never lie on your resume and like If you have worked upon some technology for the project part only and don't know the proper depth you could write basics only in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Apr 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of. Net Framework and sql related questions.
Round 2 - Technical 

(1 Question)

  • Q1. . Net and sql related questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Projects that you have done, salary expectations and joining time.
Round 4 - One-on-one 

(1 Question)

  • Q1. Salary related conversation.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice interview experience. Interviewers were very polite.

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

Interview Questionnaire 

2 Questions

  • Q1. What is web service flow
  • Ans. 

    Web service flow is the sequence of steps involved in the communication between a client and a server over the internet.

    • Web service flow involves a client sending a request to a server

    • The server processes the request and sends a response back to the client

    • The response can be in various formats such as XML, JSON, or plain text

    • Web service flow can be synchronous or asynchronous

    • Examples of web services include RESTful API...

  • Answered by AI
  • Q2. How to check ports in Solaris or linux machine
  • Ans. 

    To check ports in Solaris or Linux machine, use the netstat command.

    • Open the terminal and type 'netstat -an' to display all open ports.

    • Use 'netstat -an | grep ' to check if a specific port is open.

    • To check listening ports, use 'netstat -an | grep LISTEN'.

    • For Solaris, use 'netstat -an | grep .' instead of '| grep '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

Google Interview FAQs

How many rounds are there in Google Web Developer interview?
Google interview process usually has 3-4 rounds. The most common rounds in the Google interview process are Coding Test, Technical and Aptitude Test.
What are the top questions asked in Google Web Developer interview?

Some of the top questions asked at the Google Web Developer interview -

  1. How to create a html f...read more
  2. What is a for l...read more
  3. Web development realated questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 5 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Oracle Web Developer Interview Questions
3.7
 • 897 Interviews
Zoho Web Developer Interview Questions
4.2
 • 542 Interviews
Amdocs Web Developer Interview Questions
3.7
 • 534 Interviews
SAP Web Developer Interview Questions
4.2
 • 291 Interviews
Adobe Web Developer Interview Questions
3.8
 • 248 Interviews
Chetu Web Developer Interview Questions
3.3
 • 202 Interviews
View all
Google Web Developer Salary
based on 61 salaries
₹14.9 L/yr - ₹25 L/yr
344% more than the average Web Developer Salary in India
View more details

Google Web Developer Reviews and Ratings

based on 8 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.9

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
2.6k salaries
unlock blur

₹34.8 L/yr - ₹60 L/yr

Software Developer
2.3k salaries
unlock blur

₹33.5 L/yr - ₹62.2 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹34.9 L/yr - ₹70 L/yr

Sde1
461 salaries
unlock blur

₹31.6 L/yr - ₹58.9 L/yr

Data Analyst
428 salaries
unlock blur

₹15.3 L/yr - ₹28 L/yr

Explore more salaries
Compare Google with

Yahoo

4.6
Compare

Amazon

4.0
Compare

Facebook

4.4
Compare

Microsoft Corporation

3.9
Compare
write
Share an Interview