Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Streak AI Software Engineer Interview Questions and Answers

Updated 12 Nov 2024

Streak AI Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Assignment 

Was given two hours to implement an Api

Round 2 - Technical 

(2 Questions)

  • Q1. Asked to develop register, login and logout using grpc.
  • Q2. Number of islands in Dsa
  • Ans. 

    Number of islands in DSA refers to the problem of finding the number of connected groups of 1s in a 2D grid.

    • Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the grid and mark visited islands.

    • Count the number of times DFS/BFS is called to find the total number of islands.

    • Consider diagonal connections if specified in the problem.

    • Example: Given grid [['1','1','0','0'],['0','1','0','1'],['1','0','0','

  • Answered by AI

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of Oops and MVC
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hour 10 mins, MERN Stack, Face to Face. Mongodb, medium DSA Question, callback, eventloop, NodeJS asynchronous working

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have prior experience in coding
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Same as posted in advice

Interview Preparation Tips

Interview preparation tips for other job seekers - JavaScript-based interview.
In-depth questions around JS topics such as promises, polyfills, output questions, event loops, web APIs, context, closures, and this.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain OOPS Concept ?
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve problems.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • For example, a class 'Car' can have objects like 'Toyota', 'Honda', etc., each with their own properties and methods.

    • Inheritan...

  • Answered by AI

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Cycle Detection Algorithm to determine if there is a cycle in the linked list.

    • Maintain two pointers, one moving at double the speed of the other, if they meet at any point, there is a cycle.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    Find the Next Greater Element for each element in a list of integers.

    • Iterate through the list of integers from right to left.

    • Use a stack to keep track of elements for which the Next Greater Element is not yet found.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. How would you design an ATM machine?
  • Ans. 

    Designing an ATM machine involves considering user interface, security measures, transaction processing, and hardware components.

    • User interface should be intuitive and easy to navigate for users of all ages.

    • Implement security measures such as PIN entry, card authentication, and encryption to protect user data.

    • Transaction processing should be fast and reliable, with options for cash withdrawals, deposits, transfers, and...

  • Answered by AI
Round 3 - HR 

Round duration - 45 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAGroww interview preparation:Topics to prepare for the interview - DSA, Database Systems, OOP, Operating Systems, Computer NetworksTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA daily
Tip 2 : Try to think of the solution first before jumping to the solution
Tip 3 : Go through interview experience
Tip 4 : Have mock interviews

Application resume tips for other job seekers

Tip 1 : Know in depth what is there in your resume
Tip 2 : Mention your skills and work properly

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two DSA Questions
1. Check whether two strings are anagram or not?
2. Create power function without using Math.pow() library?

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LLD to design whatsapp
  • Ans. 

    Designing WhatsApp involves creating a high-level design for the messaging app, focusing on features like chat, groups, calls, and media sharing.

    • Implement chat functionality with real-time messaging using sockets

    • Design group chat feature with ability to add/remove members

    • Include end-to-end encryption for secure messaging

    • Develop voice and video calling functionality

    • Allow media sharing such as photos, videos, and documen

  • Answered by AI
  • Q2. System design ticket booking system
  • Ans. 

    Design a ticket booking system for efficient and user-friendly experience.

    • Use a database to store information about available tickets, users, and bookings

    • Implement a user-friendly interface for users to search for and book tickets

    • Include features like seat selection, payment processing, and booking confirmation

    • Consider scalability and performance to handle a large number of users and bookings

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Design dream11. Bonus - how notification will be sent to customer for milestone of a player they have followed at scale.

I applied via Company Website and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Online Coding Test on Hackerank
  • Q2. F2F Technical Interview over zoom (Around 2 hours)
  • Q3. Included one hard problem solving
  • Q4. HR Interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was very good and smooth
Contribute & help others!
anonymous
You can choose to be anonymous

Streak AI Interview FAQs

How many rounds are there in Streak AI Software Engineer interview?
Streak AI interview process usually has 2 rounds. The most common rounds in the Streak AI interview process are Assignment and Technical.
What are the top questions asked in Streak AI Software Engineer interview?

Some of the top questions asked at the Streak AI Software Engineer interview -

  1. Number of islands in ...read more
  2. Asked to develop register, login and logout using gr...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Pramata Knowledge Solutions

No Interviews

DESIGNATION

DESIGNATION

DESIGNATION

LIST OF COMPANIES

Burohappold Engineering

Overview

INTERVIEWS

Vegrow

No Interviews

INTERVIEWS

Meddo

No Interviews

DESIGNATION

Tell us how to improve this page.

Streak AI Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Devops Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager- HR
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Streak AI with

Zerodha

4.1
Compare

Upstox

3.7
Compare

Groww

3.7
Compare

5paisa Capital Ltd.

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent