Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by PromptCloud Team. If you also belong to the team, you can get access from here

PromptCloud Verified Tick

Compare button icon Compare button icon Compare
4.6

based on 20 Reviews

Filter interviews by

PromptCloud Data Engineer Interview Questions and Answers

Updated 11 Oct 2020

2 interviews found

Sort by: Popular

Data Engineer Interview Questions

user image Anonymous

posted on 11 Oct 2020

I applied via Naukri.com and was interviewed before Oct 2019.

Interview Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - scraping,work flow of sites,dom

Data Engineer Interview Questions

user image Anonymous

posted on 5 Jan 2020

Interview Questions

Interview questions from similar companies

Data Scientist Interview Questions

VMock user image Anonymous

posted on 25 Sep 2024

Interview experience
1
 Bad
Difficulty level
 Easy
Duration
 2-4 weeks
Result
 Not Selected

I applied via Job Fair and was interviewed in Aug 2024.

3 Interview Rounds

1

Aptitude Test Round

ML and DL related questions

2

Technical Round (3 Questions)

  • Q1. DSA Leetcode Easy
  • Q2. DSA Leetcode Easy 2
  • Q3. DSA Leetcode Medium
3

Technical Round (2 Questions)

  • Q1. Technical Project Discussions
  • Q2. NLP related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not interview for this company. They will reject you without informing and without giving any reasons if you have done well in the interviews as well

Data Analyst Interview Questions

Vegrow user image Anonymous

posted on 18 Oct 2024

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

I applied via Referral and was interviewed in Sep 2024.

1 Interview Round

1

One-on-one Round (3 Questions)

  • Q1. How to calculate requirement of Banana is a city like Mumbai
  • Q2. How to know , difference between a good or bad retailer
  • Q3. Simple SQL questions

Interview Preparation Tips

Topics to prepare for Vegrow Data Analyst interview:
  • Guess Estimate
  • SQL

Software Engineer Interview Questions

Shine user image Anonymous

posted on 17 Jun 2024

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

4 Interview Rounds

1

Aptitude Test Round

Quantiative Aptitude

2

One-on-one Round (1 Question)

  • Q1. Questions related to basic DSA, Searching, sorting, SQL Queries based on aggregate functions, Basic puzzle (GFG)
3

One-on-one Round (1 Question)

  • Q1. Resume based, Discussion about projects mentioned on the resume.
4

HR Round (1 Question)

  • Q1. Strength, Weakness,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm during the process

I was interviewed in Apr 2022.

3 Interview Rounds

1

Telephonic Call Round (1 Question)

Round duration - 55 Minutes
Round difficulty - Easy

Timing - evening
Interviewer was friendly.

  • Q1. Find Number Of Islands You are given a 2-dimensional array/list having N rows and M columns, which is filled with ones(1) and zeroes(0). 1 signifies land, and 0...read more
2

Telephonic Call Round (2 Questions)

Round duration - 55 Minutes
Round difficulty - Easy

Timing - afternoon
Interviewer was friendly

  • Q1. Move Zeroes To End Given an unsorted array of integers, you have to move the array elements in a way such that all the zeroes are transferred to the end, and al...read more
  • Q2. Asteroid Collision You are given an array/list “ASTEROIDS” representing asteroids in a row. For each element of the given array, its absolute value denotes the ...read more
3

Telephonic Call Round (1 Question)

Round duration - 55 Minutes
Round difficulty - Easy

Timing - evening
interviewer was friendly

  • Q1. System Design Question Building a quizzing system for multiple classes and teachers.  Game: A set of MCQ Questions that a Player can answer.  A Game w...read more

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in BangaloreEligibility criteriaExperienceQuizizz Inc. interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Low Level Design, High Level Design, Machine LearningTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice DSA/Algorithms.
Tip 2 : Practice LLD and OOPs concepts. Also, do check how data models/database schema should be.
Tip 3 : Practice System Design from the Alex Xu - System Design Interview book.

Application resume tips for other job seekers

Tip 1 : Do not put false things on your resume.
Tip 2 : Should know your resume in and out.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Engineer Interview Questions

Meddo user image Nishant Srivastava

posted on 31 May 2021

Interview Questions

6 Interview Rounds

Interview Preparation Tips

Round: Round 1:
Experience: It was 5 question screening round which was meant to know about my expectations from the organization.

Round: Round 2:
Experience: Online Coding round on Hackerrank3 coding coding questions:
– Run length Encoding of string with slight modification
– Finding buying day and selling day for a given set of days such that the profit of the buyer is maximum .
– Given a set of keywords and a long string, break the long string such that the split words are from the keywords onlyQuestions were fairly simple but test cases were very nice.

Round: Round 3:
Experience: 1st InterviewThe interview went for about 1 hr and was completely technical. The questions asked were:
– Given a binary tree how would you identify whether it is a Binary Search tree or not?
I gave the answer using inorder traversal.– given a bst, convert it to a binary tree such that each element is replaced by the sum of all the elements greater than it?– Given an employee table with employee name and salary find the 2nd highest salary.
I gave the vague answer of using inner query then he asked if instead of 2nd its nth highest then what would I do. After sometime I asked for the keyword (which was LIMIT) and then I wrote the query which was almost syntactically correct.– The answer to the question of binary tree, he asked me if I could solve it without using any space (my previous solution took O(n) space)?
I was writing the solution and in between he said to stop and asked me if I have any question.

Round: Round 4: Java application development
Experience: Imagine we have an Email Queue table in our database with each row representing an email that needs sending. Table Name: EmailQueue Columns: id, from_email_address, to_email_address, subject, body (you can also add columns as you wish, but at minimum it should have these columns). Write a java program that will read from this table and send the emails over an SMTP server (not local unix mail). For the SMTP sending you can use a pre-existing library of your choice, if you wish. Please take into consideration the following:Speed is of the utmost concern. Imagine we have 1 million emails to send. Your code should not sequentially send one email after another.Your solution should scale. In other words, if we determine the fastest we can send emails from a single server is 300 emails/second I should be able to run the same Java program on another server and be able to send another 300 emails/second.Your code should be careful to ensure that it is not possible for the same email to be sent twice (especially when running multiple processes of the program).Don’t worry about whether the SMTP server can handle the load. It can.Order emails are sent is not necessarily important. In other words, even though I’m calling this a “queue” it’s not important to guarantee that emails are sent in the order they arequeued.Comment your code extensively.Once again, speed is the primary concern. So do remember to think about what the slow points in the email sending process could be and take efforts to minimize those pain points.Send me instructions on how to compile/run/test your code along with the code itself. Also the sql statements for me to create the table that you are working with and the sql statements to insert a few test emails.

Round: Round 5: Final interview
Experience: It was of about 1 hr on soft and technical skills. Questions asked include:– Tell be about yourself?
– given an array. find the pattern it follows? there can be 4 patterns only: increasing, decreasing, increase then decrease and decrease then increase.
– Given an array of distinct positive numbers find the maximum sum of elements such that no 2 elements occurring in the maximum sum set is adjacent to each other.
I gave an incorrect answer and then I realised it, so I asked to rectify and she allowed me to do so.
– How can you improve suggestions of coupons to the users?
This discussion went for about 20 mins.

College Name: NA

Data Analyst Interview Questions

VMock user image Anonymous

posted on 23 Nov 2024

Interview experience
5
 Excellent
Difficulty level
 -
Duration
 -
Result
 -

1 Interview Round

1

Aptitude Test Round

45 minutes test of aptitude and sql

Interview experience
5
 Excellent
Difficulty level
 Moderate
Duration
 Less than 2 weeks
Result
Selected  Selected

I applied via Indeed and was interviewed before Aug 2023.

3 Interview Rounds

1

Coding Test Round

Core HTML, CSS and JS

2

Coding Test Round

JS deep dive and react

3

Behavioral Round (1 Question)

  • Q1. Mimic Promise.all, Array.flat, OTP Component etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Study core JS concepts and be strong in react fundamentals

PromptCloud Interview FAQs

How to prepare for PromptCloud Data Engineer 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 PromptCloud. The most common topics and skills that interviewers at PromptCloud expect are Algorithms, DOM, HTML, JSON and Python.
What are the top questions asked in PromptCloud Data Engineer interview?

Some of the top questions asked at the PromptCloud Data Engineer interview -

  1. data structures,python fundament...read more
  2. Asked To scrape as...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 PromptCloud interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.2
 • 16 Interviews
Shine Interview Questions
2.6
 • 15 Interviews
Pepper Content Interview Questions
2.5
 • 11 Interviews
Elevate Interview Questions
3.5
 • 9 Interviews
Meddo Interview Questions
3.1
 • 8 Interviews
Mogli labs Interview Questions
3.6
 • 8 Interviews
ParallelDots Interview Questions
4.3
 • 7 Interviews
Kisan Network Interview Questions
3.4
 • 6 Interviews
View all
PromptCloud Data Engineer Salary
based on 10 salaries
₹4 L/yr - ₹8 L/yr
37% less than the average Data Engineer Salary in India
View more details

PromptCloud Data Engineer Reviews and Ratings

based on 3 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 3 Reviews and Ratings
Software Engineer
34 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Data Engineer
10 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Devops Engineer
8 salaries
unlock blur

₹6.5 L/yr - ₹10.6 L/yr

Data Quality Analyst
7 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Technical Program Manager
6 salaries
unlock blur

₹6.5 L/yr - ₹10 L/yr

Explore more salaries
Compare PromptCloud with

InsanelyGood

4.1
Compare

Mogli labs

3.6
Compare

Shine

2.6
Compare

Vegrow

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview