Upload Button Icon Add office photos

Filter interviews by

Nazara Technologies Interview Questions and Answers

Updated 30 Oct 2024

Nazara Technologies Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Details about your experience

Senior General Manager Interview Questions asked at other Companies

Q1. Raw material selection and how to get quality of finished products ?
View answer (1)

Interview questions from similar companies

Data Analyst Interview Questions & Answers

Octro user image Parth Jasathy

posted on 14 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Different question were asked on sql python java

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

There were two coding questions; one was related to linked lists, and the other was linked to binary trees.

Round 2 - Technical 

(4 Questions)

  • Q1. Can you elaborate on the project discussion you mentioned in your resume?
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Integrated authentication and authorization features for secure access

    • Implemented data visualization using Chart.js

  • Answered by AI
  • Q2. Can you provide the code to reverse a linked list?
  • Ans. 

    Reversing a linked list involves changing the direction of pointers to go from the end to the beginning.

    • Start by initializing three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction of the links.

    • Update the head of the linked list to point to the new first node, which was the original last node.

  • Answered by AI
  • Q3. Some questions were asked regarding the four pillars of Object-Oriented Programming (OOP)?
  • Q4. Questions related to pointers, dangling pointers.
Round 3 - Technical 

(4 Questions)

  • Q1. Program for finding the perfect squares between two numbers.
  • Ans. 

    Program to find perfect squares between two numbers

    • Iterate through numbers between the given range

    • Check if the square root of the number is an integer

    • If yes, then it is a perfect square

  • Answered by AI
  • Q2. What are smart pointers in C++?
  • Ans. 

    Smart pointers in C++ are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.

  • Answered by AI
  • Q3. What is mutual exclusion in the context of concurrent programming?
  • Ans. 

    Mutual exclusion is a concept in concurrent programming where only one thread can access a shared resource at a time.

    • Ensures that only one thread can access a critical section of code at a time

    • Prevents race conditions and data corruption

    • Commonly implemented using locks, semaphores, or mutexes

    • Example: Using a mutex to protect a shared variable in a multi-threaded application

  • Answered by AI
  • Q4. What is the process for implementing multithreading?
  • Ans. 

    Implementing multithreading involves creating and managing multiple threads to execute tasks concurrently.

    • Identify the tasks that can be executed concurrently

    • Create and manage multiple threads to execute these tasks simultaneously

    • Use synchronization techniques like locks and semaphores to prevent race conditions

    • Handle communication and coordination between threads

    • Consider thread safety and resource sharing issues

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed in Aug 2021. 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 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Why should we hire you?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
Round 3 - One-on-one 

(1 Question)

  • Q1. Same as earlier. Nothing different asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to earn pocket money. Good to learn people skills
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Javascript and React fundamentals
Round 2 - Coding Test 

Question completely out of domain

I appeared for an interview in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

The first round was scheduled in the evening time.
First of all interviewer introduced himself and after my introduction 
He directly shoot first DSA question. The question was easy but conceptual. I have solved some question with same concept and he ask me to share the screen and code in online compiler. Finally I was able to get correct output with all the use cases and I was like "Half work done!"
Then he asked me very core concepts of JavaScript along with that Some Output based questions.
Then finally he asked me theory questions on React along with my experience in React. 
The interviewer was very helpful as well as polite. I don't think if he will not help me during interview I could crack the interview

  • Q1. 

    Is the Sentence a Pangram?

    Ninja is relocating to a place called NinjaGram, and for school admission, he is required to identify if a given sentence is a pangram. Your task is to assist Ninja in determini...

  • Ans. 

    Yes, the sentence is a pangram if it includes every letter of the English alphabet at least once.

    • Check if the sentence contains all 26 letters of the English alphabet.

    • Convert the sentence to lowercase to simplify the checking process.

    • Use a set to keep track of the letters present in the sentence.

    • Iterate through the sentence and add each unique letter to the set.

    • After iterating, check if the set contains all 26 letters.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Vishwakarma Institute of Technology. Eligibility criteria1+ Years of ExperienceMPL interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, JavaScript, Operating System, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Code at least a single problem on your favourite coding platform with proper understanding of concept.
Tip 2 : Work on your resume, specifically try to grab some technical achievements(Hackathons, GSoc, etc) along with your degree which can stand out you from other candidates.
Tip 3 : Ask your friend for some mock interviews which can help you to excel in interview.

Application resume tips for other job seekers

Tip 1 : Project description should contain maximum keywords mentioned in Job Description. Success Matrix of project will give you an edge in the interview.
Tip 2 : Resume should be one page along with some clickable GitHub and Achievments links if possible.

Final outcome of the interviewSelected
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a sql query
  • Ans. 

    SQL query to retrieve employee names and their salaries from a table

    • Use SELECT statement to retrieve data

    • Specify the columns you want to retrieve (employee names and salaries)

    • Specify the table name where the data is stored

  • Answered by AI
  • Q2. Formula of vlookup
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in a table and return a corresponding value.

    • VLOOKUP searches for a value in the first column of a table and returns a value in the same row from a specified column.

    • The formula syntax is =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]).

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) will search for the value in cell A2 in the range B2:D10 and return the...

  • Answered by AI

Skills evaluated in this interview

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 - One-on-one 

(2 Questions)

  • Q1. Please share your relevant background experience
  • Ans. 

    I have 5 years of experience in sales and customer service.

    • Worked as a sales associate at XYZ Company for 3 years

    • Managed a team of 10 sales representatives

    • Achieved 20% increase in sales revenue in the first year

    • Received multiple awards for outstanding customer service

  • Answered by AI
  • Q2. How well do you work in teams
  • Ans. 

    I work very well in teams and thrive in collaborative environments.

    • I actively listen to others' ideas and opinions.

    • I contribute my own ideas and suggestions.

    • I am open to feedback and constructive criticism.

    • I communicate effectively and ensure everyone is on the same page.

    • I am reliable and accountable for my assigned tasks.

    • I support and encourage my team members.

    • I adapt easily to different team dynamics and work styles.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be punctual and keep your answers clear.

I applied via Walk-in and was interviewed in Apr 2022. There were 2 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 - HR 

(4 Questions)

  • Q1. Tell us about your self
  • Q2. Most memorable day , last movie,
  • Q3. Tell us about last day
  • Q4. What was your expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Introduction about yourself
2. Most memorable day, last movie, last day
3. Why do you want this job
Before attending interview know about the company
Be confident speak clearly and if you don't know anything just about any topic just tell them i don't know about it
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2022. There were 2 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 - Behavioral interview 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What technical skills have you used recently?
  • Q3. What is one conflict you have faced while working on a project/assignment?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself and don't think too much about the right answer.

Nazara Technologies Interview FAQs

How many rounds are there in Nazara Technologies interview?
Nazara Technologies interview process usually has 1 rounds. The most common rounds in the Nazara Technologies interview process are One-on-one Round.
How to prepare for Nazara Technologies 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 Nazara Technologies. The most common topics and skills that interviewers at Nazara Technologies expect are Angularjs, Automation Systems, Communication Skills, Javascript and MongoDB.

Tell us how to improve this page.

Nazara Technologies Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Games24x7 Interview Questions
3.7
 • 19 Interviews
DELTA Interview Questions
4.1
 • 19 Interviews
Baazi Games Interview Questions
3.2
 • 16 Interviews
WinZO Interview Questions
4.1
 • 14 Interviews
Octro Interview Questions
3.3
 • 5 Interviews
ABEC Interview Questions
3.9
 • 5 Interviews
Gamezop Interview Questions
3.7
 • 3 Interviews
View all

Nazara Technologies Reviews and Ratings

based on 13 reviews

3.0/5

Rating in categories

2.7

Skill development

3.0

Work-life balance

2.4

Salary

2.6

Job security

3.1

Company culture

2.1

Promotions

3.0

Work satisfaction

Explore 13 Reviews and Ratings
Product Manager
5 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Software Engineer
4 salaries
unlock blur

₹1.6 L/yr - ₹6 L/yr

QA Engineer
4 salaries
unlock blur

₹4 L/yr - ₹4.6 L/yr

Company Secretary and Compliance Officer
4 salaries
unlock blur

₹8.1 L/yr - ₹11 L/yr

Programmer
4 salaries
unlock blur

₹1.5 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Nazara Technologies with

Dream Sports India

4.2
Compare

Paytm First Games

3.7
Compare

Mobile Premier League

3.4
Compare

Games24x7

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