Upload Button Icon Add office photos

Filter interviews by

Sense Talent Labs Software Developer Interview Questions and Answers

Updated 6 Sep 2024

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Basic DSA from the hacker rank website

Round 2 - Technical 

(1 Question)

  • Q1. Basic to medium questions on javascript, nodejs, MySQL joints, html5 tags
Round 3 - Technical 

(1 Question)

  • Q1. Real life problems, Use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Full stack developer role. Be strong at real time implementations and use cases
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour , dsa, hackerearth, medim to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question was asked in it
  • Q2. Questions related to resume was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - study
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Salary expectations
Round 2 - One-on-one 

(1 Question)

  • Q1. Introduction self
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Internal working of Hash Map
  • Ans. 

    Hash Map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash Map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hash Map typically has a load factor threshold to determine whe...

  • Answered by AI

Skills evaluated in this interview

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

Comprehensive questions

Round 2 - Coding Test 

Java strings programs

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in Sep 2023. There were 3 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 - Aptitude Test 

Basic Apti questions, Logic Questions, Puzzle Questions

Round 3 - Technical 

(6 Questions)

  • Q1. Sorting Techniques
  • Q2. Number Pattern Printing Question
  • Q3. Linked List Implementation
  • Ans. 

    Linked list is a data structure where each element points to the next element in the sequence.

    • Nodes contain data and a reference to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node

  • Answered by AI
  • Q4. Diff btw 32 bit and 64 bit OS
  • Ans. 

    32-bit OS can only address up to 4GB of RAM, while 64-bit OS can address much more.

    • 32-bit OS can only address up to 4GB of RAM, while 64-bit OS can address much more

    • 64-bit OS allows for larger file sizes and better performance

    • 64-bit OS is more secure due to enhanced security features

    • 64-bit OS is required to run certain modern software and games

  • Answered by AI
  • Q5. Puzzle of 3 jar
  • Q6. Reverse a String
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Append each character to a new string in reverse order

    • Return the reversed string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do basics and coding

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Core java basic details
  • Q2. Everything related to basic core java
  • Ans. Learn deeply into basic core java concepts
  • Answered Anonymously
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Find out a string is palindrome or not

Round 3 - One-on-one 

(8 Questions)

  • Q1. ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are executed independently of...

  • Answered by AI
  • Q2. Event loop in node js
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue and executes callback functions when events are triggered

  • Answered by AI
  • Q3. Trigger and cursor
  • Q4. Primary vs foreign vs unique key
  • Ans. 

    Primary key uniquely identifies a record, foreign key links to a primary key in another table, unique key ensures uniqueness of a column or set of columns.

    • Primary key: uniquely identifies each record in a table (e.g. employee_id in an employees table)

    • Foreign key: links to a primary key in another table to establish a relationship (e.g. department_id in an employees table linking to department_id in a departments table)

    • ...

  • Answered by AI
  • Q5. Project related Questions and whats your job role in that project
  • Q6. Variable hoisting in js
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • Hoisting allows you to use a variable before it is declared, but it is best practice to declare variables at the top of the scope.

    • Example: console.log(myV

  • Answered by AI
  • Q7. Function closure in js
  • Ans. 

    Function closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.

    • Function closures occur when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I...

  • Answered by AI
  • Q8. Shallow vs deep copy in js
  • Ans. 

    Shallow copy creates a new object but references the same nested objects, while deep copy creates a new object with copies of all nested objects.

    • Shallow copy only copies the top-level object, not the nested objects.

    • Deep copy creates new copies of all nested objects, ensuring they are independent.

    • In JavaScript, shallow copy can be achieved using Object.assign or spread operator, while deep copy can be achieved using JSO

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on database levels.
They are using some what old technologies so prepare like that way

Skills evaluated in this interview

Sense Talent Labs Interview FAQs

How many rounds are there in Sense Talent Labs Software Developer interview?
Sense Talent Labs interview process usually has 2 rounds. The most common rounds in the Sense Talent Labs interview process are Technical and Coding Test.
How to prepare for Sense Talent Labs Software Developer 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 Sense Talent Labs. The most common topics and skills that interviewers at Sense Talent Labs expect are C++, Software Development, VC++, Visual Basic and Windows Application.

Tell us how to improve this page.

Sense Talent Labs Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Sense Talent Labs Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
15 salaries
unlock blur

₹22 L/yr - ₹40.7 L/yr

Software Engineer
9 salaries
unlock blur

₹16.5 L/yr - ₹35 L/yr

Customer Success Manager
9 salaries
unlock blur

₹10.1 L/yr - ₹26.4 L/yr

Product Manager
7 salaries
unlock blur

₹8 L/yr - ₹71.8 L/yr

Engineering Manager
5 salaries
unlock blur

₹70 L/yr - ₹80 L/yr

Explore more salaries
Compare Sense Talent Labs with

TalentSprint

4.1
Compare

EdCast

3.9
Compare

upGrad

3.7
Compare

Great Learning

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