Premium Employer

i

This company page is being actively managed by Thinkitive Technologies Team. If you also belong to the team, you can get access from here

Thinkitive Technologies Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Thinkitive Technologies Interview Questions and Answers

Updated 27 Apr 2025
Popular Designations

18 Interview questions

A QA Engineer was asked 3mo ago
Q. What is STLC?
Ans. 

STLC (Software Testing Life Cycle) outlines the various phases involved in the testing process of software development.

  • Requirement Analysis: Understanding and analyzing the testing requirements based on the software specifications.

  • Test Planning: Creating a test plan that outlines the scope, approach, resources, and schedule for testing activities.

  • Test Case Design: Developing test cases and test scripts that define...

View all QA Engineer interview questions
A QA Engineer was asked 3mo ago
Q. What are the models in manual testing?
Ans. 

Manual testing models provide structured approaches to ensure software quality through various testing methodologies.

  • Waterfall Model: A linear approach where each phase must be completed before the next begins, suitable for projects with well-defined requirements.

  • V-Model: An extension of the waterfall model that emphasizes verification and validation, where each development stage has a corresponding testing phase.

  • ...

View all QA Engineer interview questions
A QA Engineer was asked 3mo ago
Q. What are the status codes in API testing?
Ans. 

API status codes are standardized responses from a server indicating the result of a client's request, crucial for debugging.

  • 200 OK: Indicates that the request was successful and the server returned the requested data.

  • 404 Not Found: Indicates that the requested resource could not be found on the server.

  • 500 Internal Server Error: Indicates that the server encountered an unexpected condition that prevented it from f...

View all QA Engineer interview questions
A fresher was asked 6mo ago
Q. How do you find repeated letters in a string?
Ans. 

Count the repetition of letters in a string

  • Iterate through the string and count the occurrences of each letter

  • Store the counts in a dictionary or array

  • Return the counts for each letter

View all fresher interview questions
A fresher was asked 6mo ago
Q. Reverse a String Problem Statement Given a string, write a function that reverses the string and returns it.
Ans. 

Reverse a given string

  • Create an empty string to store the reversed string

  • Iterate through the original string from end to start and append each character to the new string

  • Return the reversed string

View all fresher interview questions
A Software Engineer was asked 11mo ago
Q. What is OOP in Python?
Ans. 

OOP in Python is a programming paradigm that uses objects and classes to structure code for better organization and reusability.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class Car with attributes and methods.

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: class ElectricCar inherits from Car.

  • Polymorphi...

View all Software Engineer interview questions
Be interview-ready. Browse the most asked HR questions.
illustration image
A Software Engineer was asked 11mo ago
Q. What is the ternary operator in Python?
Ans. 

Ternary operator in Python is a conditional expression that evaluates to a value based on a condition.

  • Ternary operator is written as 'value_if_true if condition else value_if_false'

  • It is a shorthand way of writing an if-else statement in a single line

  • Example: x = 10 if a > b else 20

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 11mo ago
Q. What is a single-page application?
Ans. 

Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

  • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

  • It eliminates the need for page reloading during use, making it faster and more efficient.

  • Examples include Gmail, Facebook, and Google Maps.

View all Software Engineer interview questions
A Software Engineer was asked 11mo ago
Q. What is state management?
Ans. 

State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

  • State management involves storing and updating the state of an application to ensure data consistency.

  • It helps in managing user interface updates based on changes in the application state.

  • State management is crucial for handling user interactions and maintaining a seamless use...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Given an array of integers, find all pairs of elements whose sum is equal to a specified target value.
Ans. 

Find pairs in an array that sum up to a given target value.

  • Use a hash set to store the difference between the target value and each element in the array.

  • Iterate through the array and check if the current element's complement exists in the hash set.

  • Return the pairs that sum up to the target value.

View all Software Engineer interview questions

Thinkitive Technologies Interview Experiences

29 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. All about core java
  • Q2. Front end and My Sql

Java Developer Interview Questions & Answers

user image Shubhangi Kande

posted on 7 Dec 2024

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

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Questions on string and arrays both are moderate level questions on hacherrank type for 20 marks

Round 2 - Technical 

(2 Questions)

  • Q1. Constructor chaining
  • Q2. Hasmap and treemap
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Total 5 rounds. 1. pen paper coding test at company location (1st one is two pointer and second one is pattern) 2. L1 techinical - oops concept two coding question and some java and advance java concept basic (find palindrome) 3. L2 techinical - two coding question, one puzzle, sql vs nosql, etc (build linked list using class, find min and max element in array), discussion on time complexity 4. L3 managerial round : one basic two loop question and optimmize it , printing pattern question, etc and time complecity 5. HR round- basic hr questions

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. They are the question regarding the life cycle of react component
  • Q2. And regarding the Javascript question

QA Engineer Interview Questions & Answers

user image SARTHAK WAGH

posted on 27 Apr 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is STLC
  • Ans. 

    STLC (Software Testing Life Cycle) outlines the various phases involved in the testing process of software development.

    • Requirement Analysis: Understanding and analyzing the testing requirements based on the software specifications.

    • Test Planning: Creating a test plan that outlines the scope, approach, resources, and schedule for testing activities.

    • Test Case Design: Developing test cases and test scripts that define the ...

  • Answered by AI
  • Q2. What are the models in manual testing
  • Ans. 

    Manual testing models provide structured approaches to ensure software quality through various testing methodologies.

    • Waterfall Model: A linear approach where each phase must be completed before the next begins, suitable for projects with well-defined requirements.

    • V-Model: An extension of the waterfall model that emphasizes verification and validation, where each development stage has a corresponding testing phase.

    • Agile...

  • Answered by AI
  • Q3. What are status code in api testing
  • Ans. 

    API status codes are standardized responses from a server indicating the result of a client's request, crucial for debugging.

    • 200 OK: Indicates that the request was successful and the server returned the requested data.

    • 404 Not Found: Indicates that the requested resource could not be found on the server.

    • 500 Internal Server Error: Indicates that the server encountered an unexpected condition that prevented it from fulfil...

  • Answered by AI

Software Trainee Interview Questions & Answers

user image Shubhangi Kande

posted on 29 Dec 2024

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

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Questions on arrays and string on hacerrank easy to moderate level questions core java asked in technical interview 2 TR round and 1 MR round

Software Engineer Interview Questions & Answers

user image Aditya Gupta

posted on 13 Aug 2024

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is single page application
  • Ans. 

    Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA uses AJAX and HTML5 to create fluid and responsive user experience.

    • It eliminates the need for page reloading during use, making it faster and more efficient.

    • Examples include Gmail, Facebook, and Google Maps.

  • Answered by AI
  • Q2. What is state management
  • Ans. 

    State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.

    • State management involves storing and updating the state of an application to ensure data consistency.

    • It helps in managing user interface updates based on changes in the application state.

    • State management is crucial for handling user interactions and maintaining a seamless user exp...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is oops in python
  • Ans. 

    OOP in Python is a programming paradigm that uses objects and classes to structure code for better organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: class Car with attributes and methods.

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: class ElectricCar inherits from Car.

    • Polymorphism: A...

  • Answered by AI
  • Q2. What is ternary operant in python
  • Ans. 

    Ternary operator in Python is a conditional expression that evaluates to a value based on a condition.

    • Ternary operator is written as 'value_if_true if condition else value_if_false'

    • It is a shorthand way of writing an if-else statement in a single line

    • Example: x = 10 if a > b else 20

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions & Answers

user image Rupali Gaikar

posted on 8 Aug 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Oops Concepts ,Absrtraction,Polymorphism
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Q.1 Pattern
1
*2*
**3**
Q. 2
write code to get sub array with max sum from given array.

Round 2 - Technical 

(1 Question)

  • Q1. Introduction Project Deatails Oops Concept Collection Exception Handling Abstract Class Functional Interface Spring Framework

Interview Preparation Tips

Topics to prepare for Thinkitive Technologies Java Developer interview:
  • Java
  • Advanced Java
  • SQL
  • Data Structures
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude round

Round 2 - Technical 

(2 Questions)

  • Q1. 1.Java, OOPs concept 2. HTML,CSS,JS 3.DSA
  • Q2. Explain your project
Round 3 - Technical 

(1 Question)

  • Q1. Java Coding questions

Top trending discussions

View All
Interview Hub
1w (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 Thinkitive Technologies ?
Ask anonymously on communities.

Thinkitive Technologies Interview FAQs

How many rounds are there in Thinkitive Technologies interview?
Thinkitive Technologies interview process usually has 2-3 rounds. The most common rounds in the Thinkitive Technologies interview process are Technical, Coding Test and HR.
How to prepare for Thinkitive Technologies 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 Thinkitive Technologies . The most common topics and skills that interviewers at Thinkitive Technologies expect are Javascript, Angular, Bootstrap, Software Development and Ajax.
What are the top questions asked in Thinkitive Technologies interview?

Some of the top questions asked at the Thinkitive Technologies interview -

  1. What is the difference between stack and t...read more
  2. Do you know which language is use for frontend technol...read more
  3. For Basic Android Questions, sort the array and print 2nd largest num...read more
How long is the Thinkitive Technologies interview process?

The duration of Thinkitive Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 29 interview experiences

Difficulty level

Easy 11%
Moderate 89%

Duration

Less than 2 weeks 84%
2-4 weeks 11%
4-6 weeks 5%
View more
Join Thinkitive Technologies We Transforming Healthcare, Retail & HiTech Industries.

Interview Questions from Similar Companies

DotPe Interview Questions
3.0
 • 42 Interviews
NexTurn Interview Questions
4.1
 • 36 Interviews
Ganit Inc Interview Questions
3.8
 • 26 Interviews
Unify Technologies Interview Questions
3.2
 • 25 Interviews
Thoughtsol Infotech Interview Questions
4.6
 • 22 Interviews
Blackbuck Insights Interview Questions
3.9
 • 16 Interviews
11:11 Systems Interview Questions
3.6
 • 15 Interviews
Agilisium Interview Questions
3.1
 • 13 Interviews
View all

Thinkitive Technologies Reviews and Ratings

based on 68 reviews

3.4/5

Rating in categories

3.7

Skill development

2.8

Work-life balance

3.3

Salary

3.7

Job security

3.2

Company culture

3.4

Promotions

3.2

Work satisfaction

Explore 68 Reviews and Ratings
Fullstack Developer - Nodejs

Pune

3-8 Yrs

Not Disclosed

Software Engineer (Frontend Developer)

Pune

2-7 Yrs

Not Disclosed

Senior Quality Engineer

Pune

3-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
101 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Senior Software Engineer
57 salaries
unlock blur

₹5.4 L/yr - ₹11 L/yr

Software Engineer2
50 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Software Developer
24 salaries
unlock blur

₹2.5 L/yr - ₹5.4 L/yr

Quality Engineer
18 salaries
unlock blur

₹3.2 L/yr - ₹7.8 L/yr

Explore more salaries
Compare Thinkitive Technologies with

JoulestoWatts Business Solutions

3.1
Compare

DotPe

3.0
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.6
Compare
write
Share an Interview