Upload Button Icon Add office photos

Filter interviews by

Streak AI Software Developer Interview Questions and Answers

Updated 22 May 2024

Streak AI Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image UMED RAJAWAT

posted on 22 May 2024

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

I applied via AngelList and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Assignment 

Create a analytics webpage

Round 2 - One-on-one 

(1 Question)

  • Q1. DSA , golang, database questions
Round 3 - HR 

(1 Question)

  • Q1. Hr basic questions

Interview questions from similar companies

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

It was a leetcode medium

Round 2 - Assignment 

It was a leetcode medium

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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a leetcode medium

Round 2 - Assignment 

It was a leetcode medium

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Design Calculator
  • Q2. React without react dom
  • Ans. 

    React without react dom involves using React's server-side rendering capabilities to render components without the need for a DOM.

    • Use ReactDOMServer.renderToString() to render React components on the server side

    • This can be useful for server-side rendering of React components for SEO purposes

    • Example: ReactDOMServer.renderToString()

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Design Pagination
  • Q2. Questions regarding NEXTjs

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Core HTML, CSS and JS

Round 2 - Coding Test 

JS deep dive and react

Round 3 - Behavioral 

(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
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

I was interviewed in Apr 2022.

Round 1 - Telephonic Call 

(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 signifies water.

    A cell is said to be conn...

  • Ans. 

    I directly came up with the DFS approach.

  • Answered by CodingNinjas
Round 2 - Telephonic Call 

(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 all the non-zero elements are moved to the fron...

  • Ans. 

    Thought about 2 pointer technique and solved with that.

  • Answered by CodingNinjas
  • 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 size of that asteroid and its sign denotes th...

  • Ans. Stack Based Approach

    The idea is to use the stack to maintain the state of the asteroids. If we find an asteroid moving to the left (-ve value), let’s say at index i, then it will collide with an asteroid moving to the right (+ve value) and having index less than i. Hence, we can use a stack to keep track of asteroids moving to the right and then pop the elements from the stack as and when any asteroid gets destroyed.

    &n...

  • Answered by CodingNinjas
Round 3 - Telephonic Call 

(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 will be assigned to a class or multiple Classes by...

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

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

I applied via LinkedIn and was interviewed before May 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. How python dictionary is implemented internally ?
  • Ans. 

    Python dictionary is implemented using hash tables.

    • Python dictionary is a collection of key-value pairs.

    • The keys in a dictionary must be unique and immutable.

    • The values in a dictionary can be of any data type.

    • Python dictionary is implemented using hash tables.

    • Hash tables provide constant time complexity for insertion, deletion and retrieval of elements.

    • The hash function used in Python dictionary is based on the key's h...

  • Answered by AI
  • Q2. What is heap sort
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • It divides the input into a sorted and an unsorted region.

    • It repeatedly extracts the maximum element from the unsorted region and inserts it into the sorted region.

    • It has a time complexity of O(n log n) and is not stable.

    • Example: [8, 5, 3, 1, 9, 6, 0, 7, 4, 2] -> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

  • Answered by AI
  • Q3. Coding question to sort array based on a custom filter

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Meddo user image Nishant Srivastava

posted on 31 May 2021

Interview Questionnaire 

1 Question

  • Q1. JS questions are asked

Streak AI Interview FAQs

How many rounds are there in Streak AI Software Developer interview?
Streak AI interview process usually has 3 rounds. The most common rounds in the Streak AI interview process are Assignment, One-on-one Round and HR.

Tell us how to improve this page.

People are getting interviews through

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

Streak AI Software Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

3.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Devops Engineer
5 salaries
unlock blur

₹10.5 L/yr - ₹12.5 L/yr

Software Developer
3 salaries
unlock blur

₹16 L/yr - ₹17 L/yr

Technical Support Manager
3 salaries
unlock blur

₹12 L/yr - ₹12.5 L/yr

Assistant Manager- HR
3 salaries
unlock blur

₹8 L/yr - ₹8 L/yr

Front end Developer
3 salaries
unlock blur

₹11 L/yr - ₹20 L/yr

Explore more salaries
Compare Streak AI with

Zerodha

4.2
Compare

Upstox

3.7
Compare

Groww

3.8
Compare

5paisa Capital Ltd.

3.9
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