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

Filter interviews by

PromptCloud Interview Questions and Answers

Updated 26 Jun 2024
Popular Designations

7 Interview questions

An Associate Software Engineer was asked
Q. Given two strings, determine if they are anagrams of each other.
Ans. 

Check if a given string is an anagram of another string

  • Compare the sorted characters of both strings

  • Check if the character counts are the same in both strings

  • Examples: 'listen' and 'silent' are anagrams, 'hello' and 'world' are not

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Write a program to count the occurrence of each letter in a given string.
Ans. 

Count the occurrence of each letter in a given string.

  • Create an array to store the count of each letter

  • Iterate through the string and increment the count of each letter in the array

  • Return the array with the count of each letter

View all Associate Software Engineer interview questions
A Software Developer was asked
Q. Progrmas on the linked list
Ans. 

Linked list programs involve creating, traversing, inserting, and deleting nodes in a linked list data structure.

  • Create a linked list by defining a node struct and using pointers to link them together

  • Traverse the linked list using a while loop and a pointer to the current node

  • Insert a node by creating a new node, updating pointers, and handling edge cases

  • Delete a node by updating pointers and freeing memory

  • Example...

View all Software Developer interview questions
An Internship Trainee was asked
Q. Given an array, modify it such that the greatest element is on the left side.
Ans. 

Modify array to move greatest element to left side

  • Find the index of the greatest element in the array

  • Swap the greatest element with the first element in the array

View all Internship Trainee interview questions
An Internship Trainee was asked
Q. How do you find the number of sum pairs for a given number?
Ans. 

The question asks to find the number of sum pairs for a given number.

  • Iterate through the array and for each element, check if there is another element that sums up to the given number

  • Use a hash set to store the complement of each element as you iterate through the array

  • If the complement of an element is already in the hash set, increment the count of sum pairs

View all Internship Trainee interview questions
An Internship Trainee was asked
Q. Given an array consisting of only 0s, 1s, and 2s, sort the array in an optimal way.
Ans. 

Sort an array of 0s, 1s, and 2s using an optimal algorithm like Dutch National Flag.

  • Use the Dutch National Flag algorithm for optimal sorting.

  • Maintain three pointers: low, mid, and high.

  • Iterate through the array, swapping elements based on their value.

  • Example: For array [2, 0, 1, 2, 0, 1], the sorted output is [0, 0, 1, 1, 2, 2].

View all Internship Trainee interview questions
A Data Engineer was asked
Q. How would you scrape a website?
Ans. 

Web scraping involves extracting data from websites using programming techniques.

  • Use libraries like BeautifulSoup or Scrapy in Python for parsing HTML.

  • Identify the target data by inspecting the website's structure using browser developer tools.

  • Handle pagination by following links to subsequent pages to gather more data.

  • Respect the website's robots.txt file to ensure compliance with scraping policies.

  • Implement erro...

View all Data Engineer interview questions
Are these interview questions helpful?

PromptCloud Interview Experiences

7 interviews found

Interview Questionnaire 

1 Question

  • Q1. Data structures,python fundamentals
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Moderate Coding question

Round 2 - Technical 

(2 Questions)

  • Q1. On Java, OOPS concepts and coding logics
  • Q2. Data Structures and algorithms
Round 3 - Technical 

(2 Questions)

  • Q1. Mostly the same as Round 1
  • Q2. But question complexity is increased
Round 4 - HR 

(2 Questions)

  • Q1. Normal questions about us
  • Q2. Nothing major as I remember
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding in online platform

Round 2 - Technical 

(2 Questions)

  • Q1. Data structures
  • Q2. Time complexity
Round 3 - One-on-one 

(2 Questions)

  • Q1. Coding questions
  • Q2. Data structures

Associate Software Engineer Interview Questions & Answers

user image Tejeswari Malipeddi

posted on 29 Mar 2024

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Hackerrank coding test

Round 2 - Technical 

(2 Questions)

  • Q1. Is the String anagram or not
  • Ans. 

    Check if a given string is an anagram of another string

    • Compare the sorted characters of both strings

    • Check if the character counts are the same in both strings

    • Examples: 'listen' and 'silent' are anagrams, 'hello' and 'world' are not

  • Answered by AI
  • Q2. Occurence of letters in a string
  • Ans. 

    Count the occurrence of each letter in a given string.

    • Create an array to store the count of each letter

    • Iterate through the string and increment the count of each letter in the array

    • Return the array with the count of each letter

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

20 mcq questions and 3 programming questions

Round 3 - Technical 

(2 Questions)

  • Q1. Progrmas on the linked list
  • Ans. 

    Linked list programs involve creating, traversing, inserting, and deleting nodes in a linked list data structure.

    • Create a linked list by defining a node struct and using pointers to link them together

    • Traverse the linked list using a while loop and a pointer to the current node

    • Insert a node by creating a new node, updating pointers, and handling edge cases

    • Delete a node by updating pointers and freeing memory

    • Examples: re...

  • Answered by AI
  • Q2. 1 to 1 round with some questions on linked list and arrays

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

The first round was coding test was conducted on HackerEarth which consists of 20 mcqs and 3 coding questions.
Mcqs are based on UNIX, OS, HTML.
In Coding questions 2 are medium level and 1 was easy

Round 2 - Technical 

(3 Questions)

  • Q1. All the programs are asked solve in optimal way. Sort array consists of 0s, 1s, 2s.
  • Ans. 

    Sort an array of 0s, 1s, and 2s using an optimal algorithm like Dutch National Flag.

    • Use the Dutch National Flag algorithm for optimal sorting.

    • Maintain three pointers: low, mid, and high.

    • Iterate through the array, swapping elements based on their value.

    • Example: For array [2, 0, 1, 2, 0, 1], the sorted output is [0, 0, 1, 1, 2, 2].

  • Answered by AI
  • Q2. Find the number of sum pairs for the given number
  • Ans. 

    The question asks to find the number of sum pairs for a given number.

    • Iterate through the array and for each element, check if there is another element that sums up to the given number

    • Use a hash set to store the complement of each element as you iterate through the array

    • If the complement of an element is already in the hash set, increment the count of sum pairs

  • Answered by AI
  • Q3. Modify the Array that greatest element in the array should be at left side
  • Ans. 

    Modify array to move greatest element to left side

    • Find the index of the greatest element in the array

    • Swap the greatest element with the first element in the array

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Questions are from Data Structures like Linkedlist
  • Q2. Asked to write programs for the data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - In most of the coding questions they check for how we are finding optimal solution.
Try to practice the programs well in coding platforms like geeksforgeeks practice, leetcode

Skills evaluated in this interview

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2020

I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Asked To scrape asite
  • Ans. 

    Web scraping involves extracting data from websites using programming techniques.

    • Use libraries like BeautifulSoup or Scrapy in Python for parsing HTML.

    • Identify the target data by inspecting the website's structure using browser developer tools.

    • Handle pagination by following links to subsequent pages to gather more data.

    • Respect the website's robots.txt file to ensure compliance with scraping policies.

    • Implement error han...

  • Answered by AI

Interview Preparation Tips

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

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about PromptCloud?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA questions asked in an interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Shine and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. We have considered to directly send your profile to companies. How much CTC do you expect?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident,answer all questions.

Software Engineer Interview Questions & Answers

Meddo user image Nishant Srivastava

posted on 31 May 2021

Interview Questionnaire 

1 Question

  • Q1. JS questions are asked

PromptCloud Interview FAQs

How many rounds are there in PromptCloud interview?
PromptCloud interview process usually has 3-4 rounds. The most common rounds in the PromptCloud interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for PromptCloud 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 Python, SQL, Algorithms, IT Sales and Data Structures.
What are the top questions asked in PromptCloud interview?

Some of the top questions asked at the PromptCloud interview -

  1. All the programs are asked solve in optimal way. Sort array consists of 0s, 1s,...read more
  2. Modify the Array that greatest element in the array should be at left s...read more
  3. Find the number of sum pairs for the given num...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

Interview Questions from Similar Companies

InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.0
 • 17 Interviews
Shine Interview Questions
2.8
 • 17 Interviews
STARZ Ventures Interview Questions
4.8
 • 16 Interviews
Pepper Content Interview Questions
2.5
 • 13 Interviews
Elevate Interview Questions
3.4
 • 10 Interviews
Mogli labs Interview Questions
3.5
 • 9 Interviews
ParallelDots Interview Questions
4.2
 • 9 Interviews
Meddo Interview Questions
3.1
 • 8 Interviews
View all

PromptCloud Reviews and Ratings

based on 23 reviews

4.6/5

Rating in categories

4.5

Skill development

4.7

Work-life balance

4.2

Salary

4.5

Job security

4.8

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 23 Reviews and Ratings
Software Engineer
33 salaries
unlock blur

₹5 L/yr - ₹8.2 L/yr

Data Engineer
9 salaries
unlock blur

₹4.8 L/yr - ₹8 L/yr

Devops Engineer
8 salaries
unlock blur

₹6.5 L/yr - ₹10 L/yr

Data Quality Analyst
7 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Technical Program Manager
7 salaries
unlock blur

₹6.5 L/yr - ₹10 L/yr

Explore more salaries
Compare PromptCloud with

InsanelyGood

4.1
Compare

Mogli labs

3.5
Compare

Vegrow

3.9
Compare

Shine

2.8
Compare
write
Share an Interview