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

Consultant Software Engineer

NimbleWork
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
I mainly focused on building projects using the MERN stack, where I gained hands-on development experience. I also practiced DSA daily, solving at least one problem to improve my problem-solving skills. Additionally, I studied system design concepts to strengthen my understanding of scalable and efficient application architecture.
Application story
I applied through Internshala. Later, I received an assignment link. After clearing it, I received an interview link, followed by an HR round.
Preparation
Duration: 1 month
Topics: MongoDB, Express.js, React.js, Node.js, Java
Tip
Tip

Tip 1: Spend more time on DSA and problem-solving skills.

Tip 2: Work on building complex projects.

Application process
Where: Other
Eligibility: No criteria, (Salary Package - 2.6 LPA)
Resume Tip
Resume tip

Tip 1: Keep it simple.

Tip 2: Add projects to your resume.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration30 minutes
Interview date5 Apr 2024
Coding problem1

1. Maximum Subarray Sum

Moderate
25m average time
75% success
0/80
Asked in companies
Samsung ElectronicsOracleIBM

Given an array of numbers, find the maximum sum of any contiguous subarray of the array.


For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and 86.


Given the array [-5, -1, -8, -9], the maximum sum would be -1.


Follow up: Do this in O(N) time.

Try solving now
02
Round
Easy
Face to Face
Duration30 minutes
Interview date11 Apr 2024
Coding problem3

1. JSON Traversal

For a given nested JSON, print the data inside it until the last child is reached.

2. Move Zeroes To End

Moderate
30m average time
70% success
0/80
Asked in companies
AmazonMicrosoftThought Works

Given an unsorted array of integers, you have to move the array elements in a way such that all the zeroes are transferred to the end, and all the non-zero elements are moved to the front. The non-zero elements must be ordered in their order of appearance.

For example, if the input array is: [0, 1, -2, 3, 4, 0, 5, -27, 9, 0], then the output array must be:

[1, -2, 3, 4, 5, -27, 9, 0, 0, 0].

Expected Complexity: Try doing it in O(n) time complexity and O(1) space complexity. Here, ‘n’ is the size of the array.

Try solving now

3. Three Sum

Moderate
20m average time
80% success
0/80
Asked in company
Dell Technologies

You are given an array ‘ARR’ containing ‘N’ integers.


Return all the unique triplets [ARR[i], ARR[j], ARR[k]] such that i != j, j != k and k != i and their sum is equal to zero.


Example:
Input: ‘N’ = 5 
'ARR' =  [-1, -1, 2, 0, 1] 

Output: 
-1 -1 2
-1 0 1

Explanation:
(-1 -1 +2) = (-1 +0 +1) = 0.
Try solving now
03
Round
Easy
HR Round
Duration20 minutes
Interview date12 Apr 2024
Coding problem1

1. HR Questions

Started with my introduction, followed by questions about my college, strengths, and weaknesses. Later, I was asked about the company where I completed my internship.

Here's your problem of the day

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

Skill covered: Programming

What's the main risk of a "Chat with Your Codebase" public API tool?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4986 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
1067 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6679 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3696 views
0 comments
0 upvotes