Upload Button Icon Add office photos

Filter interviews by

Wooqer Advertising Services Interview Questions and Answers

Updated 3 Dec 2015

Wooqer Advertising Services Interview Experiences

1 interview found

Interview Preparation Tips

Round: Test
Experience: ROUND 1: 50 MCQ's (60 Minutes)
80% C/C++ Questions and 20% Quantitative Aptitude.
Most of the C/C++ questions are similar to the questions in test your C skills, geeksquiz.com and some recursion questions which will take time to solve. Quantitative aptitude is of normal level only. Around 200 people appeared and they have shortlisted 13 people.
ROUND 2: Two Coding questions (80 Minutes) Subjective (code on paper)
They gave Dynamic programming problems. Its better to write comments for each function and also derive the time complexity and they shortlisted 4 people.

Round: Technical Interview
Experience: Basic C/C++ concepts, Operating systems and projects based question were asked.

Round: HR Interview
Experience: HR round is cool ! But We need to give proper judgement for Why Wooqer? and why we should select you?

General Tips: It’s a long suspense as they announced the results after 2 days. But NEVER LOSE HOPE. Even though you got rejected in any company (Just feel for sometime as you can't take lite at that moment) hope that you have some good company waiting for you. Don't get depressed after rejecting in 2-3 companies. You will have your day as I myself got rejected in 6 interviews and I got selected in 7th company. WIN OR LOSE DOESN'T MATTER, FIGHT HARD.
If you are very good in coding then try to be the best in coding. And don't neglect Aptitude, Basics and HR Round. Try to do very fast in round-1 and leave the questions which take time. Coding and HR round are crucial
Skill Tips: C/C++ Books: **Let us C; **Test your C skills;Thinking in C++
Data structures: **Narasimha Karumanchi / Sourabh School videos(youtube)
Coding: **GeeksforGeeks; Leetcode; CodeChef.

Skills:
College Name: NIT Surathkal

Platform Engineer Interview Questions asked at other Companies

Q1. Palindrome Linked List Problem Statement You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a palindrome, otherwise return false. Exam... read more
View answer (1)

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Aptitude Test 

General aptitude logical reasoning questions

I applied via Referral and was interviewed in Aug 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 Resume tips
Round 2 - Aptitude Test 

All categories question asking

Round 3 - Coding Test 

Simple program asking javascript and data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't fear and easily clear the interview, coding round is simple program
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA based Questions- Strings, Stack and Linked List
Round 2 - Technical 

(1 Question)

  • Q1. DSA and Conceptual Based Question
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 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSA questions & SQL queries
Round 2 - Technical 

(1 Question)

  • Q1. Again dsa round
Round 3 - Behavioral 

(1 Question)

  • Q1. HR + general questions based on internship, projects, etc
Round 4 - Technical 

(1 Question)

  • Q1. DSA questions & SQL queries
Round 5 - Technical 

(1 Question)

  • Q1. Again dsa round
Round 6 - Behavioral 

(1 Question)

  • Q1. HR + general questions based on internship, projects, etc
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on Data Structures- Basic question like strings, stacks and Linked List
Round 2 - Technical 

(1 Question)

  • Q1. This interview included DSA, Conceptual and Database Questions- It was one level harder than 1st round
Round 3 - Technical 

(1 Question)

  • Q1. This round was with architect and it was also related to DSA and databse
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a mcq + coding round with computer fundamentals and aptitude + easy-medium level dsa questions.

Round 2 - Aptitude Test 

It was an offline aptitute test with 30 questions for 30 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Detect a loop in the linked list
  • Ans. 

    Detect a loop in a linked list by using Floyd's Cycle Detection Algorithm

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Initialize slow and fast pointers at the head of the linked list

    • Move slow pointer by one step and fast pointer by two steps in each iteration

    • If the fast pointer reaches the end of the list or meets the slow pointer,

  • Answered by AI
  • Q2. Find the unique element in an array
  • Ans. 

    Find the unique element in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • After iterating, check the hashmap for elements with frequency 1 to find the unique element

  • Answered by AI
  • Q3. Tell about your projects
  • Ans. 

    I have worked on various projects including a web application for a local business and a mobile app for tracking daily habits.

    • Developed a web application using HTML, CSS, and JavaScript for a local business to manage their inventory and sales.

    • Created a mobile app using React Native to track daily habits and provide reminders for healthy routines.

    • Collaborated with a team to implement new features and fix bugs in existin...

  • Answered by AI
  • Q4. Write a MySQL query for selecting the id of second highest salary from employee table
  • Ans. 

    MySQL query to select the id of second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to select the second row

    • Use a subquery to avoid duplicates if multiple employees have the same salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Associate Software Engineer interview:
  • RDBMS
  • Frontend
  • DSA
  • System Design

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Create basic react app with dummy data fetched from JSON API
  • Ans. 

    Create a basic React app with dummy data fetched from a JSON API.

    • Set up a new React project using create-react-app

    • Create a component to fetch data from a JSON API using fetch or axios

    • Display the fetched data in the component

  • Answered by AI
  • Q2. Array methods and Flatten array
  • Q3. Event loop
  • Q4. HTML and Javascript basics

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

Interview Questionnaire 

1 Question

  • Q1. 2 technical rounds, 1 psychometric test, then Manager and HR rounds, basic question on java 7 and java 8,interface and class, DS questions like linkedList reverse and adding nodes to linkedList, Hashmap, ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics should be clear and brushed up, be calm and confident while giving your answers.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic Js concepts like debouncing,event loop, and other output-based questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Js concepts in depth
Round 3 - HR 

(2 Questions)

  • Q1. Hiring manager round, questions around my project
  • Q2. Optimization techniques
  • Ans. 

    Optimization techniques are methods used to improve the efficiency and performance of software applications.

    • Use algorithms like greedy, dynamic programming, or divide and conquer to optimize code

    • Minimize time complexity by avoiding nested loops and unnecessary iterations

    • Utilize data structures like hash tables, arrays, and trees for efficient storage and retrieval

    • Profile code to identify bottlenecks and optimize critic...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics, interviewers were very helpful
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

INTERVIEWS

BEML

No Interviews

INTERVIEWS

Droom

No Interviews

INTERVIEWS

Headout

No Interviews

INTERVIEWS

Ola Cabs

No Interviews

INTERVIEWS

Droom

No Interviews

SALARIES

McAfee

INTERVIEWS

BEML

No Interviews

INTERVIEWS

AbhiBus

No Interviews

INTERVIEWS

Headout

No Interviews

INTERVIEWS

McAfee

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Exotel Interview Questions
3.1
 • 12 Interviews
CyberArk Interview Questions
3.8
 • 12 Interviews
Narvar India Interview Questions
3.4
 • 11 Interviews
Vanenburg Interview Questions
3.9
 • 10 Interviews
PlanSource Interview Questions
3.7
 • 10 Interviews
Ivalua Interview Questions
3.8
 • 8 Interviews
Unbxd Interview Questions
4.0
 • 6 Interviews
View all
Compare Wooqer Advertising Services with

Exotel

3.1
Compare

Azuga Telematics

3.4
Compare

Flixstock

2.4
Compare

World Fashion Exchange

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