Upload Button Icon Add office photos

Filter interviews by

Observe.AI Senior Software Developer Interview Questions and Answers

Updated 17 Jan 2025

Observe.AI Senior Software Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

I give five stars for the coding round. They chose a real-world problem and asked me to solve it during the interview.

Round 2 - Technical 

(1 Question)

  • Q1. This is the HLD round. After couple of reschedules this round happened. This is worst experience.. The interviewer although he is a staff software developer, he has no idea about the answer or solution. I ...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview should have basic idea on what question he is asking. and he should be aware of the solution as well. but here, its just a time pass interviewer trying to reject.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular service
  • Q2. Angular routing file code
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

There were 3 question from DSA: 1st and 2nd was from recession and Dp and last one was from graph.

Interview Preparation Tips

Interview preparation tips for other job seekers - For senior position question was coorect and presized. Only thing I missed that the lack of prepration and gave up soon.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LRU cache and optimizations
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Consist 3 coding questions medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about java concept
  • Q2. Sql query basics
Round 3 - Technical 

(2 Questions)

  • Q1. Asked medium to advance level oops java concept
  • Q2. Deep discussion over project
Round 4 - Technical 

(2 Questions)

  • Q1. Hard level linked list questions
  • Q2. Advanced level sql query

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql and oop concepts well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Discuss the project you are most proud of
  • Ans. 

    Developed a mobile app for tracking personal fitness goals

    • Used React Native to create a cross-platform app

    • Implemented features such as goal setting, progress tracking, and workout logging

    • Integrated with wearable devices like Fitbit for automatic data syncing

  • Answered by AI
  • Q2. What are ways to speed up SQL queries? List them in increasing order of complexity?
  • Ans. 

    Ways to speed up SQL queries in increasing order of complexity

    • Use indexes on columns frequently used in WHERE clauses

    • Optimize queries by avoiding unnecessary joins and subqueries

    • Use stored procedures to reduce network traffic and improve performance

    • Consider denormalizing tables for frequently accessed data

    • Use query optimization techniques like query caching and query hints

  • Answered by AI
  • Q3. Is Redis single-threaded or multi-threaded?
  • Ans. 

    Redis is single-threaded.

    • Redis is single-threaded, meaning it can only execute one command at a time.

    • This design choice allows Redis to be extremely fast and efficient for certain use cases.

    • However, it also means that Redis may not be the best choice for highly concurrent workloads.

  • Answered by AI
  • Q4. What sort of data types can be used as keys in Python?
  • Ans. 

    Data types that can be used as keys in Python include strings, integers, floats, tuples, and custom objects.

    • Strings are commonly used as keys in Python dictionaries.

    • Integers and floats can also be used as keys.

    • Tuples can be used as keys if they only contain immutable elements.

    • Custom objects can be used as keys if they are hashable.

    • Examples: {'name': 'John'}, {1: 'apple'}, {(1, 2): 'tuple'}

  • Answered by AI
  • Q5. What types of indexing exist in SQL?
  • Ans. 

    Types of indexing in SQL include clustered, non-clustered, unique, and composite indexes.

    • Clustered index physically reorders the table based on the index key

    • Non-clustered index creates a separate structure for the index

    • Unique index ensures that all values in the index column are unique

    • Composite index uses multiple columns for indexing

  • Answered by AI

Skills evaluated in this interview

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

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. A simple linked list question
Round 2 - HR 

(1 Question)

  • Q1. Detect cycle in undirected graph
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium to hard questions based on arrays, dp

Round 2 - Technical 

(2 Questions)

  • Q1. Quick sort algorithm
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Divides array into smaller sub-arrays based on a pivot element

    • Recursively sorts sub-arrays

    • Combines sorted sub-arrays to get final sorted array

    • Time complexity: O(n log n) on average, O(n^2) worst case

    • Example: [3, 6, 8, 10, 1, 2, 1] -> [1, 1, 2, 3, 6, 8, 10]

  • Answered by AI
  • Q2. Modified rotate a matrix
  • Ans. 

    Rotate a matrix by 90 degrees in place

    • Transpose the matrix

    • Reverse each row of the transposed matrix

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study well and at the end, they would not hire anyone

Skills evaluated in this interview

Observe.AI Interview FAQs

How many rounds are there in Observe.AI Senior Software Developer interview?
Observe.AI interview process usually has 2 rounds. The most common rounds in the Observe.AI interview process are Coding Test and Technical.

Tell us how to improve this page.

Observe.AI Senior Software Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 512 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
Innovaccer Interview Questions
3.5
 • 80 Interviews
NoBrokerHOOD Interview Questions
3.3
 • 55 Interviews
Vyapar Interview Questions
3.5
 • 48 Interviews
Zenoti Interview Questions
3.0
 • 40 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
View all
Software Engineer
4 salaries
unlock blur

₹26.5 L/yr - ₹40 L/yr

Software Development Engineer
4 salaries
unlock blur

₹28 L/yr - ₹32 L/yr

Associate Product Manager
4 salaries
unlock blur

₹29 L/yr - ₹29 L/yr

Market Research Analyst
4 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Senior Integration Engineer
4 salaries
unlock blur

₹21.4 L/yr - ₹35 L/yr

Explore more salaries
Compare Observe.AI with

Freshworks

3.5
Compare

InMobi

3.5
Compare

Zoho

4.3
Compare

Druva

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