Upload Button Icon Add office photos

Filter interviews by

Vaidam Health Private Limited Google Adwords Analyst Interview Questions and Answers

Updated 21 Nov 2024

Vaidam Health Private Limited Google Adwords Analyst Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Create an ad 

(2 Questions)

  • Q1. How does campaign add the account
  • Ans. 

    Campaigns are added to the account by creating new campaigns within the Google Adwords platform.

    • Campaigns can be added manually by selecting the 'New Campaign' option in the Adwords dashboard.

    • Campaigns can also be added through bulk uploads using spreadsheets or third-party tools.

    • Each campaign is associated with specific settings, targeting options, and ad creatives.

    • Campaigns can be organized into different ad groups t

  • Answered by AI
  • Q2. What was bid strategy
  • Ans. 

    Bid strategy is a set of rules and goals used to determine how much to bid on keywords in online advertising campaigns.

    • Bid strategy helps optimize ad spend and maximize ROI

    • Common bid strategies include manual CPC, target CPA, and enhanced CPC

    • Bid strategies can be adjusted based on campaign goals and performance metrics

  • Answered by AI

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do u rate yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest to the recruiter that's it
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via IIM Jobs and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

SQL + Python based questions

Round 2 - Technical 

(2 Questions)

  • Q1. More SQL + simple aptitude problems
  • Q2. Questions on joins, group by etc. Other questions on average speed, guesstimates.
Round 3 - Case Study 

A data set was given and the questions were asked around strategies to handle cancellations.

Interview Preparation Tips

Topics to prepare for Practo Business Analyst interview:
  • SQL
  • Case Studies
Interview preparation tips for other job seekers - Focus on SQL and problem solving.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 5 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Why would you want this role?
  • Ans. 

    I am passionate about analyzing data and identifying opportunities for business improvement.

    • I have a strong background in data analysis and problem-solving.

    • I enjoy working with stakeholders to understand their needs and find solutions.

    • I am excited about the opportunity to use my skills to drive business growth and success.

  • Answered by AI
Round 2 - Case Study 

Speed to the speed advantage id Castlegate

Round 3 - Group Discussion 

Behavior questions, around collaboration ownership past sucess and failures

Round 4 - Case Study 

Another review of shipment speed

Round 5 - HR 

(1 Question)

  • Q1. Final questions from amanger

Analyst Interview Questions & Answers

Mylo user image Anonymous

posted on 1 Feb 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Assignment 

Basic excel problem, and pyhton, and sql

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic interview questions over resume
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions over salary and why do you wanna work with us

Interview Preparation Tips

Topics to prepare for Mylo Analyst interview:
  • excel
  • sql
  • pyhton
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

SQL ,Python, Case study

Round 2 - Case Study 

Product Based Case study

Round 3 - Case Study 

Extensive business case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Patttens Programs and the Core based Programs

Round 2 - HR 

(1 Question)

  • Q1. About the technically strong checking
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 Feb 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a detail-oriented Quality Analyst with 5 years of experience in ensuring product quality and customer satisfaction.

    • Experienced Quality Analyst with 5 years in the field

    • Skilled in ensuring product quality and customer satisfaction

    • Proficient in conducting quality audits and implementing improvement strategies

  • Answered by AI
  • Q2. They asked me about my roles and responsibility
Round 2 - One-on-one 

(2 Questions)

  • Q1. Self introduction round roles and responsibility
  • Q2. They asked me about the QC tools

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on the qc tools
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. I was questioned about the 7 QC tools
  • Q2. They asked me about my roles and responsibility

Interview Questionnaire 

8 Questions

  • Q1. Implement queue with the help of two stacks
  • Ans. 

    Queue can be implemented using two stacks by maintaining the order of elements in the stacks.

    • Create two stacks, let's call them stack1 and stack2

    • When an element is enqueued, push it to stack1

    • When an element is dequeued, pop all elements from stack1 and push them to stack2

    • Pop the top element from stack2 and return it as the dequeued element

    • If stack2 is empty, repeat step 3

    • To get the front element of the queue, peek the

  • Answered by AI
  • Q2. Iven a table “student” of with columns Name and Marks. You have to write a SQL query to get the 2nd highest marks from the table. Also write a query to find the nth highest marks, where n can be any number
  • Q3. What is left join. Give example. And Full outer join?
  • Ans. 

    Left join returns all records from left table and matching records from right table. Full outer join returns all records from both tables.

    • Left join is used to combine two tables based on a common column.

    • In left join, all records from the left table are returned along with matching records from the right table.

    • If there is no match in the right table, NULL values are returned.

    • Example: SELECT * FROM table1 LEFT JOIN table...

  • Answered by AI
  • Q4. What is magic functions and autoloading in PHP?
  • Ans. 

    Magic functions are special methods in PHP that start with __. Autoloading is a way to automatically load classes.

    • Magic functions are used to handle certain events in PHP, such as object creation or property access.

    • Autoloading allows PHP to automatically load classes when they are needed, without requiring manual includes.

    • Magic functions can be used in conjunction with autoloading to dynamically load classes or handle

  • Answered by AI
  • Q5. Given three arrays sorted in non-decreasing order, print all common elements in these arrays. Examples: ar1[] = {1, 5, 10, 20, 40, 80} ar2[] = {6, 7, 20, 80, 100} ar3[] = {3, 4, 15, 20, 30, 70, 80, 120} Ou...
  • Ans. 

    Given three sorted arrays, find common elements.

    • Create three pointers to traverse each array

    • Compare the elements at the pointers and move the pointer of the smallest element

    • If all pointers point to the same element, add it to the result and move all pointers

    • Repeat until any pointer reaches the end of its array

  • Answered by AI
  • Q6. A puzzle. You will be given with a 3 Litre container & a 7 Litre Container. Measure exactly 5 Litres of water
  • Q7. Asked about one of my projects I mentioned in my resume?
  • Q8. Find if a number is a power of 2 or not?
  • Ans. 

    Check if a number is a power of 2 or not.

    • A power of 2 has only one bit set in its binary representation.

    • Use bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

  • Answered by AI

Interview Preparation Tips

Skills: Data structures, PHP, Algortihm
College Name: na
Motivation: Overall it was a very good experience. They test you from every aspect. In the End I would like to say that Practo is one of the best companies to work for.

Skills evaluated in this interview

Vaidam Health Private Limited Interview FAQs

What are the top questions asked in Vaidam Health Private Limited Google Adwords Analyst interview?

Some of the top questions asked at the Vaidam Health Private Limited Google Adwords Analyst interview -

  1. How does campaign add the acco...read more
  2. What was bid strat...read more

Tell us how to improve this page.

Vaidam Health Private Limited Google Adwords Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Practo Interview Questions
3.1
 • 74 Interviews
Wayfair Interview Questions
3.6
 • 57 Interviews
Keyence Interview Questions
4.0
 • 26 Interviews
InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.0
 • 16 Interviews
Shine Interview Questions
2.7
 • 16 Interviews
FarMart Interview Questions
4.1
 • 16 Interviews
Mylo Interview Questions
3.0
 • 12 Interviews
View all
Assistant Manager
14 salaries
unlock blur

₹3 L/yr - ₹5.1 L/yr

Patient Relation Executive
7 salaries
unlock blur

₹2.8 L/yr - ₹4 L/yr

Senior Executive
7 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Operations Executive
7 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Software Engineer
6 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Explore more salaries
Compare Vaidam Health Private Limited with

Practo

3.1
Compare

InsanelyGood

4.1
Compare

Mogli labs

3.5
Compare

Vegrow

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