Upload Button Icon Add office photos

Filter interviews by

Streak AI Interview Questions and Answers

Updated 31 Dec 2024

Streak AI Interview Experiences

Popular Designations

5 interviews 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

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 (199)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Excel assignment - i excel sheet as given we need to find some solutions

Round 2 - Technical 

(3 Questions)

  • Q1. Asked about assignment
  • Q2. Asked basic SQL questions
  • Q3. Hr questions are important
Round 3 - HR 

(2 Questions)

  • Q1. Asked about background and resume
  • Q2. Asked general questions hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume and assignment

Data Engineering Analyst Interview Questions asked at other Companies

Q1. Product Of Array Except Self Problem Statement You are provided with an integer array ARR of size N. You need to return an array PRODUCT such that PRODUCT[i] equals the product of all the elements of ARR except ARR[i]. Example: Input: T = 2... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They have asked to write one code in Golang and Reactjs

Full Stack Software Developer Interview Questions asked at other Companies

Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions strings in Java This,super keywords Java problems like palindrome, prime number,and so many problems and logics Why java is platform independent Why java is not platform dependen... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via welfound and was interviewed before Oct 2022. There were 5 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 - HR 

(1 Question)

  • Q1. Normal Call and screening, scheduling
Round 3 - Coding Test 

10 Hours of coding test

Round 4 - Aptitude Test 

Normal 30 minutes test basics

Round 5 - HR 

(1 Question)

  • Q1. Salary Negotiation and joining details

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

Streak AI interview questions for popular designations

 Software Engineer

 (1)

 Software Developer

 (1)

 Full Stack Software Developer

 (1)

 Full Stack Developer

 (1)

 Data Engineering Analyst

 (1)

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of Oops and MVC

I applied via Company Website and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked about some general things related to trading and stock market.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident towards the interview questions and be honest while answering to the interviewer.

I applied via Recruitment Consulltant and was interviewed before Feb 2021. 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 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - With personal experience not referring this job to anyone

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 Questionnaire 

2 Questions

  • Q1. Why our company hire you ?
  • Q2. What will you do for companies benefit ? means how will you invite customers
  • Ans. 

    I will use my communication skills and market research to identify potential customers and create targeted marketing campaigns.

    • Conduct market research to identify potential customers

    • Develop targeted marketing campaigns to reach specific customer segments

    • Utilize social media and other digital marketing channels to increase brand awareness

    • Attend industry events and conferences to network and generate leads

    • Collaborate wit...

  • Answered by AI

Streak AI Interview FAQs

How many rounds are there in Streak AI interview?
Streak AI interview process usually has 2-3 rounds. The most common rounds in the Streak AI interview process are HR, Assignment and Coding Test.
How to prepare for Streak AI 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 Streak AI. The most common topics and skills that interviewers at Streak AI expect are Python, Equity Research, Financial Markets, Golang and AWS.
What are the top questions asked in Streak AI interview?

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

  1. Number of islands in ...read more
  2. Asked to develop register, login and logout using gr...read more
  3. DSA , golang, database questi...read more

Tell us how to improve this page.

Streak AI Interview Process

based on 6 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Angel One Interview Questions
3.9
 • 135 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 104 Interviews
Sharekhan Interview Questions
3.9
 • 81 Interviews
Groww Interview Questions
3.7
 • 65 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
Upstox Interview Questions
3.7
 • 35 Interviews
ICICI Direct Interview Questions
3.7
 • 24 Interviews
Zerodha Interview Questions
4.2
 • 9 Interviews
View all

Streak AI Reviews and Ratings

based on 11 reviews

3.9/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

3.5

Salary

3.4

Job security

3.1

Company culture

3.9

Promotions

3.3

Work satisfaction

Explore 11 Reviews and Ratings
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