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 Software Engineer Interview Questions and Answers

Updated 16 Aug 2024

7 Interview questions

A Software Engineer was asked 10mo 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

A Software Engineer was asked 10mo 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...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked 10mo 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.

A Software Engineer was asked 10mo 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...

A Software Engineer was asked 12mo ago
Q. Given an array of numbers, find the second largest number.
Ans. 

Find the second largest number in an array of strings.

  • Convert the strings to numbers for comparison.

  • Sort the array in descending order.

  • Return the second element in the sorted array.

A Software Engineer was asked 12mo ago
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.

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.

Are these interview questions helpful?

Thinkitive Technologies Software Engineer Interview Experiences

6 interviews found

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
  • 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

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

(2 Questions)

  • Q1. Second largest number in an array
  • Q2. Pairs with given sum

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS based questions
  • Q2. Basic language based questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 5 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 - Coding Test 

Duration is around 1 hour

Round 3 - Technical 

(1 Question)

  • Q1. 1. Basic programming concepts 2. OOP concepts and basic problem solving skills
Round 4 - Technical 

(1 Question)

  • Q1. Programming question
Round 5 - HR 

(1 Question)

  • Q1. 1. Basic questions

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • 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.

  • Answered by AI
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Thinkitive Technologies ?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 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 - Coding Test 

Mcqs on javascript,. 1 coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Campus recruitment
1 online coding
2 technical rounds DSA
1 tech managerial
1 hr

Os, DBMS, DSA, stacks, trees,
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. 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 

General and basic data structure question

Round 3 - Technical 

(4 Questions)

  • Q1. Coding over the video call
  • Q2. Java programs for strings , palindrome etc
  • Ans. 

    Java programs for strings, palindrome, etc.

    • Use the StringBuilder class to manipulate strings efficiently.

    • To check if a string is a palindrome, compare it with its reverse.

    • To count the occurrences of a substring in a string, use the indexOf method in a loop.

    • To split a string into an array of substrings, use the split method.

  • Answered by AI
  • Q3. Projects questions on which you have worked
  • Q4. Explanation skill will also be considered

Interview Preparation Tips

Topics to prepare for Blackbuck Insights Software Engineer interview:
  • Java
  • SQL
  • MySQL
Interview preparation tips for other job seekers - Keep working hard and prepare dsa as much as you could

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There will be 3 coding questions. They are of medium and hard level.

Round 2 - Technical 

(1 Question)

  • Q1. Sort array consisting 0's 1's and 2's without inbuilt functions
  • Ans. 

    Sort an array of 0's, 1's, and 2's without using inbuilt functions.

    • Use three pointers to keep track of the last index of 0's, 1's, and 2's

    • Iterate through the array and swap elements based on their value

    • Continue until all elements are sorted

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Os cn related questions
Round 4 - HR 

(1 Question)

  • Q1. Java questions and general hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Java and CS topics.
DSA is anyways compulsory for this company you need to solve the questions in the given time

Skills evaluated in this interview

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 

Aptitude test was esay.i passed that

Round 3 - Case Study 

We have upload a vedio based on given topic

Round 4 - Technical 

(2 Questions)

  • Q1. 1 coding questiin 3 logical apti question Dbms concepts
  • Q2. Foriegn key Primary key

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be panic.be clear with all the basics in dbms,oops

Thinkitive Technologies Interview FAQs

How many rounds are there in Thinkitive Technologies Software Engineer interview?
Thinkitive Technologies interview process usually has 1-2 rounds. The most common rounds in the Thinkitive Technologies interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Thinkitive Technologies Software Engineer interview?

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

  1. asked me to write the logic for patte...read more
  2. What is ternary operant in pyt...read more
  3. What is single page applicat...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 6 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 100%
View more
Join Thinkitive Technologies We Transforming Healthcare, Retail & HiTech Industries.
Thinkitive Technologies Software Engineer Salary
based on 99 salaries
₹3.8 L/yr - ₹8.3 L/yr
33% less than the average Software Engineer Salary in India
View more details

Thinkitive Technologies Software Engineer Reviews and Ratings

based on 15 reviews

3.3/5

Rating in categories

3.5

Skill development

2.6

Work-life balance

3.0

Salary

3.8

Job security

3.3

Company culture

3.0

Promotions

2.8

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
99 salaries
unlock blur

₹3.8 L/yr - ₹8.3 L/yr

Senior Software Engineer
54 salaries
unlock blur

₹5.4 L/yr - ₹12.1 L/yr

Software Engineer2
48 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Software Developer
21 salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Quality Engineer
16 salaries
unlock blur

₹3.2 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Thinkitive Technologies with

JoulestoWatts Business Solutions

3.1
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.6
Compare

Innoplexus

4.0
Compare
write
Share an Interview