Upload Button Icon Add office photos

Filter interviews by

NucleusTeq Interview Questions, Process, and Tips

Updated 27 Dec 2024

Top NucleusTeq Interview Questions and Answers

View all 6 questions

NucleusTeq Interview Experiences

Popular Designations

8 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1 SQL problem 1 Pyspark Problem Few Data modelling question and project related.
Round 2 - Technical 

(1 Question)

  • Q1. 1 SQL problem Implement SCD using pyspark.
  • Ans. 

    Implement Slowly Changing Dimension (SCD) using pyspark

    • Use pyspark to read the source and target tables

    • Identify the changes in the source data compared to the target data

    • Update the existing records in the target table with the new values

    • Insert new records for the new data in the source table

    • Handle historical data by maintaining effective start and end dates

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - This company does not want to hire, They are interviewing 100s of candidate and not releasing offer letter even after clearing all rounds.

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Simple question from array and string along with one sql query and some computer science problems

Round 2 - Technical 

(3 Questions)

  • Q1. Ask question according to resume
  • Q2. Sql query and DSA problem
  • Q3. Core java problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Pretty easy to get job in this company for 7 lpa

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Prepare Amazon Cart APIs in java, create Rest API s with proper code.
  • Ans. 

    Create Amazon Cart APIs in Java for Rest API

    • Use Spring Boot framework for creating Rest APIs

    • Implement CRUD operations for managing cart items

    • Secure APIs using authentication and authorization mechanisms

    • Handle error responses and exceptions gracefully

    • Test APIs using tools like Postman or JUnit

  • Answered by AI
  • Q2. Reverse words given in a string (java programme).
  • Ans. 

    Reverse words in a string using Java program.

    • Split the string into an array of words using split() method

    • Iterate through the array in reverse order and append each word to a new string

    • Return the reversed string

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Memory management introduced in java 1.8. Explain about that.
  • Ans. 

    Java 1.8 introduced improvements in memory management with features like Metaspace and G1 garbage collector.

    • Metaspace replaces the permanent generation (PermGen) for class metadata storage.

    • G1 garbage collector is designed for better performance and predictability by dividing the heap into regions.

    • These improvements help in reducing memory leaks and optimizing garbage collection.

    • Example: Use of Metaspace allows for dyna...

  • Answered by AI
  • Q2. Prepare your project till the deepest level.
  • Ans. 

    I will provide a detailed overview of my project, including its objectives, features, technologies used, and the overall architecture.

    • Outline the project objectives and goals

    • Describe the features and functionalities of the project

    • Explain the technologies and tools used in the project

    • Discuss the overall architecture and design of the project

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90 minutes aptitude + coding questions also there

Round 2 - Technical 

(2 Questions)

  • Q1. Regarding oops and all its pillars
  • Q2. Regarding pointers

Interview Preparation Tips

Interview preparation tips for other job seekers - its all depend on luck as my interview was last as i am not get chance for hr as previously only 8-10 student hr goes on

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

NucleusTeq interview questions for popular designations

 Software Developer

 (4)

 Data Engineer

 (3)

 Software Engineer

 (1)

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

It was easy including 15 questions of aptitude and reasoning.

Round 2 - Coding Test 

Medium level 2 questions they ask from dsa

Round 3 - HR 

(1 Question)

  • Q1. About your self and project descusion

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Aptitude Test 

Questions asked on sql and coding

Round 2 - Technical 

(1 Question)

  • Q1. Asked on joins and sql
Round 3 - HR 

(1 Question)

  • Q1. Duplicate in an array and simple sorting based
  • Ans. 

    Find duplicates in an array of strings and sort them.

    • Iterate through the array and use a HashMap to keep track of duplicate strings.

    • After finding duplicates, sort the array using a sorting algorithm like quicksort or mergesort.

    • Return the sorted array with duplicates removed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepared core concepts well

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

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

I was interviewed before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. PySpark ,SQL, Python related questions
Round 2 - HR 

(1 Question)

  • Q1. General Discussion

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Data Engineer Interview Questions & Answers

user image Sneha Ikhar

posted on 23 Mar 2024

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

I was interviewed before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Related Big Data, SQL, PySpark

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

NucleusTeq Interview FAQs

How many rounds are there in NucleusTeq interview?
NucleusTeq interview process usually has 2-3 rounds. The most common rounds in the NucleusTeq interview process are Technical, HR and Aptitude Test.
How to prepare for NucleusTeq 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 NucleusTeq. The most common topics and skills that interviewers at NucleusTeq expect are Java, Hive, Python, Spark and Big Data.
What are the top questions asked in NucleusTeq interview?

Some of the top questions asked at the NucleusTeq interview -

  1. Prepare Amazon Cart APIs in java, create Rest API s with proper co...read more
  2. Memory management introduced in java 1.8. Explain about th...read more
  3. Prepare your project till the deepest lev...read more

Tell us how to improve this page.

NucleusTeq Interview Process

based on 8 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

NucleusTeq Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

4.1

Salary

4.1

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare NucleusTeq with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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