Upload Button Icon Add office photos

Filter interviews by

Aidetic Software Interview Questions, Process, and Tips

Updated 19 Feb 2025

Top Aidetic Software Interview Questions and Answers

Aidetic Software Interview Experiences

Popular Designations

7 interviews found

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)
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)

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
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 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 questions from similar companies

Data Scientist Interview Questions & Answers

LTIMindtree user image Abhishek Srivastav

posted on 16 Mar 2015

Interview Questionnaire 

3 Questions

  • Q1. Code For parse Traingle
  • Ans. 

    Code for parsing a triangle

    • Use a loop to iterate through each line of the triangle

    • Split each line into an array of numbers

    • Store the parsed numbers in a 2D array or a list of lists

  • Answered by AI
  • Q2. Asci value along with alphabets(both capital and small)
  • Ans. 

    The ASCII value is a numerical representation of a character. It includes both capital and small alphabets.

    • ASCII values range from 65 to 90 for capital letters A to Z.

    • ASCII values range from 97 to 122 for small letters a to z.

    • For example, the ASCII value of 'A' is 65 and the ASCII value of 'a' is 97.

  • Answered by AI
  • Q3. Would you like to go for Hire studies

Interview Preparation Tips

Round: Test
Experience: First round was through Elitmus.
If you want to be in IT industry must appear it atleast once, for core also u can try it.
It's usually a tough exam but if u are good in maths , apti you will crack it.
Tips: Focus more on Reasoning part. this is the most difficult part.
practise paragraphs reading and solving(Average level)(Infosys level or less)
If you need any kind of help you can contact me via email or can even ring me.
I would recomend everybody to appear this exam with minimum of one month dedicated preparation
Duration: 120 minutes
Total Questions: 60

Round: Coding Round on their own plateform
Experience: It was little difficult to write codes on some other plateform. But time was enough to cope up.
Tips: Try writing as many programs you can write in C, C++ and JAVA not on paper, on compiler . while giving this exam you can select any of these three languages. Based on that your technical Interview will be taken.

Round: Technical Interview
Experience: Its easy one if you have hands on on programing
Tips: Explore and explore .

Round: HR Interview
Experience: Most difficult round for me(I feel myself a little weak in English). But stay calm. And be cheerful.
I still don't know the exact answer of the question but conversation gone for about 20 minutes on this topic.
He din't seem satisfied with me. Btw most of the people says to say no. You can take your call according to the situation.
Tips: Stay calm. Have as much Knowledge about the organisation. Try to make your Intro as much interesting as possible with achivements, hobbies etc. Ya English plays most important role here.

General Tips: Always have faith in yourself. And remember Everything happens for some good reason
Skill Tips: Dont go deep in OS, DBMS but have rough idea about all the topics
Skills: C, C++, DATA STRUCTURE, DBMS, OS
College Name: GANDHI INSTITUTE OF ENGINEERING AND TECHNOLOGY
Motivation: I wanted a job. :)
Funny Moments: A number of stories are there related to this job.
One is I already had an offer so I booked my ticket to home from Bangalore But at very last moment my father told me that you should never miss any chance, go for it. I went and interview date was postponded due to some reasons. I got a mail at 10:30 pm saying I have to attend interview next day morning at 8:30 pm. I ran to get printout of that mail. The venue was 3 hour journey from my place so I din't sleep for the whole night because i knew that if I ll sleep, I would not be able to wake up But I din't studied also because it would have lead to sleep. And Without having sleep and last moment study I made it.

Skills evaluated in this interview

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
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding and AI related Questions

Round 2 - Technical 

(1 Question)

  • Q1. Detail technical questions on projects

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

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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