Upload Button Icon Add office photos

Filter interviews by

Stealth Startup Interview Questions and Answers

Updated 4 Nov 2024

Stealth Startup Interview Experiences

Popular Designations

4 interviews found

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

Design a parking app .

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Hangman assignment challenge

Round 2 - Case Study 

Social media analysis

Ai Ml Engineer Interview Questions asked at other Companies

Q1. Can you describe a recent machine learning project you built, including a walkthrough of the project and a code sample?
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2024

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

I applied via Job Portal and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Assignment 

Make case study on India's economic domain

Interview Preparation Tips

Topics to prepare for Stealth Startup Intern interview:
  • case study
  • Business Analysis

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AngelList and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Based on last projects

Android Developer Interview Questions asked at other Companies

Q1. Cube Sum Pairs Problem Statement Given a positive integer N, find the number of ways to express N as a sum of cubes of two integers, A and B, such that: N = A^3 + B^3 Ensure you adhere to the following conditions: A must be greater than or... read more
Add answer

Stealth Startup interview questions for popular designations

 Ai Ml Engineer

 (1)

 Android Developer

 (1)

 Intern

 (1)

 Software Engineer

 (1)

Interview questions from similar companies

Data Platform Architect Interview Questions & Answers

Deloitte user image Anonymous

posted on 25 Feb 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(14 Questions)

  • Q1. What is the code to read a CSV file into a DataFrame using PySpark?
  • Q2. What is your approach to refactoring code?
  • Q3. How do you optimize pyspark code, how is peer review done,
  • Q4. What is the SQL query to join employee departments along with the count of employees in each department?
  • Q5. What is lazy evaluation in PySpark, and can you provide examples to illustrate this concept?
  • Q6. How do you write SQL queries using PySpark code?
  • Q7. What are the methods used to load data into a database?
  • Q8. What is the redshift spectrum?
  • Q9. What are the different types of indexing used in databases?
  • Q10. Could you describe your experience with sharing your screen to write PySpark code during scenarios in a Teams call, especially when you were using a mobile device?
  • Q11. What types of documentation are typically created during a project, and how is this documentation prepared?
  • Q12. How do you ensure that your code is written optimally, and how do you evaluate, debug, and test it for various scenarios?
  • Q13. What kind of documentation is written for pyspark code
  • Q14. What are the best practices that you follow?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. The role would have client round and the candidate will have to write code and solve issues immediately in client interview call, this is what interviewer said
2. As a data platform architect, the role requires extreme level understanding of pyspark and sql not just overview as in other data architect role.
3. Docu
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sale price on on day
  • Q2. Start working

Interview Preparation Tips

Interview preparation tips for other job seekers - Fofocus heavily on networking, tailoring your resume with relevant keywords, actively following up with potential employers, showcasing your sales skills in interviews through storytelling, and monitoring companies you're interested in to stay updated on opportunities.
Key points to remember:
Prioritize networking:
Utilize your network to connect with people in the industry, attend industry events, and leverage platforms like LinkedIn to build relationships with potential hiring managers.
Tailor your resume:
Include relevant sales keywords throughout your resume to catch the attention of recruiters and ensure your experience aligns with the job description.
Practice your sales pitch:
Prepare compelling stories from your past experiences to demonstrate your ability to close deals, overcome objections, and build rapport during interviews.
Follow up consistently:
After submitting applications, send personalized follow-up emails to maintain engagement with potential employers.
Research companies:
Actively monitor companies you're interested in by following their social media and news to stay informed about potential openings.
Highlight transferable skills:
Even if you lack direct sales experience, emphasize skills like communication, persuasion, relationship building, and problem-solving that translate well to a sales role.
Ask insightful questions:
During interviews, demonstrate your knowledge of the company and role by asking thoughtful questions that show your genuine interest.
Be enthusiastic and confident:
Convey a positive attitude and express your passion for sales to make a strong impression on potential employers.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(8 Questions)

  • Q1. Self intro and project architecture
  • Q2. What are the data sources used?
  • Q3. Bigquery architecture
  • Q4. Partition vs clustering
  • Q5. Bq commands on create table and load csv file
  • Q6. Bq commands on show the schema of the table
  • Q7. Explain about leaf nodes and columnar storage.
  • Q8. How many slots are there in bigquery?
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

A sequence was provided: 4181, 2684, 1597, 987, 610.
first 2 are given and write code for other value calculation using java 8

The second question required writing a reverse of a palindrome using both Java 8 streams. I was able to successfully write both and clear the first round.

Round 2 - Technical 

(6 Questions)

  • Q1. Interviewer was himself not knowing anything as it was walkin drive he was sitting infront of me and checking questions on phone Introduction that he inturrepted in between when I was introducing myself
  • Q2. What are the features of Java 17, specifically related to sealed classes, including their syntax and necessity, along with the potential errors encountered when invoking a sealed class?
  • Ans. 

    Java 17 introduces sealed classes to restrict inheritance and improve code maintainability.

    • Sealed classes are declared using the 'sealed' keyword followed by the permitted subclasses.

    • Subclasses of a sealed class must be either final or sealed themselves.

    • Errors may occur when trying to extend a sealed class with a non-permitted subclass.

  • Answered by AI
  • Q3. Java 8 feathers stream api, functional interface, Intermittent operator ,Ternary operator, Prediction,Bi predicate. Answered all successfully
  • Q4. Draw low level design of implementation of notify me if item is back in stock in a ecommerce application
  • Ans. 

    Implementation of 'notify me if item is back in stock' feature in an ecommerce application

    • Create a database table to store user notifications for out-of-stock items

    • Implement a service to check item availability and send notifications to subscribed users

    • Provide a user interface for users to subscribe to notifications for specific items

  • Answered by AI
  • Q5. All design patterns which I know. Asked me to implement adapter pattern on paper
  • Q6. Then given a problem that concurrent way perform operation on excell to decrease the response time

Interview Preparation Tips

Interview preparation tips for other job seekers - I always suggest staying away from these companies commonly referred to as WITCH (Wipro, Infosys, TCS, Cognizant, HCL). You will rarely encounter good interviewers there unless there is an extreme necessity. Interview was judging me on the basis of syntex by seeing in his phone. How can everyone write each and everything on copy. For the low level design first time in my 6 years carrier someone asked to design without using kafka or any other library like spring boot to achieve that add in reminder list problem 😂. At first it was my bad after holding a offer of almost 27 lakh I somehow agreed for giving interview. Second thing I also know that after Even clearing they cannot afford 30LPA which I asked. I just went there because from last 6.5 year I have never attended any walking or face to face interview so was curious for it. Currently also working with somewhat premium product development company only. My experience was very bad. May be it can get vary person to person.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(5 Questions)

  • Q1. As per hr question
  • Q2. What is your strength
  • Q3. Why are you choose this company?
  • Q4. After 5 years where you see which position?
  • Q5. Why should we hire you?
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 Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. How many variance in sap?
  • Q2. We cac explain the all accounts receivable and accounts payable
  • Q3. What is the cost element and cost center?
  • Q4. How many we have currencies in sap?
  • Q5. How many types of projects

Interview Preparation Tips

Topics to prepare for Accenture P2P Accounts Payable Executive interview:
  • mba fresher
Interview preparation tips for other job seekers - 1. Self-Reflection & Goal Setting
* Identify Your Strengths & Weaknesses:
* Strengths: What are you good at? What do you enjoy doing? What are your unique skills and talents?
* Weaknesses: What areas do you need to improve? What are your biggest challenges?
* Define Your Career Goals:
* Short-term: What kind of job are you looking for? What industry are you interested in? What salary range are you targeting?
* Long-term: What is your ideal career path? What are your long-term professional aspirations?
2. Enhance Your Job Search Strategy
* Build a Strong Online Presence:
* LinkedIn: Create a professional and engaging LinkedIn profile.
* Portfolio/Website: If applicable, showcase your work through a portfolio or personal website.
* Network, Network, Network:
* Attend industry events: Conferences, meetups, and workshops.
* Informational interviews: Connect with people working in your field of interest.
* Leverage your existing network: Let your friends, family, and former colleagues know you're job searching.
* Tailor Your Resume & Cover Letter:
* Customize: Tailor your resume and cover letter to each specific job application.
* Keywords: Use keywords from the job description to increase your chances of getting noticed by Applicant Tracking Systems (ATS).
* Quantify your achievements: Use numbers and data to demonstrate your accomplishments.
* Master the Job Interview:
* Practice: Prepare for common interview questions (behavioral, technical, etc.).
* Research: Learn about the company and the role you're interviewing for.
* Ask insightful questions: Demonstrate your interest and engagement.
3. Continuous Improvement
* Skill Development:
* Online courses: Platforms like Coursera, Udemy, and edX offer a wide range of courses.
* Certifications: Obtain relevant industry certifications to enhance your credentials.
* Volunteer work: Gain valuable experience and build your network.
* Stay Updated:
* Industry news: Keep up-to-date with the latest trends and developments in your field.
* Job market trends: Monitor job boards and industry publications to understand the current job market.
Key Advice:
* Be patient and persistent: The job search process can be challenging, but don't give up.
* Stay positive and maintain a growth mindset: Focus on your strengths and opportunities for improvement.
* Take care of yourself: Prioritize your physical and mental well-being during your job search.
Remember: The job market is constantly evolving. Be adaptable, proactive, and resourceful in your job search efforts. Good luck!

Stealth Startup Interview FAQs

How many rounds are there in Stealth Startup interview?
Stealth Startup interview process usually has 1-2 rounds. The most common rounds in the Stealth Startup interview process are Assignment, Technical and Case Study.
How to prepare for Stealth Startup 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 Stealth Startup. The most common topics and skills that interviewers at Stealth Startup expect are Python, Java, Javascript, Node.Js and React.Js.

Tell us how to improve this page.

Stealth Startup Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 776 Interviews
Swiggy Interview Questions
3.8
 • 436 Interviews
PolicyBazaar Interview Questions
3.6
 • 346 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Oyo Rooms Interview Questions
3.3
 • 227 Interviews
Blinkit Interview Questions
3.7
 • 182 Interviews
Ola Cabs Interview Questions
3.4
 • 143 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
View all

Stealth Startup Reviews and Ratings

based on 5 reviews

4.6/5

Rating in categories

4.4

Skill development

4.4

Work-life balance

4.1

Salary

3.5

Job security

4.6

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
8 salaries
unlock blur

₹8.4 L/yr - ₹21 L/yr

Founder
7 salaries
unlock blur

₹47 L/yr - ₹100 L/yr

Product Manager
5 salaries
unlock blur

₹5.9 L/yr - ₹18 L/yr

Co-Founder
5 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Associate Product Manager
4 salaries
unlock blur

₹6 L/yr - ₹11 L/yr

Explore more salaries
Compare Stealth Startup with

Flipkart

4.0
Compare

Ola Cabs

3.4
Compare

Paytm

3.3
Compare

Zomato

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