Upload Button Icon Add office photos

Nihilent

Compare button icon Compare button icon Compare

Filter interviews by

Nihilent Abinitio Developer Interview Questions and Answers

Updated 19 Jan 2024

Nihilent Abinitio Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about normalize component
  • Ans. 

    Normalize component is used in Abinitio to standardize and transform data into a consistent format.

    • Normalize component is used to remove redundancy and inconsistencies in data.

    • It helps in transforming data into a consistent format by applying rules and transformations.

    • Normalization can involve splitting data into multiple tables, removing duplicate records, or standardizing values.

    • Example: Normalizing a customer databa...

  • Answered by AI
  • Q2. Explain fact and dimension
  • Ans. 

    Fact and dimension are two types of data in a data warehouse.

    • Fact: Represents the measurable and numerical data in a data warehouse.

    • Dimension: Represents the descriptive attributes of the data in a data warehouse.

    • Fact tables contain foreign keys to dimension tables.

    • Example: In a sales data warehouse, the fact table may contain sales amount, quantity sold, and date, while the dimension table may contain product, custome

  • Answered by AI
  • Q3. Introduction of the project

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java 8 , collections, core java, Unix cmds

Interview Preparation Tips

Interview preparation tips for other job seekers - Seems they don't have time for taking the interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Fair

Round 1 - Aptitude Test 

Quants , Verbal , Sql , 2 coding ques

Round 2 - Coding Test 

2 coding ques were asked - valid par and linkedlist loop

Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself, projects, oops,dbms
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java basics java advanced
  • Q2. Springboot questions

I applied via Referral and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Regarding Angular basic
Round 2 - Technical 

(1 Question)

  • Q1. About project your role and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear basic. Be passionate about your work.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2022. 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 tips
Round 2 - Assignment 

Just a basic question related to codes

Round 3 - Technical 

(2 Questions)

  • Q1. It was a bsic coding test on zoom
  • Q2. N/A N/A N/A N/A N/A N/A N/A N/A N/A
Round 4 - Behavioral interview 

(1 Question)

  • Q1. They just look at your face and dressing sense

Interview Preparation Tips

Interview preparation tips for other job seekers - It is not hard to crack a interview here they mostly don’t know about cods and all even you can fake it easily

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 minutes
Round difficulty - Medium

In this round, there were 4 sections of MCQs, along with two coding questions. It lasted for 2.5 hours in which the camera was on along with the microphone on the platform AMCAT. One coding question was of hard difficulty level of graph and another was of medium level difficulty question of dynamic programming. MCQ part was quite easy with a timer, on each sub part and can be easily solved.

  • Q1. 

    Count Nodes within K-Distance Problem Statement

    Given a connected, undirected, and acyclic graph where some nodes are marked and a positive integer 'K'. Your task is to return the count of nodes such that...

  • Ans. 

    Count nodes within K-distance from marked nodes in a connected, undirected, acyclic graph.

    • Create an adjacency list to represent the graph.

    • Use BFS to traverse the graph and calculate distances from marked nodes.

    • Keep track of visited nodes and distances to avoid revisiting nodes.

    • Return the count of nodes with distances less than 'K' from all marked nodes.

    • Handle edge cases like empty graph or marked nodes.

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of each denomination from a list, determine the total number of distinct ways to make a change for a specified value. If making the change isn't ...

  • Ans. 

    Given coin denominations and a target value, find the total number of ways to make change.

    • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the number of ways to make change for each value.

    • Handle base cases such as making change for 0 value.

    • Consider all possible combinations of denominations to make change for th

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 30 minutes
Round difficulty - Medium

There were around 40 people shortlisted after round 1, for the interview, round, in the morning PPT was held, after which the interviews were scheduled, for 30 minutes till 6 pm in the evening, 
my interview was at 4.30 pm 
Interviewer was straight forward, and direct in approach, and did not waste even a single second of his or mine. Sharp after 30 minutes the interview was ended. 
through out the interview, he was friendly, and just observing.
Firstly, 3 coding questions, were asked, then 2 concepts of java and 1 concept of data structures was asked. 
the question related to java were, demon thread and platform independence. In data structures, I was asked to give brief intro regarding the AVL trees.

  • Q1. 

    Count Occurrences of X in Sorted Array

    Given a sorted array or list of integers with size N and an integer X, you need to determine how many times X appears in the array/list.

    Input:

    The first line of t...
  • Ans. 

    Count occurrences of a given integer in a sorted array.

    • Use binary search to find the first and last occurrence of X in the array.

    • Calculate the count by subtracting the indices of the last and first occurrences.

    • Handle cases where X is not present in the array.

  • Answered by AI
  • Q2. 

    Merge Sort Task

    Given a sequence of numbers, denoted as ARR, your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Example:

    Explanation:
    The Merge Sort...
  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively until each part has a size of '1'.

    • Merge the sorted arrays to return one fully sorted array.

    • Time complexity of Merge Sort is O(n log n).

  • Answered by AI
  • Q3. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in O(1) time complexity.

    • Handle edge cases like empty stack appropriately.

    • Example: For input '5 3 10 5 1 2 4', the output should be '10 1 false'.

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

The interview was scheduled at 4.30 pm again, and due to network issue, my audio was not clear to the interviewer, but the interviewer was highly cooperating, he called me over phone to take the interview, and video was on through the zoom meet only. 
The interview was like a discussion from both ends, which went very satisfying for me as a candidate and the interviewer too.
Before the interview in the morning, we were given the topics on which we had to write 100 words.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteriaNo back logsMahindra Comviva interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Competitive programming, Trees, Arrays, Strings, Stacks, QueueTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve all the question with Microsoft, Amazon tags on geeksforgeeks. 
Tip 2 : Never give up during the interview, rather just keep trying whether you reach the solution or not. 
Tip 3 : Be confident, this is the most important requirement.

Application resume tips for other job seekers

Tip 1 : Claim the things, that you have done in actual by your own. 
Tip 2 : Never write any false information on the resume, always get it verified with your mates.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic of js and react
  • Q2. Hooks , state , props , component
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2023. 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 - One-on-one 

(1 Question)

  • Q1. What is your expectations
Round 3 - One-on-one 

(1 Question)

  • Q1. Why we should hire you

I applied via Approached by Company and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Real time questions on sql and power bi ssis
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion when cam be joined

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to go good assessment on employees suggested purely

Nihilent Interview FAQs

How many rounds are there in Nihilent Abinitio Developer interview?
Nihilent interview process usually has 1 rounds. The most common rounds in the Nihilent interview process are Technical.
How to prepare for Nihilent Abinitio Developer 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 Nihilent. The most common topics and skills that interviewers at Nihilent expect are Ab Initio, SQL, Unix, Gde and Graph.
What are the top questions asked in Nihilent Abinitio Developer interview?

Some of the top questions asked at the Nihilent Abinitio Developer interview -

  1. Explain about normalize compon...read more
  2. Explain fact and dimens...read more
  3. Introduction of the proj...read more

Tell us how to improve this page.

Nihilent Abinitio Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 336 Interviews
NeoSOFT Interview Questions
3.6
 • 263 Interviews
3i Infotech Interview Questions
3.4
 • 143 Interviews
Microland Interview Questions
3.5
 • 128 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Mastek Interview Questions
3.5
 • 118 Interviews
Maveric Systems Interview Questions
3.5
 • 115 Interviews
View all
Nihilent Abinitio Developer Salary
based on 4 salaries
₹9.5 L/yr - ₹15.5 L/yr
29% more than the average Abinitio Developer Salary in India
View more details
Senior Software Engineer
835 salaries
unlock blur

₹4.4 L/yr - ₹17.8 L/yr

Software Engineer
400 salaries
unlock blur

₹2.2 L/yr - ₹7.5 L/yr

Senior Software Developer
320 salaries
unlock blur

₹6 L/yr - ₹20.6 L/yr

Softwaretest Engineer
285 salaries
unlock blur

₹3 L/yr - ₹9.7 L/yr

Senior Test Engineer
199 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Nihilent with

ITC Infotech

3.6
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

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