AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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 23 Reviews

Play video Play video Video summary
  • About
  • Reviews
    23
  • Salaries
    220
  • Interviews
    7
  • Jobs
    8
  • Benefits
    5
  • Photos
    -

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

Software Developer Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2024

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
  • Add your answer
  • Q2. Data Structures and algorithms
  • Add your answer
Round 3 - Technical 

(2 Questions)

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

(2 Questions)

  • Q1. Normal questions about us
  • Add your answer
  • Q2. Nothing major as I remember
  • Add your answer
Anonymous

Software Engineer Intern Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2024

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
  • Add your answer
  • Q2. Time complexity
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Coding questions
  • Add your answer
  • Q2. Data structures
  • Add your answer
Anonymous

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
    Add your answer
  • 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
    Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image gghh ghhh

posted on 26 Apr 2023

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
    Add your answer
  • Q2. 1 to 1 round with some questions on linked list and arrays
  • Add your answer

Skills evaluated in this interview

Anonymous

Internship Trainee Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2022

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
    View 1 more answer
  • 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
    View 1 more answer
  • 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
    Add your answer
Round 3 - Technical 

(2 Questions)

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

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

Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Jan 2020

Interview Questionnaire 

1 Question

  • Q1. Data structures,python fundamentals
  • Add your answer
Anonymous

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
    Add your answer

Interview Preparation Tips

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

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about PromptCloud?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Software Developer Interview Questions & Answers

Shine user image Anonymous

posted on 13 Feb 2024

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?
  • Add your answer

Interview Preparation Tips

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

Software Developer Interview Questions & Answers

ParallelDots user image Gaurav Bharadwaj

posted on 3 Jul 2024

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

Anonymous
company Logo

Software Engineer Interview Questions & Answers

Meddo user image Nishant Srivastava

posted on 31 May 2021

Interview Questionnaire 

1 Question

  • Q1. JS questions are asked
  • Add your answer
Anonymous
More about working at PromptCloud
  • HQ - Bangalore, India
  • Internet
  • 11-50 Employees (India)

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.

PromptCloud Interviews By Designations

  • PromptCloud Software Developer Interview Questions
  • PromptCloud Data Engineer Interview Questions
  • PromptCloud Internship Trainee Interview Questions
  • PromptCloud Software Engineer Intern Interview Questions
  • PromptCloud Associate Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Executive Interview Questions
  • Analyst Interview Questions
  • Sales Executive Interview Questions
  • Senior Engineer Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Accountant Interview Questions
  • Senior Software Engineer Interview Questions
  • Manager Interview Questions
  • Show more
  • Sales Officer Interview Questions
  • HR Executive Interview Questions

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
InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow
Vegrow Interview Questions
4.0
 • 17 Interviews
Shine
Shine Interview Questions
2.7
 • 16 Interviews
STARZ Ventures
STARZ Ventures Interview Questions
4.8
 • 16 Interviews
Pepper Content
Pepper Content Interview Questions
2.5
 • 13 Interviews
Elevate
Elevate Interview Questions
3.4
 • 10 Interviews
ParallelDots
ParallelDots Interview Questions
4.1
 • 9 Interviews
Meddo
Meddo Interview Questions
3.1
 • 8 Interviews
Docplexus Online Services
Docplexus Online Services Interview Questions
2.9
 • 7 Interviews
Kisan Network
Kisan Network Interview Questions
3.3
 • 7 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
Jobs at PromptCloud
PromptCloud
PromptCloud - Product Marketing Manager (5-7 yrs)

5-7 Yrs

Not Disclosed

PromptCloud
PromptCloud - Digital Marketer - SEO/SEM/Content (2-4 yrs)

2-4 Yrs

Not Disclosed

PromptCloud
PromptCloud - Specialist - Digital Marketing (2-5 yrs)

2-5 Yrs

Not Disclosed

Explore more jobs
PromptCloud Salaries in India
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

InsanelyGood

4.1
Compare
Mogli labs

Mogli labs

3.5
Compare
Vegrow

Vegrow

4.0
Compare
Shine

Shine

2.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • PromptCloud Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter