Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Nokia Networks Senior Software Engineer Interview Questions, Process, and Tips

Updated 2 May 2023

Top Nokia Networks Senior Software Engineer Interview Questions and Answers

Nokia Networks Senior Software Engineer Interview Experiences

2 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Apr 2023. 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 Resume tips
Round 2 - Coding Test 

Some technical questions related to strings and Fibonacci series how this works in real world

Round 3 - Technical 

(1 Question)

  • Q1. Design systems and projects and also some technical questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Some puzzles and had a discussion with manager and that also partial technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics and some coding practice makes you to clear the interview

I applied via Naukri.com and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is the difference between global and static variable?
  • Ans. 

    Global variables can be accessed from any part of the program while static variables are limited to the scope they are declared in.

    • Global variables are declared outside of any function while static variables are declared inside a function with the static keyword.

    • Global variables can be modified by any part of the program while static variables retain their value even after the function they are declared in has finished...

  • Answered by AI
  • Q2. Write a optimised prime number program.
  • Ans. 

    An optimised prime number program is required for Senior Software Engineer position.

    • Use Sieve of Eratosthenes algorithm for better performance.

    • Start with 2 as the first prime number and eliminate all its multiples.

    • Continue eliminating multiples of primes until the desired range is reached.

    • Use bitwise operations for faster calculations.

    • Consider using multi-threading for larger ranges.

  • Answered by AI
  • Q3. Write a Linked list program with Add,delete,count & modify API features.
  • Ans. 

    Program to implement a linked list with Add, delete, count and modify API features.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with methods to add, delete, count and modify nodes

    • Use a head pointer to keep track of the first node

    • For add and modify, traverse the list to find the node to add/modify

    • For delete, traverse the list to find the node to delete and update the next pointers

    • For count, tr

  • Answered by AI
  • Q4. Write a program for binary search algorithm
  • Ans. 

    Program for binary search algorithm

    • Sort the array in ascending order

    • Set the lower and upper bounds of the search range

    • Calculate the middle index of the search range

    • Compare the middle element with the target value

    • If the middle element is equal to the target value, return its index

    • If the middle element is greater than the target value, search the left half of the range

    • If the middle element is less than the target value, ...

  • Answered by AI
  • Q5. What is a function pointer?Write down syntax for it
  • Ans. 

    A function pointer is a variable that stores the memory address of a function.

    • Function pointers can be used to pass functions as arguments to other functions.

    • Syntax: return_type (*pointer_name)(parameter_list);

    • Example: int (*func_ptr)(int, int) = &add;

    • Example: int result = (*func_ptr)(2, 3);

  • Answered by AI
  • Q6. Questions related to debugging using gdb.
  • Q7. Questions related Marvell platform and NPAPI relation to it

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic c programming,C concepts and OS basic concepts are most for this interview.Data structure/Algorithm concepts are also required.That's it!By doing c basic programming fine then it is easy to get into the interview completely

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

Interview questions from similar companies

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

30min duration C coding 10 questions asked

Round 2 - Assignment 

1hr duration interviewer will be giving some random C questions to code

Round 3 - One-on-one 

(2 Questions)

  • Q1. System programming
  • Q2. System design, os concepts

Interview Questionnaire 

1 Question

  • Q1. Questions asked about products knowledge, roles and responsibilities

Interview Preparation Tips

Round: Manger Round
Experience: Questions asked about products knowledge, roles and responsibilities

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Coding test data structures and language related

Round 3 - One-on-one 

(1 Question)

  • Q1. Related to resume technology
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Simple question from python list operations

Round 2 - One-on-one 

(2 Questions)

  • Q1. With Manager regarding what is job about.
  • Q2. What you did in your last project
Round 3 - Technical 

(1 Question)

  • Q1. Project owner about what you are going to do.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from your resume and about your projects you did in past.
Round 1 - One-on-one 

(1 Question)

  • Q1. Easy and fast going process
  • Ans. 

    Easy and fast going process

    • Define clear goals and objectives

    • Streamline communication channels

    • Implement agile methodologies

    • Automate repetitive tasks

    • Regularly review and optimize processes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - easy going and quick process. Hassle free and very straight in nature
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse linked list using the recursion
  • Ans. 

    Reverse a linked list using recursion

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null or the next node is null, return the head

    • Recursively call the function with the next node as input

    • Set the next node's next pointer to the current node

    • Set the current node's next pointer to null

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q2. Find max number in the linked list using stack.
  • Ans. 

    To find max number in linked list using stack.

    • Create an empty stack.

    • Traverse the linked list and push each element onto the stack.

    • Pop elements from the stack and compare with max value.

    • Return the max value.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics. Be confident
. Give answer properly

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Feb 2022. There were 5 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 - Coding Test 

Hacker rank codinv problems level medium

Round 3 - Technical 

(1 Question)

  • Q1. Coding round again D and S
Round 4 - Technical 

(1 Question)

  • Q1. System design tech dummies
Round 5 - HR 

(1 Question)

  • Q1. Common questions , why we should hire you , achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for D and S and system design depends on team and role in terms of difficulty
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 3 interview rounds.

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 Resume tips
Round 2 - Aptitude Test 

Aptitude relates questions... It was modratley difficult

Round 3 - Technical 

(3 Questions)

  • Q1. Twchnical rouns. Qas easy... Asked questions oc C and some. Projects
  • Q2. Reverse linked list using recursion
  • Ans. 

    Reverse a linked list using recursion

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null or the next node is null, return the head

    • Recursively call the function with the next node as input

    • Set the next node's next pointer to the current node

    • Set the current node's next pointer to null

    • Return the new head of the reversed linked list

  • Answered by AI
  • Q3. What is difference between mutex semaphore?
  • Ans. 

    Mutex is a locking mechanism to ensure exclusive access to a shared resource, while semaphore is a signaling mechanism to control access to a shared resource.

    • Mutex allows only one thread to access the shared resource at a time, while semaphore can allow multiple threads to access the shared resource simultaneously.

    • Mutex is binary, meaning it has only two states - locked and unlocked, while semaphore can have multiple s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just give your best.
. Interview will be easy
Rest all was good

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Nokia Networks Interview FAQs

How many rounds are there in Nokia Networks Senior Software Engineer interview?
Nokia Networks interview process usually has 4 rounds. The most common rounds in the Nokia Networks interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Nokia Networks Senior Software Engineer interview?

Some of the top questions asked at the Nokia Networks Senior Software Engineer interview -

  1. What is the difference between global and static variab...read more
  2. What is a function pointer?Write down syntax for...read more
  3. Write a Linked list program with Add,delete,count & modify API featur...read more

Recently Viewed

INTERVIEWS

Acro Technologies

No Interviews

INTERVIEWS

Gulf Asia Contracting

No Interviews

INTERVIEWS

Acro Technologies

No Interviews

INTERVIEWS

Sun Vacuum Formers

No Interviews

INTERVIEWS

Sun Vacuum Formers

No Interviews

INTERVIEWS

Nokia Networks

No Interviews

INTERVIEWS

Gulf Asia Contracting

No Interviews

INTERVIEWS

Sun Vacuum Formers

No Interviews

INTERVIEWS

Gulf Asia Contracting

No Interviews

INTERVIEWS

Gulf Asia Contracting

No Interviews

Tell us how to improve this page.

Nokia Networks Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Nokia Networks Senior Software Engineer Salary
based on 71 salaries
₹7 L/yr - ₹20.2 L/yr
20% less than the average Senior Software Engineer Salary in India
View more details

Nokia Networks Senior Software Engineer Reviews and Ratings

based on 10 reviews

4.0/5

Rating in categories

4.1

Skill development

3.5

Work-life balance

3.4

Salary

4.1

Job security

4.1

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 10 Reviews and Ratings
R&D Engineer
408 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
394 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Solution Specialist
256 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Specialist
246 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
243 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nokia Networks with

Ericsson

4.1
Compare

Huawei Technologies

4.0
Compare

Cisco

4.1
Compare

ZTE Corporation

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent