Upload Button Icon Add office photos

Filter interviews by

Nuclei Java Developer Interview Questions, Process, and Tips

Updated 1 Dec 2022

Nuclei Java Developer Interview Experiences

1 interview 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 Nov 2022. 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 - Technical 

(2 Questions)

  • Q1. What are spring bean scope ?
  • Ans. 

    Spring bean scope defines the lifecycle and visibility of a bean in the Spring container.

    • Singleton scope: Only one instance of the bean is created and shared across the application.

    • Prototype scope: A new instance of the bean is created every time it is requested.

    • Request scope: A new instance of the bean is created for each HTTP request.

    • Session scope: A new instance of the bean is created for each HTTP session.

    • Global se...

  • Answered by AI
  • Q2. Explain internal working of hashmap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to provide constant time complexity for basic operations.

    • HashMap internally uses an array of linked lists called buckets to store the key-value pairs.

    • When a key-value pair is added, the hash code of the key is computed and used to determine the index of the bucket.

    • If multiple key-value pairs have the same hash code, they are stored as a linked lis...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Situtional based question asked, basically problem solving kind.
  • Q2. What is the difference between Spring singletone ans java singletone ?
  • Ans. 

    The main difference is that Spring singleton is managed by the Spring container, while Java singleton is managed by the developer.

    • Spring singleton is created and managed by the Spring container, while Java singleton is created and managed by the developer.

    • Spring singleton is a design pattern used in Spring framework to create a single instance of a class, while Java singleton is a design pattern used in Java to create ...

  • Answered by AI
  • Q3. Singletone is Thread Safe?
  • Ans. 

    No

    • Singleton is not inherently thread-safe

    • Multiple threads can access and modify the singleton instance simultaneously

    • To make it thread-safe, synchronization or double-checked locking can be used

    • Alternatively, an enum implementation of singleton is inherently thread-safe

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic should be clear in core java, Exception handeling and collections use.

Skills evaluated in this interview

Interview questions from similar companies

Java Developer Interview Questions & Answers

Avantel user image Purna chandra sekhar Chitturi

posted on 28 Oct 2024

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Dp
stirngs
sortings

Round 2 - Technical 

(2 Questions)

  • Q1. Based on cn and dsa
  • Q2. Based on the os
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Coding Test 

First round was a DSA round. Interviewers were helpful.

Round 2 - Technical 

(1 Question)

  • Q1. It was a technical round with the team lead.

Software Developer Interview Questions & Answers

Vtiger Systems user image 21501A0519 BILLA DEEKSHITHA

posted on 12 Nov 2024

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

Basic aptitude problem time speed and distance

Interview experience
1
Bad
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Bascic html and django questions
Round 3 - Coding Test 

Waste of time and energy sql queries

Round 4 - HR 

(1 Question)

  • Q1. Salary negotation and location details

Interview Preparation Tips

Interview preparation tips for other job seekers - dont look at it
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Job Fair and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 data struture question advancevds i cpp

Round 2 - Technical 

(2 Questions)

  • Q1. 5 dsa array string
  • Ans. 

    Implement a data structure for storing and manipulating an array of strings.

    • Use a dynamic array to store the strings.

    • Implement functions for adding, removing, and accessing strings in the array.

    • Consider memory management and resizing the array as needed.

  • Answered by AI
  • Q2. Data sturucture
Round 3 - HR 

(1 Question)

  • Q1. Resume based question

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Skills evaluated in this interview

Java Developer Interview Questions & Answers

Avantel user image Purna chandra sekhar Chitturi

posted on 28 Oct 2024

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Dp
stirngs
sortings

Round 2 - Technical 

(2 Questions)

  • Q1. Based on cn and dsa
  • Q2. Based on the os
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology, (NIT), Sikkim and was interviewed in Sep 2023. 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 - Coding Test 

It is consisting of 5 questions,and each question carry 20 marks.difficulaty level of the question is easy to moderate.

Round 3 - Technical 

(1 Question)

  • Q1. They were asking mainy DSA, project,and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have a strong command on DSA as well as u should have a project

I was interviewed in Apr 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing was 12 PM. Interviewer was nice.

  • Q1. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered by CodingNinjas
  • Q2. Move Zeros To Left

    You are given an array 'ARR' of integers. Your task is to modify the array so that all the array elements having zero values get pushed to the left and all the array elements hav...

  • Ans. Solution Using Extra space

    The idea is to use an extra vector to store all the non-zero elements while maintaining their relative order. So we will first add all the non-zero elements to a vector and then iterate that vector backwards and start updating the array values from end. In the end we will set all the array values whose values were not updated to 0. 

    Steps:

    1. Let storeNonZero be the vector that stores non-zero...
  • Answered by CodingNinjas
  • Q3. SQL Question

    Write SQL query to find second highest salary from a table.

  • Q4. Aptitude Question

    Given a Circle and Six Straight Lines. What is the maximum number of pieces that one can cut the circle using these six straight lines?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - 1 in NoidaEligibility criteriaAbove 8 CGPAWatchGuard Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice problem solving questions.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

4 Easy to Medium Leetcode Type Questions on Signal Hire Platform

Round 2 - Technical 

(1 Question)

  • Q1. Not Selected as all Girls were only selected in OA

Interview Preparation Tips

Interview preparation tips for other job seekers - Gender Based Hiring Only-Selected All Girls after Online Assesment, Did not selected even a single male even solved all questions. Gender over Skill Set👎👎

Nuclei Interview FAQs

How many rounds are there in Nuclei Java Developer interview?
Nuclei interview process usually has 3 rounds. The most common rounds in the Nuclei interview process are Technical and Resume Shortlist.
What are the top questions asked in Nuclei Java Developer interview?

Some of the top questions asked at the Nuclei Java Developer interview -

  1. What is the difference between Spring singletone ans java singleton...read more
  2. what are spring bean scop...read more
  3. explain internal working of hashm...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 744 Interviews
PolicyBazaar Interview Questions
3.6
 • 306 Interviews
PhonePe Interview Questions
4.0
 • 292 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Mobikwik Interview Questions
4.0
 • 44 Interviews
Paytm Money Interview Questions
3.4
 • 30 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
BillDesk Interview Questions
3.2
 • 13 Interviews
Avantel Interview Questions
4.0
 • 12 Interviews
View all
Product Manager
14 salaries
unlock blur

₹13 L/yr - ₹27 L/yr

Software Developer
13 salaries
unlock blur

₹4.5 L/yr - ₹16 L/yr

Software Development Engineer II
7 salaries
unlock blur

₹20 L/yr - ₹33 L/yr

IOS Developer
6 salaries
unlock blur

₹9.8 L/yr - ₹11 L/yr

Associate Product Manager
6 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Explore more salaries
Compare Nuclei with

Razorpay

3.6
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
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