Upload Button Icon Add office photos

Neudesic Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Neudesic Technologies Interview Questions and Answers

Updated 10 May 2025
Popular Designations

19 Interview questions

A Consultant was asked 1mo ago
Q. What is copy activity in ADF?
Ans. 

Copy activity in Azure Data Factory (ADF) enables data movement and transformation between various data sources and destinations.

  • Data Movement: Copy activity allows you to move data from one location to another, such as from Azure Blob Storage to Azure SQL Database.

  • Data Transformation: You can transform data during the copy process using mapping data flows or by applying transformations in the source or sink.

  • Integ...

View all Consultant interview questions
A Senior Consultant 2 was asked 3mo ago
Q. Tell me about the frameworks you have developed.
Ans. 

Developed comprehensive frameworks for project management and data analysis to enhance efficiency and decision-making.

  • Created a project management framework that integrates Agile and Waterfall methodologies, improving team collaboration and delivery timelines.

  • Developed a data analysis framework using Python and R, enabling real-time insights and predictive analytics for client projects.

  • Implemented a risk assessmen...

View all Senior Consultant 2 interview questions
A Senior Consultant 2 was asked 3mo ago
Q. Explain object-oriented principles.
Ans. 

Object-oriented principles focus on organizing software design around data, or objects, rather than functions and logic.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interf...

View all Senior Consultant 2 interview questions
A Software Developer was asked 6mo ago
Q. Node.js is single-threaded, so why does it feel concurrent?
Ans. 

Node.js is single-threaded but uses an event-driven model for concurrency, allowing multiple operations to run simultaneously.

  • Node.js uses an event loop to handle asynchronous operations, allowing it to manage multiple tasks without blocking.

  • I/O operations (like reading files or querying databases) are non-blocking, enabling other code to run while waiting for these tasks to complete.

  • Callbacks, Promises, and async...

View all Software Developer interview questions
A Data Engineer was asked 11mo ago
Q. What is HDInsight in Azure Data Factory?
Ans. 

HDInsight is a cloud-based service in Azure that makes it easy to process big data using Apache Hadoop, Spark, and other tools.

  • HDInsight is a fully managed cloud service that makes it easy to process big data using open-source frameworks like Apache Hadoop, Spark, and more.

  • It allows you to create, scale, and monitor Hadoop clusters in Azure.

  • HDInsight integrates with Azure Data Factory to provide data orchestration...

View all Data Engineer interview questions
A Data Engineer was asked 11mo ago
Q. How do you copy data in Azure?
Ans. 

Data copy in Azure can be performed using Azure Data Factory or Azure Storage Explorer.

  • Use Azure Data Factory to create data pipelines for copying data between various sources and destinations.

  • Use Azure Storage Explorer to manually copy data between Azure storage accounts.

  • Utilize Azure Blob Storage for storing the data to be copied.

View all Data Engineer interview questions
A Data Engineer was asked 11mo ago
Q. How do you copy multiple CSV files into a single file?
Ans. 

Use a command line tool like cat to concatenate multiple CSV files into a single file

  • Use the cat command in the terminal to concatenate multiple CSV files into a single file

  • Navigate to the directory where the CSV files are located

  • Run the command 'cat file1.csv file2.csv > combined.csv' to merge file1.csv and file2.csv into a new file named combined.csv

View all Data Engineer interview questions
Are these interview questions helpful?
A Consultant was asked
Q. How do you implement dynamic file ingestion in ADF?
Ans. 

Dynamic file ingestion in ADF involves using parameters to dynamically load files into Azure Data Factory.

  • Use parameters to specify the file path and name dynamically

  • Utilize expressions to dynamically generate file paths

  • Implement dynamic mapping data flows to handle different file structures

View all Consultant interview questions
An Associate Consultant was asked
Q. What are the different types of Cloud?
Ans. 

There are three types of Cloud: Public, Private, and Hybrid.

  • Public Cloud: Services provided by third-party providers over the internet.

  • Private Cloud: Services provided by a single organization for internal use.

  • Hybrid Cloud: Combination of public and private cloud services.

  • Examples: AWS, Microsoft Azure, Google Cloud Platform.

  • Public cloud examples: Dropbox, Gmail, Salesforce.

  • Private cloud examples: Bank of America,...

View all Associate Consultant interview questions
A Senior Java Developer was asked
Q. Describe the architecture of your current project.
Ans. 

Our current project architecture follows a microservices approach.

  • We have divided our application into smaller, independent services.

  • Each service has its own database and communicates with other services through APIs.

  • We use Docker and Kubernetes for containerization and orchestration.

  • We also have a centralized configuration server for managing configurations.

  • We follow RESTful API design principles for communicatio...

View all Senior Java Developer interview questions

Neudesic Technologies Interview Experiences

38 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Solid Principle, Design Patterns,
  • Q2. React sharing data btw siblings without any state management.
  • Q3. NodeJs is single threaded then why it feels concurrent?
  • Ans. 

    Node.js is single-threaded but uses an event-driven model for concurrency, allowing multiple operations to run simultaneously.

    • Node.js uses an event loop to handle asynchronous operations, allowing it to manage multiple tasks without blocking.

    • I/O operations (like reading files or querying databases) are non-blocking, enabling other code to run while waiting for these tasks to complete.

    • Callbacks, Promises, and async/awai...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Questions related micro services
  • Q2. Message queue related questions
  • Q3. NodeJs related questions: Event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare NodeJs in-depth.
Mention things in your resume that you actually know and worked on. They will ask questions from your experience.

Skills evaluated in this interview

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

I recently interviewed at Neudesic's Kochi office, where the first round was a written aptitude test. The test consisted of 15 questions, but surprisingly, one of the questions was incorrect. The instructors informed us to disregard that particular question.

After completing the test, they collect the sheets and exchange with other candidates for review. The instructors then collected the papers, but here's the puzzling part: they only considered papers with 9 or more correct answers, without even reviewing the remaining papers.

I'm still unsure about the logic behind having candidates review each other's papers. I'm confident that I scored 9 or above, but unfortunately, I didn't clear the exam. It's possible that I made a mistake or the person reviewing my paper mischecked my answers.

Regardless, the experience was certainly memorable, not in a positive way.

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

Medium level of coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. About azure data factory
  • Q2. How to copy multiple csv into single file
  • Ans. 

    Use a command line tool like cat to concatenate multiple CSV files into a single file

    • Use the cat command in the terminal to concatenate multiple CSV files into a single file

    • Navigate to the directory where the CSV files are located

    • Run the command 'cat file1.csv file2.csv > combined.csv' to merge file1.csv and file2.csv into a new file named combined.csv

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is hdinsights in azure data factory
  • Ans. 

    HDInsight is a cloud-based service in Azure that makes it easy to process big data using Apache Hadoop, Spark, and other tools.

    • HDInsight is a fully managed cloud service that makes it easy to process big data using open-source frameworks like Apache Hadoop, Spark, and more.

    • It allows you to create, scale, and monitor Hadoop clusters in Azure.

    • HDInsight integrates with Azure Data Factory to provide data orchestration and ...

  • Answered by AI
  • Q2. How to perform data copy in azure
  • Ans. 

    Data copy in Azure can be performed using Azure Data Factory or Azure Storage Explorer.

    • Use Azure Data Factory to create data pipelines for copying data between various sources and destinations.

    • Use Azure Storage Explorer to manually copy data between Azure storage accounts.

    • Utilize Azure Blob Storage for storing the data to be copied.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Expectations in the company
  • Ans. 

    I expect a collaborative environment that fosters growth, innovation, and the opportunity to work on impactful data projects.

    • Opportunities for professional development, such as workshops and training sessions.

    • A culture of collaboration where team members share knowledge and support each other.

    • Engagement in challenging projects that allow me to apply my skills and learn new technologies, like cloud data solutions.

    • Clear ...

  • Answered by AI
  • Q2. Ctc and relevant stuff

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

It is on paper mcq based test consisting of 15 questions of easy to medium level and time duration 20 min

Round 2 - Coding Test 

Its not full pledged coding round just pseudo code need to write on paper and explain it. Based on the explanation they validate to next question if he/she fails to explain problem they are out of race

Interview Preparation Tips

Interview preparation tips for other job seekers - Better to learn all types of dsa questions
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Power bi related and sql
Round 2 - Technical 

(1 Question)

  • Q1. Power bi, sql, maths
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About infra setup and design
  • Q2. Question from Azure devops scenario base
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Questions were a little tough and expectations were a little too high.
  • Q2. DI - Types Questions on global exception handling, Why it's used. Why use SPA over MVC. DSA questions - MergeSort. BubbleSort, Binary Search etc Questions on JS, array functions, filter, reduce
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 Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was handson adf interview

Round 2 - Technical 

(1 Question)

  • Q1. What are linked service What is data set Function vs SP
  • Ans. 

    Linked services are connections to external data sources in Azure Data Factory. Data sets are representations of data in those sources. Functions and stored procedures are used for data transformation.

    • Linked services are connections to external data sources such as databases, file systems, or APIs.

    • Data sets are representations of data in those sources, specifying the location, format, and schema of the data.

    • Functions a...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. More questions based on the self intro u give.. mostly the answer you will tell we be pointing to the next question

Interview Preparation Tips

Interview preparation tips for other job seekers - For final round prepare a bit more

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Swap 2 numbers without 3rd variable,automate an application which contains alert and tabs

Round 2 - Technical 

(1 Question)

  • Q1. Framework explanation, oops concept in framework, test case writing ,interface and abstraction difference
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Prepare user story for patient registration system

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for BA documents

Skills evaluated in this interview

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Neudesic Technologies?
Ask anonymously on communities.

Neudesic Technologies Interview FAQs

How many rounds are there in Neudesic Technologies interview?
Neudesic Technologies interview process usually has 2-3 rounds. The most common rounds in the Neudesic Technologies interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Neudesic Technologies 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 Neudesic Technologies. The most common topics and skills that interviewers at Neudesic Technologies expect are Azure, Angular, C#, SQL and .Net Core.
What are the top questions asked in Neudesic Technologies interview?

Some of the top questions asked at the Neudesic Technologies interview -

  1. How you will deploy application to Azure if you have created Azure function usi...read more
  2. What are the varios fields available in the Azure functions deployment using vi...read more
  3. NodeJs is single threaded then why it feels concurre...read more
What are the most common questions asked in Neudesic Technologies HR round?

The most common HR questions asked in Neudesic Technologies interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more
How long is the Neudesic Technologies interview process?

The duration of Neudesic Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 31 interview experiences

Difficulty level

Easy 5%
Moderate 76%
Hard 19%

Duration

Less than 2 weeks 79%
2-4 weeks 21%
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.7
 • 40 Interviews
Damco Solutions Interview Questions
3.8
 • 38 Interviews
Simform Interview Questions
3.4
 • 37 Interviews
Stefanini Interview Questions
3.0
 • 36 Interviews
View all

Neudesic Technologies Reviews and Ratings

based on 202 reviews

3.9/5

Rating in categories

4.0

Skill development

3.7

Work-life balance

3.9

Salary

3.8

Job security

3.7

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 202 Reviews and Ratings
Senior Java Full Stack Developer

Kochi,

Hyderabad / Secunderabad

+1

5-10 Yrs

Not Disclosed

Senior Azure Data Engineer

Kochi

4-9 Yrs

Not Disclosed

Azure Data Engineer

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
321 salaries
unlock blur

₹13.5 L/yr - ₹40 L/yr

Consultant
153 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Senior Consultant 2
126 salaries
unlock blur

₹16.5 L/yr - ₹37.5 L/yr

Senior Consultant 1
113 salaries
unlock blur

₹10 L/yr - ₹27.5 L/yr

Consultant II
101 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Explore more salaries
Compare Neudesic Technologies with

Tekwissen

4.8
Compare

Damco Solutions

3.8
Compare

smartData Enterprises

3.3
Compare

In Time Tec Visionsoft

3.7
Compare
write
Share an Interview