Upload Button Icon Add office photos

Tapzo

Compare button icon Compare button icon Compare
4.0

based on 7 Reviews

Filter interviews by

Tapzo Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core java based questions, followed by springboot and then sql queries
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based java and spring boot questions and more complex sql queries
Round 3 - Client Interview 

(1 Question)

  • Q1. Previous project related questions like difficulty faced in project, how you overcome that, day to day routine, discussed role in projects
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and onboarding instructions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core technology in which you are proficient and have best knowledge in your domain, if you don't know about other required technologies be clear and tell them

Inventory Operations Engineer Interview Questions & Answers

Twilio user image Anonymous

posted on 18 Oct 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Sep 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. About yourself, your past work experience and why you want to get into this role The interviewer was very calm and just wanted to learn about the background.
Round 2 - One-on-one 

(1 Question)

  • Q1. All behavioural questions- 1 how do your prioritise your work? 2 do you have experience in managing cross functional teams? 3 what if one of your Co-worker decline working on a project, How would you tackl...
Round 3 - One-on-one 

(1 Question)

  • Q1. Again all behavioural questions- How do you work with large volume of works? How do you manage work life balance? How do you give harsh feedbacks to your coworkers?
Round 4 - One-on-one 

(1 Question)

  • Q1. All behavioural questions again- same as above just a bit here and there asked in different ways

Interview Preparation Tips

Interview preparation tips for other job seekers - They took 4 rounds of interview and all behavioural questions were asked and more about your past work experience. I believe according to me I had aced all my interview rounds. They didn’t shared any offer saying they found a better candidate.
If that was the case then atleast they should have shared some feedback based on where did I lacked. The HR did mention that on email asking about my timeline to have a call on feedback however I never heard from her.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

6 mcqs and 2 sql questions

Round 2 - Technical 

(5 Questions)

  • Q1. Difference between having and where in sql
  • Ans. 

    In SQL, 'HAVING' is used with GROUP BY to filter groups, while 'WHERE' is used to filter rows before grouping.

    • HAVING is used with GROUP BY to filter groups based on aggregate functions

    • WHERE is used to filter rows before grouping

    • HAVING is used after GROUP BY in the query, while WHERE is used before GROUP BY

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

    • Example: S

  • Answered by AI
  • Q2. Sql joins and it types
  • Q3. Window functions and subqueries
  • Q4. Sql scenario question based on joins
  • Q5. Kpi's and metrics
Round 3 - Technical 

(1 Question)

  • Q1. Business problem related to case study

Interview Preparation Tips

Interview preparation tips for other job seekers - learn sql, problem solving,puzzles,kpi's and metrics

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the social networking
  • Ans. 

    Social networking refers to the use of internet-based platforms to connect with others, share information, and build relationships.

    • Social networking sites allow users to create profiles, connect with friends, and share updates and photos.

    • Popular social networking platforms include Facebook, Twitter, Instagram, and LinkedIn.

    • Social networking can be used for personal connections, professional networking, and marketing pu...

  • Answered by AI
  • Q2. How many people added in google
  • Ans. 

    The number of people added in Google is constantly changing due to hiring, acquisitions, and other factors.

    • Google adds thousands of employees each year through hiring and acquisitions.

    • As of 2021, Google has over 140,000 employees worldwide.

    • The exact number of people added in Google can vary depending on the time frame and specific context of the question.

  • Answered by AI
  • Q3. What is the charts accountant
  • Ans. 

    A charts accountant is a professional who specializes in creating and analyzing financial charts and graphs to help businesses make informed decisions.

    • Charts accountants use data visualization techniques to present financial information in a clear and concise manner.

    • They often work with software programs like Microsoft Excel or Tableau to create charts and graphs.

    • Charts accountants help businesses track key performance...

  • Answered by AI
  • Q4. What is a gaming review
  • Ans. 

    A gaming review is an evaluation of a video game, assessing its gameplay, graphics, sound, and overall quality.

    • Gaming reviews provide insights into the strengths and weaknesses of a game.

    • They often include ratings or scores to summarize the reviewer's opinion.

    • Reviews may also discuss the game's story, mechanics, replay value, and technical performance.

    • Examples of popular gaming review websites include IGN, GameSpot, an

  • Answered by AI
  • Q5. How many salary in google
Round 2 - Coding Test 

Very hardworking studying in coding

Interview Preparation Tips

Topics to prepare for Google growth manager interview:
  • Accounting
  • Game Testing
Interview preparation tips for other job seekers - Jobs is nothing but life is something
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 medium leetcode questions were asked

Round 2 - One-on-one 

(2 Questions)

  • Q1. Difference between polymorphism and inheritance
  • Q2. Dsa question related to array
Round 3 - One-on-one 

(2 Questions)

  • Q1. Explain about project
  • Q2. What did you do in you internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. What is the SQL query used to remove duplicates from a dataset?
  • Ans. 

    Use the DISTINCT keyword in a SELECT query to remove duplicates from a dataset.

    • Use the SELECT DISTINCT statement to retrieve unique rows from a table

    • Example: SELECT DISTINCT column1, column2 FROM table_name;

    • Another way is to use the GROUP BY clause with aggregate functions like COUNT() or SUM() to remove duplicates

  • Answered by AI
  • Q2. What is the SQL query to find the third highest salary in a table?
  • Ans. 

    Use a subquery to find the third highest salary in a table using SQL.

    • Use the ORDER BY clause to sort the salaries in descending order.

    • Use the LIMIT clause to limit the results to the third row.

    • Use a subquery to select the third highest salary from the sorted list.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are the different roles in Power BI?
  • Ans. 

    Different roles in Power BI include Power BI Developer, Power BI Analyst, Power BI Administrator, and Power BI User.

    • Power BI Developer - responsible for creating and maintaining Power BI reports and dashboards

    • Power BI Analyst - analyzes data using Power BI to provide insights and recommendations

    • Power BI Administrator - manages security, access, and data sources in Power BI

    • Power BI User - consumes reports and dashboards

  • Answered by AI
  • Q2. SQL - basicand advanced questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was good 20 mcqs 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa and core subjects like cn os
  • Q2. Dsa questions and core subjects
Round 3 - HR 

(1 Question)

  • Q1. Basic family discussion and salary details

Interview Preparation Tips

Interview preparation tips for other job seekers - it was overall a good experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Questions related to Python and SQL, as well as a few multiple-choice questions in data science.

Round 2 - Technical 

(2 Questions)

  • Q1. Project Explanation as well query related to project
  • Q2. Machine learning basic question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill

SRE Interview Questions & Answers

Cohesity user image Anonymous

posted on 29 Aug 2024

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

I applied via Referral

Round 1 - Technical 

(2 Questions)

  • Q1. Processes and details about steps involved when a server is accessed from browser. L1-L7
  • Q2. Troubleshoot drive errors and server HW.

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 815 Interviews
Amdocs Interview Questions
3.8
 • 514 Interviews
Zoho Interview Questions
4.3
 • 492 Interviews
SAP Interview Questions
4.2
 • 298 Interviews
KPIT Technologies Interview Questions
3.5
 • 281 Interviews
Salesforce Interview Questions
4.1
 • 262 Interviews
Adobe Interview Questions
4.0
 • 246 Interviews
View all

Tapzo Reviews and Ratings

based on 7 reviews

4.0/5

Rating in categories

3.1

Skill development

3.9

Work-Life balance

3.1

Salary & Benefits

2.9

Job Security

1.4

Company culture

3.9

Promotions/Appraisal

3.1

Work Satisfaction

Explore 7 Reviews and Ratings
Software Engineer
5 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Software Developer
3 salaries
unlock blur

₹19 L/yr - ₹22 L/yr

Explore more salaries
Compare Tapzo with

Bosch Global Software Technologies

4.0
Compare

Amdocs

3.8
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview