Nucleus Software interview experience Real time questions & tips from candidates to crack your interview

Associate Software Engineer

Nucleus Software
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
In 2019, I got admission to the Vindhya Institute of Technology & Science, Satna, Madhya Pradesh. At that time, I was completely unaware of the IT sector and how to crack a good product-based company. My college helped me learn DSA and competitive programming, which is very important for placement. In my final year, Nucleus Software visited my campus, and luckily, I got placed in it.
Application story
Nucleus Software visited our campus in November 2022. It was a one-day process. There was an eligibility criterion to have at least 7 GPAs, and I fulfilled that criterion. The recruitment process consists of 3 rounds, and before that, there was a presentation from Nucleus Software, which consisted of the Job Description and various achievements of Nucleus Software.
Why selected/rejected for the role?
I got selected for this role because my interview went well. I was able to answer almost all the questions, and the interviewer was quite satisfied with my answers.
Preparation
Duration: 5 months
Topics: Data Structures and Algorithms, OOPS, Core Java, MySql, Spring & Hibernate, JavaScript
Tip
Tip

Tip 1 : First of all, clear basic concepts of Oops, Sql, Core Java, and Dbms.
Tip 2 : Practice DSA as much as possible and solve at least 200 questions 
Tip 3 : Try to maintain good coding profiles.
Tip 4 : Also, brush up your development skills.

Application process
Where: Campus
Eligibility: 7 CGPA
Resume Tip
Resume tip

Tip 1 : Mention your coding profile and Development skills.
Tip 2 : Mention your projects and give the URL of live projects.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date1 Nov 2022
Coding problem1

This round was conducted in the college campus only. It was conducted around 10 AM and more than 250 students appeared in that round and 30 were able to clear that round. The mcq were easy but the coding question was bit hard.

1. Palindromes And Indexes

Moderate
50m average time
44% success
0/80
Asked in companies
MicrosoftD.E.ShawNucleus Software

You are given a string S consisting of lowercase characters only, an index ‘i’ and length ‘len’. Your task is to find the count of all palindromic substrings in the string ‘S’ which start at index ‘i’ and have a length of at least ‘len’.

A string is called palindromic if it reads the same backward as forward. ex "aba" is a palindrome but "abaab" is not a palindrome.

Note: A substring is a contiguous non-empty segment of the string.

For example:
String S = ababa
Index i = 1
len = 3

The answer to the above test case is 2 since there are two substrings that start at index 1 (1 - based indexing) - “aba”, “ababa”. Both these have a length of at least 3.
Try solving now
02
Round
Medium
Face to Face
Duration50 minutes
Interview date1 Nov 2022
Coding problem1

It was a face to face interview round in the college campus. It was around 1 PM, only 30 students were eligible to appear in this interview. The interviewer was a very nice person he asked me questions related to my project, Oops, Core Java and DBMS. He also asked me a coding question which I was able to solve efficiently and on time. The interviewer was very happy with my problem solving skills.

1. Word Search - l

Moderate
30m average time
60% success
0/80
Asked in companies
OlaGoldman SachsIBM

You are given a 2D board('N' rows and 'M' columns) of characters and a string 'word'.


Your task is to return true if the given word exists in the grid, else return false. The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally or vertically neighboring.


Note:
The same letter cell should not be used more than once.
For Example:
For a given word “design” and the given 2D board 
[[q’, ‘v’, ‘m’, ‘h’],
 [‘d’, ‘e’, ‘s’, ‘i’],
 [‘d’, ‘g’, ‘f’, ‘g’],
 [‘e’, ‘c’, ‘p’, ‘n’]]

The word design can be formed by sequentially adjacent cells as shown by the highlighted color in the 2nd row and last column.

board

Problem approach

1 . We do simple DFS where if the index <- [0, L-1] we mark 2-d vector vis as true and check the next cells to visit based on its matching with word[index + 1] .

2. If it matches we try to explore that cell else we don't by repeating step 1. 

3. If we reach index L - 1 we return true and we do and OR operation among all the possibilites because we want just one case to be true.

Try solving now
03
Round
Easy
HR Round
Duration20 minutes
Interview date1 Nov 2022
Coding problem1

It was scheduled around 6 PM in the college campus. It consisted of basic HR questions.

1. Basic HR Questions

Introduce yourself.

What are your strengths and weaknesses?

Why do you want to join us?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Nucleus Software
1205 views
0 comments
0 upvotes
Associate Software Engineer
2 rounds | 2 problems
Interviewed by Nucleus Software
1658 views
0 comments
0 upvotes
Associate Software Engineer
2 rounds | 2 problems
Interviewed by Nucleus Software
1558 views
1 comments
0 upvotes
Software Engineer
3 rounds | 7 problems
Interviewed by Nucleus Software
1567 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2672 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2347 views
0 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 9 problems
Interviewed by NCR Corporation
1475 views
0 comments
0 upvotes