Upload Button Icon Add office photos

Filter interviews by

Aidetic Software Interview Questions and Answers

Updated 19 Feb 2025

Aidetic Software Interview Experiences

Popular Designations

7 interviews found

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

I applied via Referral and was interviewed before Sep 2022. 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 

(1 Question)

  • Q1. Questions on Machine Learning and Deep Learning One Python coding question
Round 3 - Technical 

(1 Question)

  • Q1. Questions on Machine Learning, Deep Learning and NLP 1 coding Question on Python

Data Scientist Intern Interview Questions asked at other Companies

Q1. In case deadline is approaching, whether you will compromise with project quality?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Initially, I began with a medium-level question on LeetCode regarding the longest unique substring. Following that, I was asked about fundamental concepts in data engineering and two SQL questions: one to find the second highest employee salary and the other to determine the highest marks of students in each section.
here are all the questions
You have a dataset with employees, salaries, bonuses, and departments. How
would you calculate the total compensation for each department while
considering that bonuses are applied only to salaries above $50,000?




second highest sal in each department

select empId, dense_rank() over (partition by department order by salary decs) as rnk from employees_table where rank =2




in a streaming job processing event data, how would you handle late-arriving
data to ensure its included in calculations but doesnt delay real-time insights?"

Write PySpark logic to calculate the daily average sales amount for each product
category from a sales dataset spanning years. Consider that the df contains
'category', 'sales_amount', 'sale_date'


sales_df = sales_df.groupBy("category", sale_date).agg({"avg":"sales_amount"}).withColumnRenamed("avg(sales_amount), "Avg_sales_amount"")




-----/

You have a dataset with employees' salaries, bonuses, and departments. How
would you calculate the total compensation for each department while
considering that bonuses are applied only to salaries above $50,000?




in a streaming job processing event data, how would you handle late-arriving
data to ensure its included in calculations but doesnt delay real-time insights?"

Write PySpark logic to calculate the daily average sales amount for each product
category from a sales dataset spanning years. Consider that the df contains 'category', 'sales_amount', 'sale_date'

Round 2 - Technical 

(1 Question)

  • Q1. No coding but a lot of technical questions on architecture mainly on data bricks , medellion architecture how you work with small files problem optimize keyword z indexing, adls2 most spark based scenario ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more about data engineering concepts, dont miss anything

Data Engineer 2 Interview Questions asked at other Companies

Q1. Design a datawarehouse for an e-commerce for buy and sell transaction.
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

It about python basic question on string manipulation

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about pyspark arcitecture
  • Ans. 

    PySpark architecture is a distributed computing framework that allows for processing large datasets using Python.

    • PySpark is built on top of Apache Spark, a fast and general-purpose cluster computing system.

    • It utilizes a master-slave architecture with a driver program that communicates with a cluster manager to distribute tasks to worker nodes.

    • PySpark supports various data sources such as HDFS, Apache Hive, and Apache H...

  • Answered by AI
  • Q2. Design lld for streaming
  • Ans. 

    Designing a low-level design for streaming data processing system

    • Use a distributed system like Apache Kafka for real-time data streaming

    • Implement data processing pipelines using technologies like Apache Spark or Flink

    • Ensure fault tolerance and scalability by using a microservices architecture

    • Leverage cloud services like AWS Kinesis or Google Cloud Dataflow for managed streaming solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After Cmpleting the all interview they might ghost so dont give interview here its waste of time
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the code to determine and print a happy number?
  • Ans. 

    A happy number is a number which eventually reaches 1 when replaced by the sum of the square of each digit.

    • Create a function to determine if a number is happy by repeatedly squaring the digits and summing them until the result is 1 or a cycle is detected.

    • Use a set to keep track of seen numbers to detect cycles.

    • Example: For number 19, the process would be 1^2 + 9^2 = 82, 8^2 + 2^2 = 68, 6^2 + 8^2 = 100, 1^2 + 0^2 + 0^2

  • Answered by AI
  • Q2. What is the transformer architecture in the context of neural networks?
  • Ans. 

    Transformer architecture is a type of neural network architecture commonly used in natural language processing tasks.

    • Utilizes self-attention mechanism to weigh the importance of different words in a sentence

    • Consists of encoder and decoder layers for tasks like machine translation

    • Introduced by the paper 'Attention is All You Need' by Vaswani et al.

    • Popular implementations include BERT, GPT, and TransformerXL

  • Answered by AI

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

Aidetic Software interview questions for popular designations

 Data Scientist

 (2)

 Software Development Engineer 1

 (1)

 Python Developer

 (1)

 Data Engineer 2

 (1)

 Data Scientist Intern

 (1)

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Different JavaScript questions
Round 2 - Technical 

(1 Question)

  • Q1. Needed to develop simple CRUD with search and sort using GraphQL

Interview Preparation Tips

Interview preparation tips for other job seekers - They hired a lot for their clients once the client deal is completed they fire their employee.

Not a good organization to join.

Software Development Engineer 1 Interview Questions asked at other Companies

Q1. 4. Design a system for making table reservations at a restaurant.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic questions about experience and notice period.
Round 2 - Coding Test 

Asked some List coding questions.

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

I applied via Job Portal and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts and Data structures
Round 2 - Coding Test 

DSA

Round 3 - Cultural fit 

(1 Question)

  • Q1. Cultural fit round focused questions

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be familiar with OOPs and DSA

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Interview questions from similar companies

I applied via Company Website and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Which job gives me do that work because of this job very important to me

Interview Preparation Tips

Interview preparation tips for other job seekers - No adive

I applied via Campus Placement and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Nothing much technical

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Go in formals
2. Fluency in English is important (depends on interview panel)
3. Clarity on what your talking about

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Machine learning concepts[Regression and classification] ,Python and Sql Basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Cool

Aidetic Software Interview FAQs

How many rounds are there in Aidetic Software interview?
Aidetic Software interview process usually has 2-3 rounds. The most common rounds in the Aidetic Software interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Aidetic Software 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 Aidetic Software. The most common topics and skills that interviewers at Aidetic Software expect are Python, SQL, Javascript, MongoDB and JQuery.
What are the top questions asked in Aidetic Software interview?

Some of the top questions asked at the Aidetic Software interview -

  1. What is the code to determine and print a happy numb...read more
  2. What is the transformer architecture in the context of neural networ...read more
  3. tell me about pyspark arcitect...read more

Tell us how to improve this page.

Aidetic Software Interview Process

based on 5 interviews

Interview experience

3.4
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 796 Interviews
View all

Aidetic Software Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

4.7

Skill development

4.2

Work-life balance

4.2

Salary

3.9

Job security

4.6

Company culture

3.7

Promotions

4.6

Work satisfaction

Explore 6 Reviews and Ratings
Data Scientist
6 salaries
unlock blur

₹6 L/yr - ₹14.1 L/yr

Senior Data Scientist
5 salaries
unlock blur

₹18 L/yr - ₹20 L/yr

Software Developer
4 salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Backend Developer
4 salaries
unlock blur

₹5.5 L/yr - ₹10.8 L/yr

QA Engineer
4 salaries
unlock blur

₹8 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Aidetic Software with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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