Upload Button Icon Add office photos

Filter interviews by

Nuclei Interview Questions, Process, and Tips

Updated 13 Sep 2024

Top Nuclei Interview Questions and Answers

View all 7 questions

Nuclei Interview Experiences

Popular Designations

5 interviews found

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

I applied via campus placement at Devi Ahilya Vishwa Vidhyalaya (DAVV), Indore and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It lasted for around 1hr 30 minutes, I have a nice developer profile, so they asked me simple DSA questions. I was asked to write the code on an online IDE and the question was given to me on google docs while the platform for the interview was gather.
The first question was a medium array question and the other one was a medium DP question.

Round 2 - Coding Test 

It lasted to 2hrs, they asked to design a system related to a payment application, I had to write a working implementation for the task given. the requirements were 5 pages on google docs and I had to implement that on the online IDE. After this, I was asked a lot of Core concepts related to DBMS, OOPS, OS, Network security and Computer Networks.

Round 3 - HR 

(4 Questions)

  • Q1. How do you help other, kindly Give real life examples.
  • Q2. Have you ever suggested someone an innovative idea? Give real life example
  • Q3. How do you help your peers with their growth? How do you contribute? Give real life example.
  • Q4. Are you able to communicate your problems with others, if so, what kind of problems do you share with others and with whom?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with either DSA or Development, if you are good enough with development, you will not need to worry much about the DSA part. Have a very clear understanding of core concepts.

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview

Junior Finance Executive Interview Questions & Answers

user image Shashank Shekhar Tiwari

posted on 6 Dec 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 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 - Technical 

(3 Questions)

  • Q1. Basics of accounting and gst
  • Q2. Accrual concept Advance expenses Accrued income Defferend revenue
  • Q3. Gstr return due date Tds section 194 j 192 ,194c
Round 3 - Technical 

(1 Question)

  • Q1. Same as first round but they ask ITC of gst
Round 4 - Technical 

(1 Question)

  • Q1. In some of the cases they took 3rd round it is also similar as first and second round

Interview Preparation Tips

Topics to prepare for Nuclei Junior Finance Executive interview:
  • Accounting basics
  • Goods and services tax
  • Input tax credit
  • TDS
  • MCA fillings
  • Due dates
Interview preparation tips for other job seekers - I am sharing my experience
They select my profile and conduct a first round of interview which was simple basics questions of accounts and taxation
Then assign me a task
And then second round of interview they ask me about the distance between particular area
And then go for 3rd round
In all of three I round I am confident for this job
Answers all the questions
But after three rounds
They reject me because of they are looking for more experienced candidates but they are looking for candidates who have 0-1 year of experience
And reason is provided by hr is first ly they tell me you are rejected because of we are looking for candidates having some more experience
And in mail they tell me you have great skills and technical knowledge but your profile is not matching with the profile

The whole interview process is takes 20-25 days
So really I am very much disappointed by their reason rejection is not an issue for me
But the reason is really very much disappointing

Junior Finance Executive Interview Questions asked at other Companies

Q1. What is the journal entry for prepaid rent. How will you classify that prepaid is an asset
View answer (1)
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:
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 - 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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Given a problem in DSA related to stack, queues, binary search, and binary tree

Round 2 - Technical 

(1 Question)

  • Q1. Asked about the DSA questions, optimizations and CS fundamentals
Round 3 - HR 

(1 Question)

  • Q1. Basic and regular HR questions, how do you make yourself accountable, why you should join the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on your DSA skills and CS fundamentals

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
Add answer

Nuclei interview questions for popular designations

 Full Stack Developer

 (2)

 Java Developer

 (1)

 Junior Finance Executive

 (1)

SDE 1 iOS Developer Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2023

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

I applied via campus placement at BNM Institute of Technology, Bangalore and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Coding Test 

I was asked 3 coding questions.

Round 3 - Technical 

(4 Questions)

  • Q1. DSA, OS and iOS fundamentals
  • Q2. Differentiate class and struct
  • Q3. Optionals in iOS
  • Q4. Custom implementatoion of optional

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Spark code optimization
  • Q2. Data formats in big Data, why each format.
  • Ans. 

    Different data formats in big data are used for various purposes like storage efficiency, data processing speed, and compatibility with different systems.

    • JSON: Lightweight, human-readable, and widely supported for web applications.

    • Parquet: Columnar storage format for efficient querying and processing of large datasets.

    • Avro: Schema-based serialization format with support for complex data types.

    • ORC: Optimized Row Columna...

  • Answered by AI
  • Q3. Leet code - Most freq elem in a list
  • Ans. 

    Find the most frequent element in a list of strings.

    • Iterate through the list and count the frequency of each element using a dictionary.

    • Track the element with the highest frequency as you iterate.

    • Return the element with the highest frequency.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had three rounds, each round of one hour each.

Questions from Past Work Experience
Coding
Data Engineering, cloud.
Leet code.

Cleared all the rounds and HR verbally committed the offer and disappeared (stopped responding), without any updates.

Even if you get an offer from Extreme Networks better keep a backup offer, their decisions are dynamic so there is a high chance of offer getting revoked.

Skills evaluated in this interview

Strategic Sourcing Analyst III Interview Questions & Answers

Cradlepoint user image Anonymous

posted on 28 Sep 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
6-8 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Na not applicable
  • Q2. Na not applicable right now

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a very bad experience with HR recruiter - Priya Mukund and Talent head- Prafula Deoria.
It took around 1 month , 3 rounds of interview with panels. I have cleared all the interview rounds . I had received call from HR head as a general discussion , it is not related to salary negotiation nothing. Straight away he confirmed i have cleared all the rounds, then I asked when will I receive final feedback and offer letter then he said by tomorrow. Afterwards I called my recruiter Priya Mukund and tell that I got call for HR round. She confirmed that you got 4/4 ratings. You are only selected for this role. Make sure not to decline the offer.
Afterwards every one went silent and I was the one who was chasing then after multiple follow ups Prafula was only giving timelines and then he said my profile is putted on HOLD.
This is very bad behaviour of HR to the person who is already suffering with Job loss.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were around 60 questions and negative marking was also there

Round 2 - Technical 

(4 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Full Stack Developer with experience in front-end and back-end technologies.

    • Proficient in HTML, CSS, JavaScript for front-end development

    • Skilled in Node.js, Express, MongoDB for back-end development

    • Experience with React.js and Angular for building interactive web applications

  • Answered by AI
  • Q2. What is diamond problem
  • Ans. 

    Diamond problem is a common issue in multiple inheritance where a class inherits from two classes that have a common ancestor.

    • Occurs in languages that support multiple inheritance like C++

    • Results in ambiguity when calling methods or accessing attributes from the common ancestor class

    • Can be resolved using virtual inheritance or interfaces

  • Answered by AI
  • Q3. Run length encoding dsa problem
  • Ans. 

    Run length encoding is a data compression technique that replaces repeated characters with a count and single character.

    • Iterate through the input array of strings

    • Count the number of consecutive characters in each string

    • Replace consecutive characters with count and character

  • Answered by AI
  • Q4. Rotate an array by d times
  • Ans. 

    Rotate an array of strings by d times

    • Create a new array and copy elements from original array based on rotation index

    • Use modulo operator to handle cases where d is greater than array length

    • Handle edge cases like empty array or d being negative

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Based on Projects on Resume
  • Q2. Frequency Divider code

Interview Preparation Tips

Topics to prepare for Avantel Fpga Engineer interview:
  • DSP
  • Digital ommunication
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. It was one on one round they just simply ask about your skills and Ur work experience and questions on that.
Round 2 - One-on-one 

(1 Question)

  • Q1. This is another person who is head of the Data department asks simple question based on your resume no technical rounds asks about buisness scenario
Round 3 - HR 

(1 Question)

  • Q1. Basic question about us

Interview Preparation Tips

Topics to prepare for Psiog Digital Business Intelligence Analyst and Tableau Developer interview:
  • SQL
Interview preparation tips for other job seekers - Please don't attend this company they call u and they ll select u in second round they just get to know and they say they will call they won't just for fun they interview and mock you and also the job description for the same work has been changed after I got interviewed and to five years if Ur not sure about that then why give hope to candidates and break them???. I don't recommend this company or u will be shattered.
Contribute & help others!
anonymous
You can choose to be anonymous

Nuclei Interview FAQs

How many rounds are there in Nuclei interview?
Nuclei interview process usually has 3-4 rounds. The most common rounds in the Nuclei interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Nuclei 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 Nuclei. The most common topics and skills that interviewers at Nuclei expect are Java, Algorithms, Data Structures, Hibernate and Kubernetes.
What are the top questions asked in Nuclei interview?

Some of the top questions asked at the Nuclei 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.

Nuclei Interview Process

based on 6 interviews

Interview experience

4
  
Good
View more

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 778 Interviews
PolicyBazaar Interview Questions
3.6
 • 346 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
Razorpay Interview Questions
3.6
 • 150 Interviews
Mobikwik Interview Questions
4.1
 • 47 Interviews
Paytm Money Interview Questions
3.2
 • 30 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
BillDesk Interview Questions
3.2
 • 14 Interviews
Zerodha Interview Questions
4.2
 • 9 Interviews
View all

Nuclei Reviews and Ratings

based on 22 reviews

2.7/5

Rating in categories

3.1

Skill development

2.5

Work-life balance

2.0

Salary

3.2

Job security

3.0

Company culture

2.2

Promotions

2.7

Work satisfaction

Explore 22 Reviews and Ratings
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
10 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Associate Product Manager
7 salaries
unlock blur

₹5.9 L/yr - ₹10 L/yr

IOS Developer
6 salaries
unlock blur

₹9.8 L/yr - ₹11 L/yr

Explore more salaries
Compare Nuclei with

Razorpay

3.6
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
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