Upload Button Icon Add office photos

Google

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Google Solution Engineer Interview Questions and Answers

Updated 19 Dec 2024

Google Solution Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jun 2024.

Round 1 - Coding Test 

I was asked about Python code to download JSON data from a webpage and parse it.

Round 2 - Technical 

(3 Questions)

  • Q1. Network related troubleshooting
  • Q2. OS Troubleshooting
  • Q3. Application Performance Troubleshooting
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Sep 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 - Case Study 

Study really hard and you'll make it
second round study harder
3rd round study harder

Round 3 - HR 

(2 Questions)

  • Q1. Why do you want this job?
  • Q2. What are you looking for

Interview Preparation Tips

Interview preparation tips for other job seekers - DOnt be nervous, plan ahead and practice algorithms on leetcode

Solution Engineer Interview Questions Asked at Other Companies

asked in CitiusTech
Q1. 1. What is triggers and where we use triggers in xamarin? 2. Oops ... read more
Q2. What's a Camera Sensor? What's use of sensor ? Sizes of Sensor.
asked in FarEye
Q3. How to find second highest salaried person details from a table
Q4. What is a server ? How it's different from PC ?
Q5. How a mobile device connects to a network and the process invoved ... read more
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 

(2 Questions)

  • Q1. OS Basic ? Basic Networking ? What Netstat used for ? what is OOPS ?
  • Q2. What is netstat Inheritance
  • Ans. 

    Netstat is a command-line tool used to display network connections and network statistics.

    • Netstat can show active connections, listening ports, and network statistics.

    • It can be used to troubleshoot network issues and identify potential security threats.

    • Examples of netstat commands include netstat -a to display all connections and netstat -r to display the routing table.

    • Netstat is available on most operating systems inc

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic Algorithm.
Networking Basic
Operating System Basic

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Data Structure related questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Java related interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Data structure and Java code properly

Interview Questionnaire 

1 Question

  • Q1. Spring Collections Difference between list and set What is sorted mean in hashed set java Serialization Exceptions How can you give an exception to caller method Unix- how to move a folder without g...
  • Ans. 

    Interview questions for Software Developer related to Spring, Collections, Serialization, Exceptions, Unix, Annotations, Json, Build tools, Restful services, and more.

    • List and Set are both collection interfaces in Java. List allows duplicates and maintains insertion order while Set doesn't allow duplicates and doesn't maintain any order.

    • Sorted in Hashed Set means that the elements are stored in a sorted order based on ...

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Javascript fundamentals and output questions Angular - routing, component, directive etc Sass

Interview Preparation Tips

Interview preparation tips for other job seekers - Positive experience

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Google Interview FAQs

How many rounds are there in Google Solution Engineer interview?
Google interview process usually has 2-3 rounds. The most common rounds in the Google interview process are Resume Shortlist, Technical and Case Study.
How to prepare for Google Solution Engineer 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 Google. The most common topics and skills that interviewers at Google expect are Python, Computer science, HTML, Javascript and Recruitment.
What are the top questions asked in Google Solution Engineer interview?

Some of the top questions asked at the Google Solution Engineer interview -

  1. What is netstat Inherita...read more
  2. OS Basic ? Basic Networking ? What Netstat used for ? what is OOP...read more
  3. Application Performance Troubleshoot...read more

Tell us how to improve this page.

Google Solution Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 853 Interviews
Amdocs Interview Questions
3.7
 • 514 Interviews
Zoho Interview Questions
4.3
 • 509 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
KPIT Technologies Interview Questions
3.4
 • 282 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
View all
Google Solution Engineer Salary
based on 4 salaries
₹22.1 L/yr - ₹97 L/yr
377% more than the average Solution Engineer Salary in India
View more details

Google Solution Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

2.0

Salary

1.0

Job security

5.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
2.1k salaries
unlock blur

₹20 L/yr - ₹75 L/yr

Software Developer
1.3k salaries
unlock blur

₹27.8 L/yr - ₹67.3 L/yr

Senior Software Engineer
756 salaries
unlock blur

₹24 L/yr - ₹90.9 L/yr

Data Scientist
299 salaries
unlock blur

₹32.5 L/yr - ₹60 L/yr

Data Analyst
230 salaries
unlock blur

₹10.2 L/yr - ₹22.1 L/yr

Explore more salaries
Compare Google with

Yahoo

4.6
Compare

Amazon

4.1
Compare

Facebook

4.3
Compare

Microsoft Corporation

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