Upload Button Icon Add office photos

Filter interviews by

Whale Cloud Data Engineer Interview Questions and Answers

Updated 30 Jul 2024

Whale Cloud Data Engineer Interview Experiences

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Full c concept MCQ with IQ and Computaional Thinking

Round 2 - Technical 

(2 Questions)

  • Q1. Number system convertion in c
  • Ans. 

    Number system conversion in C involves converting numbers between different bases, such as decimal to binary or hexadecimal.

    • Use functions like itoa() to convert integers to strings in different bases

    • Use strtol() to convert strings to integers in different bases

    • Remember to specify the base when converting numbers

  • Answered by AI
  • Q2. Pointers, struct, Data Structure
Round 3 - One-on-one 

(2 Questions)

  • Q1. Decimal to Binary Convertion
  • Q2. Hexa Decimal to Binary convertion

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Forecasting problem - Predict daily sku level sales

Round 2 - Technical 

(2 Questions)

  • Q1. What is difference between bias and variance
  • Ans. 

    Bias is error due to overly simplistic assumptions, variance is error due to overly complex models.

    • Bias is the error introduced by approximating a real-world problem, leading to underfitting.

    • Variance is the error introduced by modeling the noise in the training data, leading to overfitting.

    • High bias can cause a model to miss relevant relationships between features and target variable.

    • High variance can cause a model to ...

  • Answered by AI
  • Q2. Parametric vs non parametruc model
  • Ans. 

    Parametric models make strong assumptions about the form of the underlying data distribution, while non-parametric models do not.

    • Parametric models have a fixed number of parameters, while non-parametric models have a flexible number of parameters.

    • Parametric models are simpler and easier to interpret, while non-parametric models are more flexible and can capture complex patterns in data.

    • Examples of parametric models inc...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. About the experience part
  • Q2. About the technical part
Round 2 - Technical 

(2 Questions)

  • Q1. What is ITSM stands for?
  • Ans. 

    ITSM stands for Information Technology Service Management.

    • ITSM is a set of policies, processes, and procedures for managing IT services.

    • It focuses on delivering value to customers through the management of IT services.

    • Examples of ITSM tools include ServiceNow, BMC Remedy, and Jira Service Desk.

  • Answered by AI
  • Q2. What are role of an system engineer in daily work day?
  • Ans. 

    System engineers are responsible for designing, implementing, and maintaining computer systems and networks.

    • Designing and implementing computer systems and networks

    • Troubleshooting and resolving technical issues

    • Collaborating with other team members to ensure system functionality

    • Monitoring system performance and security

    • Updating and upgrading systems as needed

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 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 - Technical 

(4 Questions)

  • Q1. It start with technical screening.
  • Q2. Exaplain about you last project role
  • Q3. What is dead lock
  • Ans. 

    Deadlock is a situation in which two or more competing actions are each waiting for the other to finish, preventing any of them from completing.

    • Occurs in multi-threaded or distributed systems

    • Caused by resource contention and circular wait

    • Can be prevented by proper resource allocation and avoiding circular wait

    • Example: Process A holds resource X and waits for resource Y, while process B holds resource Y and waits for re

  • Answered by AI
  • Q4. What is pagination
  • Ans. 

    Pagination is the process of dividing content into separate pages to improve user experience and optimize loading times.

    • Pagination is commonly used in websites to display a large amount of data in manageable chunks.

    • It allows users to navigate through different pages of content, typically with 'Next' and 'Previous' buttons.

    • Pagination can also include options to jump to specific pages or adjust the number of items displa...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. This was the final round with client in which they took interview based on skills mentioned in resume

Interview Preparation Tips

Topics to prepare for Thundersoft Software Engineer interview:
  • RTOS Concepts
  • os concept
  • c language
  • assembly language

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data sharding, hld, slices, index, goroutines, why mongodb database, arrays,
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Basic DSA questions(Arrays, Sorting etc)

Round 3 - Technical 

(3 Questions)

  • Q1. Project discussion
  • Q2. Questions around android development
  • Q3. OOPS in depth questions
Round 1 - Coding Test 

Topics:
Python, Django, MySQL, Automation, Technical questions

Round 2 - Technical 

(3 Questions)

  • Q1. Topics: Python, Django, MySQL, Automation, Technical questions
  • Q2. Explain Django Architecture
  • Ans. 

    Django follows Model-View-Controller (MVC) architectural pattern.

    • Django has a high-level architecture that follows the Model-View-Controller (MVC) architectural pattern.

    • The Model layer represents the database schema and business logic.

    • The View layer is responsible for rendering the templates and presenting the data to the user.

    • The Controller layer handles the user's input and interacts with the Model and View layers.

    • Dj...

  • Answered by AI
  • Q3. Difference between XML and JSON
  • Ans. 

    XML is a markup language while JSON is a lightweight data interchange format.

    • XML uses tags to define elements while JSON uses key-value pairs.

    • XML is more verbose and complex than JSON.

    • JSON is easier to read and parse than XML.

    • XML supports namespaces and validation while JSON does not.

    • XML is widely used in web services and document exchange while JSON is preferred for data exchange between applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Python Django
Showcase your skills

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There will be 3 coding questions. They are of medium and hard level.

Round 2 - Technical 

(1 Question)

  • Q1. Sort array consisting 0's 1's and 2's without inbuilt functions
  • Ans. 

    Sort an array of 0's, 1's, and 2's without using inbuilt functions.

    • Use three pointers to keep track of the last index of 0's, 1's, and 2's

    • Iterate through the array and swap elements based on their value

    • Continue until all elements are sorted

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Os cn related questions
Round 4 - HR 

(1 Question)

  • Q1. Java questions and general hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Java and CS topics.
DSA is anyways compulsory for this company you need to solve the questions in the given time

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Microservices, AWS, Web API etc
  • Q2. Inter personal skills

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 rounds of interviews (2 rounds were technical) and Technical Assessment.
After the first round of technical interview I had to take Assessment in Hacker Rank, which consist of multiple choice questions and coding related to the technical skill required for the position. The interview process was very smooth. Final round was more on to check the inter personal skills.

Whale Cloud Interview FAQs

How many rounds are there in Whale Cloud Data Engineer interview?
Whale Cloud interview process usually has 2 rounds. The most common rounds in the Whale Cloud interview process are Technical and HR.

Tell us how to improve this page.

Whale Cloud Data Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Data Engineer Interview Questions from Similar Companies

View all
Senior Engineer
39 salaries
unlock blur

₹6.5 L/yr - ₹12.1 L/yr

Senior Software Engineer
28 salaries
unlock blur

₹7.5 L/yr - ₹14.9 L/yr

Senior Systems Engineer
28 salaries
unlock blur

₹7.4 L/yr - ₹11.4 L/yr

Senior Test Engineer
12 salaries
unlock blur

₹7 L/yr - ₹11 L/yr

Software Engineer
10 salaries
unlock blur

₹4.2 L/yr - ₹12.7 L/yr

Explore more salaries
Compare Whale Cloud with

Huawei Technologies

4.0
Compare

Alibaba Group

4.1
Compare

TCS

3.7
Compare

Infosys

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