Upload Button Icon Add office photos

Nagravision

Compare button icon Compare button icon Compare

Filter interviews by

Nagravision Interview Questions and Answers

Updated 25 Oct 2024
Popular Designations

10 Interview questions

A Software Engineer Trainee was asked 8mo ago
Q. If you had to develop a music app like Spotify using core Java, which concepts would you implement?
Ans. 

Core Java concepts for developing a music app like Spotify include OOP, Collections, Streams, and Multithreading.

  • Object-Oriented Programming (OOP): Use classes to represent songs, playlists, and users.

  • Collections Framework: Utilize ArrayLists for managing playlists and HashMaps for user data.

  • Java Streams: Implement streaming features for playing music and processing playlists.

  • Multithreading: Handle multiple user r...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. Given an integer n, return the factorial of n.
Ans. 

Calculate the factorial of a number, which is the product of all positive integers up to that number.

  • Factorial of n (n!) is defined as n * (n-1) * (n-2) * ... * 1.

  • Example: 5! = 5 * 4 * 3 * 2 * 1 = 120.

  • Factorial of 0 is defined as 1 (0! = 1).

  • Factorials grow very quickly; for example, 10! = 3,628,800.

  • Can be computed using recursion or iteration.

View all Software Engineer Trainee interview questions
A Senior Cloud Engineer was asked 11mo ago
Q. Write a Dockerfile.
Ans. 

A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

  • Start with a base image using the FROM keyword

  • Use the RUN keyword to execute commands in the container

  • Use the COPY keyword to add files from the host machine to the container

  • Use the CMD keyword to specify the command to run when the container starts

View all Senior Cloud Engineer interview questions
An Automation Test Engineer was asked
Q. Explain how the put function works in a hash map.
Ans. 

The put function in a hash map is used to insert a key-value pair into the map.

  • Use the put() method to add a key-value pair to a hash map.

  • Syntax: map.put(key, value);

  • Example: map.put("key1", "value1");

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked
Q. Write code to automate a POST method.
Ans. 

Automate post method using code

  • Use a testing framework like Selenium or Appium to automate the post method

  • Identify the endpoint URL and parameters needed for the post request

  • Write code to send a post request with the required parameters

  • Validate the response received from the post request

View all Automation Test Engineer interview questions
An Automation Test Engineer was asked
Q. Explain the concepts of REST.
Ans. 

REST stands for Representational State Transfer, a software architectural style that defines a set of constraints to be used for creating web services.

  • REST is based on the idea of treating server objects as resources that can be created, read, updated, and deleted using standard HTTP methods.

  • It uses a stateless communication protocol, meaning each request from a client to a server must contain all the information ...

View all Automation Test Engineer interview questions
A Jr. Software Trainee was asked
Q. Programs on string array
Ans. 

Programs on string array involve manipulating an array of strings using various operations.

  • Use loops to iterate through the array of strings

  • Implement functions to perform operations like sorting, searching, or modifying strings

  • Examples: sorting strings in alphabetical order, searching for a specific string, concatenating strings

View all Jr. Software Trainee interview questions
Are these interview questions helpful?
🔥 Asked by recruiter 3 times
A Software Developer was asked
Q. How many coding languages have you learned?
Ans. 

I have learned multiple coding languages including Java, Python, and C++.

  • Proficient in Java, Python, and C++

  • Familiar with HTML, CSS, and JavaScript

  • Experience with SQL and database management

  • Knowledge of object-oriented programming principles

  • Understanding of algorithms and data structures

View all Software Developer interview questions
A Software Testing Trainer was asked
Q. Array max and min Types of selenium locators Where do you use xpath and its types
Ans. 

Selenium locators include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

  • Types of Selenium locators include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

  • XPath is used when other locators are not suitable or when locating elements based on complex conditions.

  • Types of XPath include Absolute XPath and Relative XPath.

  • Example: driver.findEl...

View all Software Testing Trainer interview questions
A Software Testing Trainer was asked
Q. Java program for array reverse Java program for recursion Balanced paranthesis using stack Why do we use constructor in java Smoke testing defect life cycle sdlc stlc
Ans. 

Java program for array reverse, recursion, balanced parenthesis using stack, constructor usage, and defect life cycle in testing.

  • Array reverse: Use a for loop to swap elements from start to end.

  • Recursion: A method that calls itself to solve a problem.

  • Balanced parenthesis using stack: Push opening brackets onto stack and pop when closing brackets are encountered.

  • Constructor in Java: Used to initialize objects of a ...

View all Software Testing Trainer interview questions

Nagravision Interview Experiences

18 interviews found

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 Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ's and speech assesment,DSA ,C,Git,Dbms, everything was included and last part u will be able to choose language of your choice i chose java

Round 2 - Technical 

(2 Questions)

  • Q1. For core Java if u have to develop a music app for ex Spotify which concepts can be implemented in java .
  • Ans. 

    Core Java concepts for developing a music app like Spotify include OOP, Collections, Streams, and Multithreading.

    • Object-Oriented Programming (OOP): Use classes to represent songs, playlists, and users.

    • Collections Framework: Utilize ArrayLists for managing playlists and HashMaps for user data.

    • Java Streams: Implement streaming features for playing music and processing playlists.

    • Multithreading: Handle multiple user reques...

  • Answered by AI
  • Q2. AWS,cloud computing autoscaling ,IAM etc

Interview Preparation Tips

Topics to prepare for Nagravision Software Engineer Trainee interview:
  • Github
  • C++
  • Cloud Computing
  • DBMS
  • C
  • Javascript Frameworks
Interview preparation tips for other job seekers - Be thorough with your resumeb
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic aptitude question and easy to solve

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and eager to learn and grow in the software engineering field.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and technology

    • Eager to learn and grow in the software engineering field

  • Answered by AI
  • Q2. Coding question on factorial
  • Ans. 

    Calculate the factorial of a number, which is the product of all positive integers up to that number.

    • Factorial of n (n!) is defined as n * (n-1) * (n-2) * ... * 1.

    • Example: 5! = 5 * 4 * 3 * 2 * 1 = 120.

    • Factorial of 0 is defined as 1 (0! = 1).

    • Factorials grow very quickly; for example, 10! = 3,628,800.

    • Can be computed using recursion or iteration.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

    • Completed internships at tech companies to gain practical experience

  • Answered by AI
  • Q2. Family background ,strength and weekness

Automation Test Engineer Interview Questions & Answers

user image thanmaya Rajeshwar

posted on 8 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Explain how put function in from hash map
  • Ans. 

    The put function in a hash map is used to insert a key-value pair into the map.

    • Use the put() method to add a key-value pair to a hash map.

    • Syntax: map.put(key, value);

    • Example: map.put("key1", "value1");

  • Answered by AI
  • Q2. Explain the concepts of rest
  • Ans. 

    REST stands for Representational State Transfer, a software architectural style that defines a set of constraints to be used for creating web services.

    • REST is based on the idea of treating server objects as resources that can be created, read, updated, and deleted using standard HTTP methods.

    • It uses a stateless communication protocol, meaning each request from a client to a server must contain all the information neces...

  • Answered by AI
  • Q3. Write code to automate post method
  • Ans. 

    Automate post method using code

    • Use a testing framework like Selenium or Appium to automate the post method

    • Identify the endpoint URL and parameters needed for the post request

    • Write code to send a post request with the required parameters

    • Validate the response received from the post request

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for core Java concepts

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image vijay krishna

posted on 18 Nov 2023

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

I applied via Naukri.com and was interviewed in May 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Terraform based questions Ansible based questions Python based questions Monitoring tools such as grafana and Prometheus
Round 3 - Technical 

(1 Question)

  • Q1. Monitoring tools such as grafana and Prometheus Terraform based questions
Round 4 - HR 

(1 Question)

  • Q1. About previous company work and why did I leave the job sort of questions
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Apti round is tougher and lot of questions should be solved

Round 3 - Technical 

(2 Questions)

  • Q1. Questions about framework in java
  • Q2. Programs on string array
  • Ans. 

    Programs on string array involve manipulating an array of strings using various operations.

    • Use loops to iterate through the array of strings

    • Implement functions to perform operations like sorting, searching, or modifying strings

    • Examples: sorting strings in alphabetical order, searching for a specific string, concatenating strings

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java program for array reverse Java program for recursion Balanced paranthesis using stack Why do we use constructor in java Smoke testing defect life cycle sdlc stlc
  • Ans. 

    Java program for array reverse, recursion, balanced parenthesis using stack, constructor usage, and defect life cycle in testing.

    • Array reverse: Use a for loop to swap elements from start to end.

    • Recursion: A method that calls itself to solve a problem.

    • Balanced parenthesis using stack: Push opening brackets onto stack and pop when closing brackets are encountered.

    • Constructor in Java: Used to initialize objects of a class...

  • Answered by AI
  • Q2. Array max and min Types of selenium locators Where do you use xpath and its types
  • Ans. 

    Selenium locators include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

    • Types of Selenium locators include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and XPath.

    • XPath is used when other locators are not suitable or when locating elements based on complex conditions.

    • Types of XPath include Absolute XPath and Relative XPath.

    • Example: driver.findElement...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Balanced paranthesis using stack
Array reverse
Array max and min
Mostly they ask

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2022. There were 4 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 - Aptitude Test 

Java,ETL (Power centre designing),SQL

Round 3 - Coding Test 

Java,ETL(Power centre designing),SQL

Round 4 - HR 

(2 Questions)

  • Q1. Discuss about salary
  • Q2. What is the annual income

Interview Preparation Tips

Topics to prepare for Nagravision Java Developer interview:
  • Java oops,SQL joints
Interview preparation tips for other job seekers - All are happy who are getting to best job in IT sector
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic React questions - What are functional components ?.
  • Q2. Basic redux questions - What is action, store, dispatch ?
Round 2 - HR 

(2 Questions)

  • Q1. About your recent projects.
  • Q2. Why join this company ?

Interview Preparation Tips

Topics to prepare for Nagravision Senior Software Engineer 1 interview:
  • React Native
  • Redux
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About Kubernetes
  • Q2. Write Docker file
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image using the FROM keyword

    • Use the RUN keyword to execute commands in the container

    • Use the COPY keyword to add files from the host machine to the container

    • Use the CMD keyword to specify the command to run when the container starts

  • Answered by AI
Round 2 - Coding Test 

Write Ansible Playbooks

Round 3 - HR 

(1 Question)

  • Q1. Normal HR Questions

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 29 Jun 2022

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Core Java questions and problem solving (easy to medium)

Round 2 - Technical 

(1 Question)

  • Q1. About Projects and architecture
Round 3 - HR 

(1 Question)

  • Q1. Normal HR questions and package discussion

Interview Preparation Tips

Topics to prepare for Nagravision interview:
  • Core Java
  • Spring Boot
  • Data Structures
  • Algorithms
  • Technical Architecture
Interview preparation tips for other job seekers - Core Java concepts
Basic DS/Algo
Spring, Hibernate, SQL

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Nagravision?
Ask anonymously on communities.

Nagravision Interview FAQs

How many rounds are there in Nagravision interview?
Nagravision interview process usually has 2-3 rounds. The most common rounds in the Nagravision interview process are Technical, HR and Resume Shortlist.
How to prepare for Nagravision 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 Nagravision. The most common topics and skills that interviewers at Nagravision expect are Python, Agile, Computer science, Javascript and Digital Media.
What are the top questions asked in Nagravision interview?

Some of the top questions asked at the Nagravision interview -

  1. For core Java if u have to develop a music app for ex Spotify which concepts ca...read more
  2. Java program for array reverse Java program for recursion Balanced paranthesis...read more
  3. How much coding language do you have lear...read more
How long is the Nagravision interview process?

The duration of Nagravision interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 11 interview experiences

Difficulty level

Easy 25%
Moderate 50%
Hard 25%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
View more

Interview Questions from Similar Companies

JMR Infotech Interview Questions
4.2
 • 33 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
DISYS Interview Questions
3.1
 • 27 Interviews
EagleView Interview Questions
3.3
 • 21 Interviews
View all

Nagravision Reviews and Ratings

based on 118 reviews

3.6/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.5

Salary

3.3

Job security

3.5

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 118 Reviews and Ratings
Software Engineer
154 salaries
unlock blur

₹7.9 L/yr - ₹14 L/yr

Senior Software Engineer
154 salaries
unlock blur

₹14.9 L/yr - ₹26.2 L/yr

Software Expert
51 salaries
unlock blur

₹25 L/yr - ₹36.6 L/yr

Software Developer
20 salaries
unlock blur

₹5.6 L/yr - ₹14.1 L/yr

Engineering Manager
16 salaries
unlock blur

₹27.2 L/yr - ₹45.4 L/yr

Explore more salaries
Compare Nagravision with

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

Saama Technologies

3.7
Compare

DISYS

3.1
Compare
write
Share an Interview