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

15 Interview questions

🔥 Asked by recruiter 2 times
A Softwaretest Engineer was asked
Q. What is the difference between method overloading and method overriding?
Ans. 

Overload is when a class has multiple methods with the same name but different parameters. Override is when a subclass provides a specific implementation of a method that is already defined in its superclass.

  • Overload occurs within the same class, while override occurs between a superclass and its subclass.

  • Overload is resolved at compile time based on the method signature, while override is resolved at runtime base...

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked
Q. What is a split function?
Ans. 

Split functions are used to divide a string into multiple parts based on a specified delimiter.

  • Split functions are commonly used in programming languages like Python, JavaScript, and Java.

  • The split function takes a string and splits it into an array of substrings based on a specified delimiter.

  • For example, in Python, the split function can be used like this: 'hello world'.split(' ') will return ['hello', 'world'].

View all Softwaretest Engineer interview questions
An Engineer Trainee was asked
Q. What is the difference between a stack and a tree?
Ans. 

Stack is a linear data structure while tree is a hierarchical data structure.

  • Stack is a collection of elements with LIFO (Last In First Out) order.

  • Tree is a collection of nodes with parent-child relationship.

  • Stack has only one entry and exit point while tree can have multiple entry and exit points.

  • Stack is used for backtracking, undo operations, etc. while tree is used for representing hierarchical data like file ...

View all Engineer Trainee interview questions
An Engineer Trainee was asked
Q. What are threads?
Ans. 

Threads are a sequence of instructions that can be executed independently by a program.

  • Threads are lightweight processes that share the same memory space as the parent process.

  • They allow for concurrent execution of multiple tasks within a single program.

  • Threads can communicate with each other through shared memory or message passing.

  • Examples of multi-threaded programs include web servers, video games, and operatin...

View all Engineer Trainee interview questions
A Software Engineer was asked
Q. Write the logic for a pattern printing program.
Ans. 

This question involves creating a specific pattern using loops and conditional statements in programming.

  • Identify the desired pattern (e.g., asterisks, numbers).

  • Use nested loops: outer loop for rows, inner loop for columns.

  • Control the output format with conditional statements.

  • Example: For a pyramid pattern, increase spaces and asterisks in each row.

View all Software Engineer interview questions

Thinkitive Technologies Interview Experiences

29 interviews found

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
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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is oops in python
  • 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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
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

NexTurn Interview Questions
4.1
 • 34 Interviews
Junglee Games Interview Questions
3.1
 • 34 Interviews
Ganit Inc Interview Questions
3.8
 • 23 Interviews
Ivanti Interview Questions
3.6
 • 19 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
View all

Thinkitive Technologies Reviews and Ratings

based on 66 reviews

3.4/5

Rating in categories

3.7

Skill development

2.8

Work-life balance

3.2

Salary

3.6

Job security

3.2

Company culture

3.3

Promotions

3.2

Work satisfaction

Explore 66 Reviews and Ratings
Senior Quality Engineer

Pune

3-7 Yrs

Not Disclosed

Software Engineer (Frontend Developer)

Pune

2-7 Yrs

Not Disclosed

Fullstack Developer - Nodejs

Pune

3-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
97 salaries
unlock blur

₹2.8 L/yr - ₹10 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹4.5 L/yr - ₹14.6 L/yr

Software Engineer2
48 salaries
unlock blur

₹4 L/yr - ₹9.1 L/yr

Software Developer
21 salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Quality Engineer
15 salaries
unlock blur

₹3.2 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Thinkitive Technologies with

JoulestoWatts Business Solutions

3.0
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.7
Compare

Innoplexus

4.0
Compare
write
Share an Interview