Upload Button Icon Add office photos

Talentica Software

Compare button icon Compare button icon Compare

Filter interviews by

Talentica Software Software Engineer2 Interview Questions and Answers

Updated 26 Jun 2025

Talentica Software Software Engineer2 Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Javascript assessment 

(1 Question)

  • Q1. Core javascript concepts questions
Round 2 - Coding Test 

After 1st round of core javascript assessment gets cleared they scheudle a 2nd round for technical interview.
They ask starting from basics to advance concepts.
Whatever you have experience in you should know its concept.
In the same interview there will be 4 coding questions out of which 3 you have solve.
1. Two questions on DSA problem solving
2. Two questions on domain wise for me it was on React

I had solve 2 DSA questions and 1 react question.
Interviewer may ask to change input and see if your logic work for it or not
If it does not work you should be capable enough to make it work for given input.

Round 3 - Behavioral 

(1 Question)

  • Q1. Situational based questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Design Book my show.
  • Q2. Basic DSA questions.
  • Q3. Microservices and monolithic

Software Engineer2 Interview Questions Asked at Other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a po ... read more
asked in Wayfair
Q2. Describe how you would design an Order and Cart Page in iOS, incl ... read more
asked in JioStar
Q3. Given an array of officers, where ranks 1-8 represent high-rankin ... read more
asked in HighLevel
Q4. The second interview round involved implementing a social media a ... read more
Q5. How to process large amount of data? Which tool would you prefer?

Top trending discussions

View All
Interview Hub
4d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Talentica Software?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() { ...

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.
Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Fizz buzz question and array related

Round 2 - Technical 

(1 Question)

  • Q1. Basic react, javascript and one question to find duplicate.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Are these interview questions helpful?

I applied via Approached by Company and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Contains 50 question over g-form

Round 2 - Coding Test 

It has 8 questions on coderbyte.

Round 3 - Technical 

(1 Question)

  • Q1. All about data structure.
Round 4 - HR 

(1 Question)

  • Q1. Tell about family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep hands-on with data structures.
Also thought of additional approach to solve problem.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. How to optimize slow running query in mysql
  • Ans. 

    Optimize slow MySQL queries by analyzing execution plans, indexing, and rewriting queries for efficiency.

    • Use EXPLAIN to analyze query execution plans: EXPLAIN SELECT * FROM users WHERE age > 30;

    • Create appropriate indexes: CREATE INDEX idx_age ON users(age);

    • Avoid SELECT *; specify only needed columns: SELECT name, email FROM users;

    • Use JOINs instead of subqueries when possible: SELECT u.name FROM users u JOIN orders o...

  • Answered by AI
  • Q2. What is concept of closure in javascript
  • Ans. 

    A closure in JavaScript is a function that retains access to its lexical scope, even when executed outside that scope.

    • Closures allow a function to access variables from an outer function's scope even after the outer function has finished executing.

    • Example: function outer() { let count = 0; return function inner() { count++; return count; }; } const increment = outer(); increment(); // returns 1

    • Closures are often used f...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Google and was interviewed in Aug 2023. There were 4 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 

Coding questions about array and string.

Round 3 - Coding Test 

Cosing questions about sql and ds.

Round 4 - HR 

(1 Question)

  • Q1. Personal and behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the fundamentals.

Talentica Software Interview FAQs

How many rounds are there in Talentica Software Software Engineer2 interview?
Talentica Software interview process usually has 3 rounds. The most common rounds in the Talentica Software interview process are Coding Test and Behavioral.
What are the top questions asked in Talentica Software Software Engineer2 interview?

Some of the top questions asked at the Talentica Software Software Engineer2 interview -

  1. Core javascript concepts questi...read more
  2. Design Book my sh...read more
  3. Situational based questio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Talentica Software Software Engineer2 Salary
based on 27 salaries
₹13 L/yr - ₹21 L/yr
20% less than the average Software Engineer2 Salary in India
View more details

Talentica Software Software Engineer2 Reviews and Ratings

based on 7 reviews

3.8/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

2.8

Salary

4.1

Job security

3.9

Company culture

2.8

Promotions

3.6

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
249 salaries
unlock blur

₹11.6 L/yr - ₹20.2 L/yr

Senior Software Engineer
132 salaries
unlock blur

₹16 L/yr - ₹26.9 L/yr

QA Engineer
70 salaries
unlock blur

₹5.9 L/yr - ₹12.4 L/yr

Software Developer
55 salaries
unlock blur

₹10 L/yr - ₹17.5 L/yr

Softwaretest Engineer
43 salaries
unlock blur

₹3.4 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Talentica Software with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview