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

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
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 (196)
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 Resume 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 Resume 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 applied via Walk-in and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How much u gain product knowledge and market knowledge in your previous company it will be tested in technical round and your interpersonal skill also.

Interview Preparation Tips

Interview preparation tips for other job seekers - Present yourself in a simple manner and give prompt reply on the question by the interviewer.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. The interview was really smooth, every aspect was discussed clearly from expectations, learning, to growth
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Meddo

No Interviews

INTERVIEWS

Elevate

No Interviews

INTERVIEWS

Vegrow

No Interviews

SALARIES

CareEdge Ratings

SALARIES

Central UP Gas

No Salaries

COMPANY BENEFITS

Central UP Gas

No Benefits

LIST OF COMPANIES

Central UP Gas

Overview

SALARIES

Skylark Drones

No Salaries

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