Upload Button Icon Add office photos

Filter interviews by

Nucent Technologies Software Developer Interview Questions and Answers

Updated 1 Nov 2022

Nucent Technologies Software Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Nov 2021. 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 - Technical 

(3 Questions)

  • Q1. SCD type 1 implement
  • Q2. Can explain the SQL query
  • Q3. Can you explain the filter transformation
  • Ans. 

    Filter transformation is used to select specific data from a dataset based on certain conditions.

    • Filter transformation is a type of data transformation used in ETL (Extract, Transform, Load) process.

    • It is used to filter out unwanted data from a dataset based on certain conditions.

    • The conditions can be defined using expressions or functions.

    • The filtered data can be stored in a new dataset or used for further processing.

    • ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What are your salary expectations
  • Q2. What are your strengths and weaknesses?

Interview Preparation Tips

Topics to prepare for Nucent Technologies Software Developer interview:
  • Informatica
Interview preparation tips for other job seekers - Prepare perfect on technical round
Mostly asked interview questions on your resumes

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning, grammar, and coding: two basic level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Question on core Java
  • Q2. Question on SQL and PLSQL
  • Q3. Resume based question and on project
Round 3 - HR 

(2 Questions)

  • Q1. Resume and project based question
  • Q2. What do you like about your current company, and why do you want to join our organization?
  • Ans. 

    I appreciate the collaborative team environment and innovative projects at my current company, and I am excited about the opportunities for growth and learning at your organization.

    • Collaborative team environment fosters creativity and productivity

    • Innovative projects challenge me to learn and grow

    • Excited about the opportunities for growth and learning at your organization

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Don't remember so I have no
  • Q2. I can't remember it
Round 2 - Technical 

(2 Questions)

  • Q1. I don't know the res
  • Q2. I can't remember it
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Self intro for yourself
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

In first round there were two test
1st is the personality test.
2nd is the aptitude test were they asked about 10 aptitude questions and around 40 coding based questions, some of them were mcq and rest were output based.

Round 2 - Coding Test 

Contains 4 DSA based questions, 1 question was hard, and other 3 questions were of medium level.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be well prepared of the Josh Technology Group, you should be very good in coding and should know DSA very well.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 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 - Aptitude Test 

It was an Aptitude and Verbal with some SpringBoot and DB related MCQs

Round 3 - Technical 

(1 Question)

  • Q1. This round had 1 DSA question and 1 RestAPi implementation and few theory questions on java8
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

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 tips
Round 2 - Aptitude Test 

Easy level only ...very basic problems are asked to me

Round 3 - Coding Test 

Basic arrays and string questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall easy process. I got my job offer immediately

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Path Queries

    You are given a weighted, undirected graph with ‘V’ vertices numbered from 1 to ‘V’ and ‘E’ bidirectional edges.

    You have to answer ‘Q’ queries. Every query has two integers, ‘u’, ‘v’, repre...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered by CodingNinjas
  • Q2.  Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge so...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered by CodingNinjas
  • Q3. Rat In a Maze: All Paths

    You are given a 'N' * 'N' maze with a rat placed at 'MAZE[0][0]'. Find and print all paths that rat can follow to reach its destination i.e. 'MAZE['...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : 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 interviewRejected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on Core java, Spring boot and Angular (from resume profile)
  • Q2. Discussion on Personal project
Round 2 - One-on-one 

(1 Question)

  • Q1. Detailed Discussion on Current project, entire application workflow and design, implementations and questions like Why, What and How on the tools, technologies, approach and servers used.
Round 3 - HR 

(2 Questions)

  • Q1. Question on familiarity with Agile
  • Q2. What things a working day constitute of?
  • Ans. 

    A working day for a software developer typically involves coding, debugging, attending meetings, collaborating with team members, and researching new technologies.

    • Coding: Writing and testing code to develop software applications.

    • Debugging: Identifying and fixing errors or bugs in the code.

    • Meetings: Participating in team meetings to discuss project progress and updates.

    • Collaboration: Working with team members to solve p...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly prepare the fundamentals of the technologies for the role you're applying. Go through your current projects' end to end implementation, it's working, the algorithms used, problems faced, their solution, what kind of server is used and why, how did you keep the code efficient and optimized etc.

Nucent Technologies Interview FAQs

How many rounds are there in Nucent Technologies Software Developer interview?
Nucent Technologies interview process usually has 3 rounds. The most common rounds in the Nucent Technologies interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in Nucent Technologies Software Developer interview?

Some of the top questions asked at the Nucent Technologies Software Developer interview -

  1. Can you explain the filter transformat...read more
  2. Can explain the SQL qu...read more
  3. SCD type 1 implem...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Nucent Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Nucent Technologies Software Developer Salary
based on 25 salaries
₹4 L/yr - ₹6.5 L/yr
36% less than the average Software Developer Salary in India
View more details

Nucent Technologies Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
66 salaries
unlock blur

₹2.6 L/yr - ₹7.5 L/yr

Software Developer
25 salaries
unlock blur

₹4 L/yr - ₹6.5 L/yr

Devops Engineer
13 salaries
unlock blur

₹5.2 L/yr - ₹9.1 L/yr

Softwaretest Engineer
13 salaries
unlock blur

₹4.5 L/yr - ₹5.5 L/yr

Power BI Developer
12 salaries
unlock blur

₹4 L/yr - ₹6.8 L/yr

Explore more salaries
Compare Nucent Technologies with

Reliance Communications

4.0
Compare

GAO Tek

4.5
Compare

Tata Teleservices

4.1
Compare

Henry Harvin Education

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview