Upload Button Icon Add office photos

Nokia

Compare button icon Compare button icon Compare
4.1

based on 2.3k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Nokia Janitor Interview Questions and Answers

Updated 18 Mar 2024

Nokia Janitor Interview Experiences

2 interviews found

Janitor Interview Questions & Answers

user image Anonymous

posted on 18 Mar 2024

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

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

Round 1 - Recorded 

(1 Question)

  • Q1. What’s your favourite place to clean
Round 2 - HR 

(1 Question)

  • Q1. Tell us about yourself

Janitor Interview Questions & Answers

user image Anonymous

posted on 18 Mar 2024

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

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

Round 1 - pre-recorded 

(1 Question)

  • Q1. What's your favorite place to clean?
  • Ans. 

    My favorite place to clean is the library because I love the peaceful atmosphere and the smell of books.

    • I enjoy organizing the shelves and ensuring all the books are in order

    • I take pride in keeping the reading areas tidy and welcoming for patrons

    • I appreciate the opportunity to contribute to a space dedicated to knowledge and learning

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell us about yourself

Janitor Interview Questions Asked at Other Companies

asked in Nokia
Q1. what's your favorite place to clean?
Q2. Which soap do you use?

Interview questions from similar companies

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

(2 Questions)

  • Q1. Priority queue question
  • Q2. Thread related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Message queue related questions
  • Q2. Multi threading related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OS and Multi threading
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Memory management in java 8
  • Ans. 

    Java 8 introduced improvements in memory management with features like Metaspace and G1 garbage collector.

    • Java 8 introduced Metaspace to replace the PermGen space for class metadata storage.

    • G1 garbage collector in Java 8 improves garbage collection performance by dividing the heap into regions.

    • Java 8 also introduced the concept of String deduplication to reduce memory usage for String objects.

  • Answered by AI
  • Q2. CQRS pattern in microservices
  • Ans. 

    CQRS pattern separates read and write operations in microservices for better scalability and performance.

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations in microservices

    • Write operations update the data, while read operations retrieve the data

    • Helps in improving scalability and performance by optimizing for each operation type

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude test and basic coding questions like arrays and strings

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

(2 Questions)

  • Q1. How to pull the large amount of data in spring data jpa
  • Ans. 

    To pull large amount of data in Spring Data JPA, use pagination, lazy loading, and query optimization techniques.

    • Use pagination to limit the amount of data retrieved in each query

    • Implement lazy loading to fetch data only when needed

    • Optimize queries by using indexes, avoiding N+1 query problem, and fetching only necessary columns

  • Answered by AI
  • Q2. Write singleton class
  • Ans. 

    Singleton class ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private static instance of the class

    • Provide a private constructor to prevent instantiation

    • Create a public static method to access the instance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

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 Sep 2023. 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 - Technical 

(5 Questions)

  • Q1. Difference btwn jdk , jre and jvm
  • Ans. 

    JDK is a development kit that includes JRE and tools for developing Java applications. JRE is a runtime environment for executing Java programs. JVM is a virtual machine that runs Java bytecode.

    • JDK (Java Development Kit) includes JRE (Java Runtime Environment) and development tools like compiler and debugger.

    • JRE (Java Runtime Environment) is a software package that provides the libraries and components necessary for ru...

  • Answered by AI
  • Q2. Difference btwn static and volatile
  • Ans. 

    Static variables are shared among all instances of a class, while volatile variables are used to indicate that a variable's value will be modified by different threads.

    • Static variables are initialized only once at the start of the program and retain their value throughout the program's execution.

    • Volatile variables are used to ensure visibility of changes to variables across multiple threads.

    • Static variables are accesse...

  • Answered by AI
  • Q3. What is final keyword
  • Ans. 

    Final keyword is used in Java to declare constants, prevent method overriding, and prevent class inheritance.

    • Used to declare constants - value cannot be changed once assigned

    • Prevents method overriding - method cannot be overridden in child classes

    • Prevents class inheritance - class cannot be extended

  • Answered by AI
  • Q4. Difference btwn paralle stream and stream
  • Ans. 

    Parallel stream allows processing elements concurrently, while stream processes elements sequentially.

    • Parallel stream can improve performance by utilizing multiple threads for processing.

    • Stream processes elements one by one in a sequential manner.

    • Example: stream().parallel() vs stream().sequential()

  • Answered by AI
  • Q5. What is stream used for
  • Ans. 

    Streams are used in Java to process collections of objects in a functional style.

    • Streams allow for concise and readable code when working with collections.

    • They support operations like filter, map, reduce, and collect.

    • Streams can be sequential or parallel, depending on the processing requirements.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(S

  • Answered by AI

Skills evaluated in this interview

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

Java take home assignment

Round 2 - Technical 

(1 Question)

  • Q1. Discussing coding assignment
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Asking related to java, and good knowledge of Oops concepts
  • Q2. Basic java program
Round 3 - PM 

(2 Questions)

  • Q1. Asking past project and technology that you are using
  • Q2. API related question like rest, sop
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Aptitude Test 

Mcqs was good was reasonable covered h=java

Round 2 - Technical 

(1 Question)

  • Q1. Technical round
Round 3 - HR 

(1 Question)

  • Q1. Hr round was good

Nokia Interview FAQs

How many rounds are there in Nokia Janitor interview?
Nokia interview process usually has 2 rounds. The most common rounds in the Nokia interview process are HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 862 Interviews
Bharti Airtel Interview Questions
4.0
 • 818 Interviews
Samsung Interview Questions
4.0
 • 552 Interviews
Vodafone Idea Interview Questions
4.1
 • 544 Interviews
Ericsson Interview Questions
4.2
 • 406 Interviews
LG Electronics Interview Questions
4.0
 • 188 Interviews
Apple Interview Questions
4.2
 • 140 Interviews
Verizon Interview Questions
4.1
 • 111 Interviews
Xiaomi Interview Questions
3.8
 • 84 Interviews
View all
Technical Lead
499 salaries
unlock blur

₹7.4 L/yr - ₹28.5 L/yr

Technical Specialist
472 salaries
unlock blur

₹11 L/yr - ₹32 L/yr

Software Engineer
452 salaries
unlock blur

₹6 L/yr - ₹23.3 L/yr

R&D Engineer
434 salaries
unlock blur

₹7 L/yr - ₹25.7 L/yr

Senior Technical Specialist
243 salaries
unlock blur

₹16.7 L/yr - ₹43 L/yr

Explore more salaries
Compare Nokia with

Samsung

4.0
Compare

Apple

4.2
Compare

Huawei Technologies

4.0
Compare

Xiaomi

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