Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Aauid Media Team. If you also belong to the team, you can get access from here

Aauid Media Verified Tick

Compare button icon Compare button icon Compare
-

No reviews yet

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.

Filter interviews by

Aauid Media Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. TDS related questions
  • Q2. Expenses related questions
  • Q3. Cash management
  • Q4. Inventory Management
  • Q5. SAP related purchase order
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

1. How to make an api call in java and count the number of items in the response?
2. Longest Incresing subsequence (leetcode)

with some MCQs in Java and microservices

Round 2 - Technical 

(4 Questions)

  • Q1. What is java8. its features and uses
  • Ans. 

    Java 8 is a major release of the Java programming language with new features like lambda expressions, streams, and default methods.

    • Lambda expressions allow functional programming in Java.

    • Streams provide a new way to work with collections in a more concise and efficient manner.

    • Default methods allow interfaces to have method implementations.

    • Java 8 also introduced the new Date and Time API for better handling of date and ...

  • Answered by AI
  • Q2. Use of microsevices in java. and its implmenatation
  • Ans. 

    Microservices in Java are a way to design software applications as a collection of small, loosely coupled services.

    • Microservices architecture breaks down a large application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Each microservice typically focuses on a specific business function and communicates with other services through APIs.

    • Java is a popular language for implem...

  • Answered by AI
  • Q3. Design patterns in java.
  • Ans. 

    Design patterns in Java are reusable solutions to common problems in software design.

    • Design patterns help in creating maintainable and scalable code.

    • Examples include Singleton, Factory, Observer, Strategy, and Decorator patterns.

    • Each design pattern has its own purpose and implementation details.

    • Design patterns promote code reusability and flexibility in software development.

  • Answered by AI
  • Q4. Find the height of binary tree using recursion?
  • Ans. 

    Recursively find the height of a binary tree by comparing the heights of left and right subtrees.

    • Start by checking if the root is null, return -1 if so.

    • Recursively find the height of the left subtree and right subtree.

    • Return the maximum of the heights of the left and right subtrees, plus 1 for the current node.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Discussion about carrer summery. what is your roles and responsibilities in projects done by you. challanges faced in the developmenet area. how to identifty problems in code.
  • Q2. Find the longest substring in string without repeating characters
  • Ans. 

    Find the longest substring in a string without repeating characters.

    • Use a sliding window approach to iterate through the string.

    • Keep track of the characters seen so far in a set.

    • Update the start of the window when a repeating character is encountered.

    • Calculate the length of the current substring and update the longest substring found.

    • Repeat until the end of the string is reached.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In my interview all are basic questions only. but asked in tough format and real time scenarios.
so which makes us difficult. learn practical implications of this where we use and where not.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. HTML5 CSS3 Basics and Advanced
  • Q2. Javascript Basics and Advanced
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. RO basic questions Wiring Installation Electrical consumption unit Hvac
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find 3rd transaction of user from uber cab dataset
  • Ans. 

    To find the 3rd transaction of a user from the Uber cab dataset.

    • Identify the user's transactions in the dataset

    • Sort the transactions by date/time

    • Select the 3rd transaction of the user

  • Answered by AI
  • Q2. Find last quarter ordered product from logistics dataset
  • Ans. 

    To find the last quarter ordered product from logistics dataset.

    • Identify the date range for the last quarter

    • Filter the dataset for orders within that date range

    • Identify the product ordered in the last quarter

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked more question involved with cte, window function, subqueries
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. Explain how power bi works

Frontend Developer I Interview Questions & Answers

Viacom18 Media user image Anonymous

posted on 23 Aug 2024

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Merge 2 sorted Arrays
  • Ans. 

    Merging two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI
  • Q2. Write polyfill for getElementById
  • Ans. 

    Polyfill for getElementById function in JavaScript

    • Create a function named getElementById

    • Check if the function already exists, if not, create it

    • Use document.querySelector to select the element by ID

    • Return the selected element

  • Answered by AI
  • Q3. What are the new features in React 18 ? Optimisation techinques in React ? Concurrency in React ?
  • Ans. 

    React 18 introduces new features like automatic batching, start transition, and streaming server renderer. It also focuses on performance optimizations and concurrent rendering.

    • New features in React 18 include automatic batching, start transition, and streaming server renderer.

    • Optimization techniques in React 18 involve concurrent rendering, improved scheduling, and reduced re-renders.

    • Concurrency in React 18 allows for...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. HLD round to develop Autocomplete feature End to End with API contracts and architecture.
  • Q2. Remove duplicate characters from a sentence
  • Ans. 

    Remove duplicate characters from a sentence

    • Create an empty array to store unique characters

    • Iterate through each character in the sentence

    • Check if the character is already in the array, if not add it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare High Level Design rounds and ask what the interviewer actually wants

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain oracle Archit
  • Ans. 

    Oracle architecture is a multi-tiered system with components like client, server, and database.

    • Oracle architecture consists of client, server, and database components.

    • The client communicates with the server to access the database.

    • The server processes the client's requests and interacts with the database.

    • The database stores and manages the data.

    • Oracle architecture is designed to be scalable and secure.

  • Answered by AI
  • Q2. About pacting the database
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2024. There were 6 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test with LR questions

Round 2 - One-on-one 

(1 Question)

  • Q1. About what you do, your past experince and portfolio
Round 3 - Assignment 

Design assignment for their app.

Round 4 - One-on-one 

(1 Question)

  • Q1. Questions around submitted assignment
Round 5 - One-on-one 

(1 Question)

  • Q1. Final round with design head.
Round 6 - One-on-one 

(1 Question)

  • Q1. Cultural round questio. Situation based questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. Dictation on Shorthand
Round 3 - One-on-one 

(1 Question)

  • Q1. Background in depth

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself by above questions

Tell us how to improve this page.

Interview Questions from Similar Companies

PVR Inox Interview Questions
4.0
 • 154 Interviews
Comcast Interview Questions
4.0
 • 71 Interviews
Cinépolis Interview Questions
3.9
 • 52 Interviews
HT Media Interview Questions
3.3
 • 48 Interviews
Viacom18 Media Interview Questions
3.6
 • 26 Interviews
Planetcast Interview Questions
3.8
 • 20 Interviews
View all
Compare Aauid Media with

PVR Inox

4.0
Compare

Cinépolis

4.0
Compare

HT Media

3.3
Compare

Zee Entertainment Enterprises

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