Premium Employer

i

This company page is being actively managed by Niveus Solutions (Part of NTT Data) Team. If you also belong to the team, you can get access from here

Niveus Solutions (Part of NTT Data) Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Niveus Solutions (Part of NTT Data) Software Developer Interview Questions and Answers

Updated 24 Jul 2024

Niveus Solutions (Part of NTT Data) Software Developer Interview Experiences

1 interview found

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

Palindrome and even and odd numbers questions

Round 2 - HR 

(2 Questions)

  • Q1. Salaray negotiation
  • Q2. Strength and weakness

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

Round duration - 30 minutes
Round difficulty - Medium

This was a MCQ round. 30 ques in 30 mins consisting of difficult quantitative aptitude questions were to be solved.

Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In this test round, 2 coding questions were given. Either write the code or pseudo code

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

    • Generate all valid configurations and print them out.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

  • Answered by AI
  • Q2. 

    Circular Linked List Detection

    You are provided with the head of a linked list containing integers. Your task is to determine if the linked list is circular.

    Note:
    • A linked list is considered circula...
  • Ans. 

    Detect if a given linked list is circular by checking if it forms a closed loop.

    • Traverse the linked list using two pointers, one moving at double the speed of the other.

    • If the two pointers meet at any point, the linked list is circular.

    • If the faster pointer reaches the end of the list (NULL), the linked list is not circular.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 95 mins.
Next comes the technical interview. 
The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.

  • Q1. 

    Kth Largest Number Problem Statement

    Design a data structure to process a stream of numbers and efficiently find the kth largest number at any given point in time.

    Explanation:

    You will receive a contin...

  • Ans. 

    Design a data structure to efficiently find the kth largest number in a stream of numbers.

    • Implement a data structure that can store incoming numbers and efficiently retrieve the kth largest number.

    • Support addition of numbers and retrieval of the kth largest number.

    • Use a priority queue or heap data structure to maintain the k largest numbers in the stream.

    • Handle queries of adding numbers and retrieving the kth largest n...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

The technical interview lasted for about 45 minutes. It started with a basic introduction. Then, she framed some questions from my resume and projects which I have mentioned. Questions were mainly from Data structure, OS, DBMS, SQL. She told me to rate my data structure skill on a scale of 1 to 5.

  • Q1. 

    Binary Search Tree Search Problem

    Given a Binary Search Tree (BST) consisting of 'N' nodes, where each node contains some integer data, your task is to determine whether there is a node in the BST whose d...

  • Ans. 

    Given a Binary Search Tree, determine if a node with a given integer exists.

    • Traverse the BST in a way that compares the current node's data with the given integer 'X'.

    • If the current node's data is equal to 'X', return True.

    • If the current node's data is less than 'X', move to the right subtree; if greater, move to the left subtree.

    • Repeat this process until a match is found or the end of the tree is reached.

  • Answered by AI
  • Q2. 

    Remove Duplicates Problem Statement

    You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.

    ...

  • Ans. 

    Remove duplicates from an array while maintaining order.

    • Use a set to keep track of unique elements.

    • Iterate through the array and add elements to the set if not already present.

    • Convert the set back to an array to maintain order.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo backlogUnthinkable Solutions interview preparation:Topics to prepare for the interview - Aptitude, SQL, Data structure, Dynamic Programming, Recursion, C++, Logical reasoningTime required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Read interview experience before interview
Tip 2 : Think loud about each coding question.

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : No spelling mistake
Tip 3 : Resume should be in proper format

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

The round was basically based on the DSA easy level questions. Platform was good enough to code easily

  • Q1. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to find the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped on each bar by subtracting its height from the minimum of the maximum heights on both sides.

    • Sum up the amount of water trapped on each bar to get the total amount of rainwater

  • Answered by AI
  • Q2. 

    Reverse String Word Wise Problem Statement

    Your task is to reverse the given string word-wise. This means the last word in the string should appear first, the second last word should appear second, and so...

  • Ans. 

    The given string needs to be reversed word wise, keeping the individual words intact.

    • Split the string into an array of words using a space as the delimiter.

    • Reverse the array of words.

    • Join the reversed array of words using a space as the separator to form the final reversed string.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

It is base on OOPS and Data structures.

  • Q1. 

    Problem: Sort an Array of 0s, 1s, and 2s

    Given an array/list ARR consisting of integers where each element is either 0, 1, or 2, your task is to sort this array in increasing order.

    Input:

    The input sta...
  • Ans. 

    The task is to sort an array of 0s, 1s, and 2s in increasing order.

    • Use a three-pointer approach to partition the array into three sections: 0s, 1s, and 2s.

    • Initialize three pointers: low, mid, and high. low points to the start of the array, mid points to the current element being processed, and high points to the end of the array.

    • While mid <= high, perform the following checks: if arr[mid] == 0, swap arr[low] and arr[mi

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    The task is to find the second largest element in an array of integers.

    • Iterate through the array and keep track of the largest and second largest elements.

    • Initialize the largest and second largest variables with the first two elements of the array.

    • Compare each element with the largest and second largest variables and update them accordingly.

    • Return the second largest element at the end.

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Medium

One Coding question and projects was discussed

  • Q1. 

    Sort Array by Reversing a Subarray

    You are given an array of 'N' distinct integers, 'ARR'. Determine if it is possible to sort this array by selecting a continuous subarray and reversing it. Return 'true'...

  • Ans. 

    The question asks whether it is possible to sort an array by choosing a continuous subarray and reversing it.

    • Check if the array is already sorted. If yes, return true.

    • Find the first and last elements of the subarray that needs to be reversed.

    • Check if the subarray is in non-decreasing order. If yes, return true.

    • Check if the elements after the subarray are in non-increasing order. If yes, return true.

    • Otherwise, return fa

  • Answered by AI
  • Q2. 

    Find Duplicate in Array Problem Statement

    You are provided with an array of integers 'ARR' consisting of 'N' elements. Each integer is within the range [1, N-1], and the array contains exactly one duplica...

  • Ans. 

    The task is to find the duplicate element in an array of integers.

    • Iterate through the array and keep track of the frequency of each element using a hash map.

    • Return the element with a frequency greater than 1.

    • Alternatively, sort the array and check for adjacent elements with the same value.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteria7 CGPA with no backlogUnthinkable Solutions interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 - Practice Atleast 250 Questions
Tip 2 - Ex- Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Subarray sum equals to zero

Round 2 - Technical 

(1 Question)

  • Q1. Basic technical questions related to your project
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

1 to 2 coding rounds, depending on your score that covers basic DSA questions

Round 2 - Technical 

(1 Question)

  • Q1. 2-3 technical round, that covers basic to advanced questions of your preferred language Includes SQL questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was good to atted the interview.

Round 2 - Coding Test 

It was easy it will ask you questions in java basically.

Round 3 - Group Discussion 

In the group discussion they will ask some Hr type questions.

Round 4 - Assignment 

In this round they will give you the assignment to complete it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It consisted of 30 mcq questoions

Round 2 - Coding Test 

The second round was lasted for 20 mins with a hard leetcode questionj.

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Three questions of coding and compiler was not so good and time was 1 hour

Round 2 - Programming 

(1 Question)

  • Q1. DSA question and of medium level
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic Questions, Puzzle, Logical

Round 2 - Coding Test 

Mainly on some common dsa and loop questions

Round 3 - HR 

(1 Question)

  • Q1. Volume of cabin, Introduction
  • Ans. 

    The volume of a cabin refers to the amount of space inside the cabin.

    • Volume can be calculated by multiplying the length, width, and height of the cabin.

    • For example, if a cabin is 10 feet long, 8 feet wide, and 6 feet high, the volume would be 480 cubic feet.

    • Volume is often measured in cubic units such as cubic feet or cubic meters.

  • Answered by AI

Niveus Solutions (Part of NTT Data) Interview FAQs

How many rounds are there in Niveus Solutions (Part of NTT Data) Software Developer interview?
Niveus Solutions (Part of NTT Data) interview process usually has 2 rounds. The most common rounds in the Niveus Solutions (Part of NTT Data) interview process are Coding Test and HR.

Tell us how to improve this page.

Niveus Solutions (Part of NTT Data) Software Developer Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Join Niveus Solutions (Part of NTT Data) We Solve For You With Google Cloud
Niveus Solutions (Part of NTT Data) Software Developer Salary
based on 31 salaries
₹3 L/yr - ₹11.3 L/yr
18% less than the average Software Developer Salary in India
View more details

Niveus Solutions (Part of NTT Data) Software Developer Reviews and Ratings

based on 4 reviews

4.0/5

Rating in categories

4.3

Skill development

3.3

Work-life balance

3.8

Salary

4.8

Job security

4.1

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 4 Reviews and Ratings
Cloud Associate
163 salaries
unlock blur

₹2.4 L/yr - ₹8 L/yr

Cloud Engineer
156 salaries
unlock blur

₹5 L/yr - ₹13.5 L/yr

Cloud Specialist
54 salaries
unlock blur

₹7.2 L/yr - ₹19 L/yr

Software Engineer
38 salaries
unlock blur

₹4 L/yr - ₹11.7 L/yr

Software Developer
31 salaries
unlock blur

₹3 L/yr - ₹11.3 L/yr

Explore more salaries
Compare Niveus Solutions (Part of NTT Data) with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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