Upload Button Icon Add office photos

Times Internet

Compare button icon Compare button icon Compare

Filter interviews by

Times Internet Interview Questions and Answers

Updated 21 May 2025
Popular Designations

62 Interview questions

A Software Developer was asked
Q. 

Delete Node in Binary Search Tree Problem Statement

You are provided with a Binary Search Tree (BST) containing 'N' nodes with integer data. Your task is to remove a given node from this BST.

A BST is a b...

Ans. 

Delete a given node from a Binary Search Tree (BST) and return the inorder traversal of the modified BST.

  • Traverse the BST to find the node to be deleted.

  • Handle different cases like node with no children, one child, or two children.

  • Update the pointers of the parent node and child nodes accordingly.

  • Perform inorder traversal after deletion to get the modified BST.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Binary Search Tree Insertion

Given the root node of a binary search tree and a positive integer, you need to insert a new node with the given value into the BST so that the resulting tree maintains the pro...

Ans. 

Insert a new node with a given value into a binary search tree while maintaining the properties of a BST.

  • Traverse the BST starting from the root node and compare the value to be inserted with each node's value to determine the correct position for insertion.

  • Insert the new node as a leaf node in the appropriate position to maintain the BST properties.

  • Ensure that the resulting tree is a valid binary search tree by f...

View all Software Developer interview questions
A Software Developer was asked
Q. What is a Binary Search Tree (BST)?
Ans. 

A Binary Search Tree (BST) is a data structure where each node has at most two children, with the left child being less than the parent and the right child being greater.

  • Nodes in a BST are arranged in a hierarchical order where the left subtree of a node contains only nodes with keys less than the node's key, and the right subtree contains only nodes with keys greater than the node's key.

  • BST allows for efficient s...

View all Software Developer interview questions
A Senior Android Developer was asked
Q. 

Maximum Subarray Sum Problem Statement

Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

Explanation:

...
Ans. 

Find the sum of the subarray with the maximum sum among all subarrays in a given array.

  • Iterate through the array and keep track of the maximum sum subarray encountered so far.

  • Use Kadane's algorithm to efficiently find the maximum subarray sum.

  • Consider the case where all elements in the array are negative.

  • Handle the case where the array contains only one element.

View all Senior Android Developer interview questions
A Senior Android Developer was asked
Q. Can you explain how to implement a ViewModel in Android?
Ans. 

ViewModel in Android is a class that is responsible for preparing and managing data for an activity or fragment.

  • ViewModel is part of the Android Architecture Components and is used to store and manage UI-related data in a lifecycle-conscious way.

  • It survives configuration changes such as screen rotations and retains data during the lifecycle of the activity or fragment.

  • ViewModel should never hold a reference to a v...

View all Senior Android Developer interview questions
A Senior Android Developer was asked
Q. How does RecyclerView work internally?
Ans. 

RecyclerView is a flexible view for providing a limited window into a large data set.

  • RecyclerView recycles views to improve performance and memory usage.

  • It uses a LayoutManager to organize and position items within the view.

  • Adapter provides data to be displayed in the RecyclerView.

  • ItemDecoration allows for custom drawing of item decorations like borders or dividers.

View all Senior Android Developer interview questions
🔥 Asked by recruiter 2 times
A Senior Android Developer was asked
Q. 

Binary Array Sorting Problem Statement

You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting.

Input:

 The firs...
Ans. 

Yes, the binary array sorting problem can be solved in linear time and constant space by using a two-pointer approach.

  • Use two pointers, one starting from the beginning of the array and the other starting from the end.

  • Swap 0s to the left side and 1s to the right side by incrementing and decrementing the pointers accordingly.

  • Continue this process until the two pointers meet in the middle of the array.

  • Example: Input:...

View all Senior Android Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What is polymorphism in object-oriented programming?
Ans. 

Polymorphism in OOP allows objects of different classes to be treated as objects of a common superclass.

  • Polymorphism allows for flexibility and reusability in code.

  • It enables a single interface to be used for different data types.

  • Examples include method overriding and method overloading.

View all Software Developer interview questions
A Software Developer was asked
Q. What is operator overloading?
Ans. 

Operator overloading is the ability to redefine the behavior of operators for user-defined data types.

  • Allows operators to be used with custom data types

  • Can define custom behavior for operators like +, -, *, etc.

  • Helps make code more readable and intuitive

  • Example: Overloading the + operator for a custom Vector class to add two vectors

View all Software Developer interview questions
A Software Developer was asked
Q. 

Largest Prime Factor Problem Statement

You are given a positive integer n. Your task is to identify the largest prime factor of this given positive integer.

If there is no prime factor for a given integer...

Ans. 

Identify the largest prime factor of a given positive integer.

  • Iterate from 2 to sqrt(n) to find prime factors

  • Check if each factor is prime and update largest prime factor

  • If no prime factor found, output -1

View all Software Developer interview questions

Times Internet Interview Experiences

71 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Group Discussion 

Gave the topic on social median boon or bane

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic cv, where do you belong from and technical question

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm and confident and communication should be proper

QA Intern Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why is testing required
  • Ans. 

    Testing is required to ensure the quality and functionality of software applications.

    • Identify defects and bugs in the software

    • Ensure the software meets the requirements and specifications

    • Verify that the software functions correctly under different scenarios

    • Improve user experience and satisfaction

    • Reduce the risk of software failures and issues

    • Examples: Regression testing, performance testing, usability testing

  • Answered by AI
  • Q2. What makes the process so important
  • Ans. 

    The process is important because it ensures quality, efficiency, and consistency in the outcome.

    • Ensures quality control by following specific steps and guidelines

    • Improves efficiency by streamlining tasks and reducing errors

    • Maintains consistency in the outcome by standardizing procedures

    • Helps in identifying and resolving issues early in the development cycle

  • Answered by AI

Brand Manager Interview Questions & Answers

user image Anonymous

posted on 16 Apr 2025

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

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

  • Q1. How will you react in a situation where you have to take a quick decision which may effect the team's outlook towards you?
  • Ans. 

    In high-pressure situations, I prioritize transparency, collaboration, and swift decision-making to maintain team trust and morale.

    • Assess the situation quickly: Gather essential information to understand the implications of the decision.

    • Communicate openly: Inform the team about the decision-making process and the reasons behind it, fostering trust.

    • Involve the team: If time allows, seek input from key team members to en...

  • Answered by AI
  • Q2. What will be your GTM
  • Ans. 

    A comprehensive GTM strategy involves market analysis, positioning, and targeted outreach to ensure product success.

    • Conduct thorough market research to identify target audience and their needs.

    • Develop a unique value proposition that differentiates the product from competitors.

    • Create a multi-channel marketing plan, including digital, social media, and traditional advertising.

    • Leverage partnerships and collaborations to e...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is react, and why you chose it
  • Ans. 

    React is a JavaScript library for building user interfaces, known for its efficiency and flexibility.

    • React allows for the creation of reusable UI components, making development faster and more efficient.

    • It uses a virtual DOM for optimal performance by only updating the necessary components when data changes.

    • React's component-based architecture promotes code reusability and maintainability.

    • It has a large and active comm...

  • Answered by AI

HR Intern Interview Questions & Answers

user image Mehak Bajaj

posted on 12 Mar 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Why do you want to be in this field
  • Ans. 

    I am passionate about fostering a positive workplace culture and supporting employee growth through HR practices.

    • I believe that a strong HR function is essential for employee satisfaction and retention, as seen in companies with high employee engagement scores.

    • I am drawn to the opportunity to help shape organizational culture, similar to how Google emphasizes innovation and collaboration.

    • I enjoy working with people and...

  • Answered by AI
  • Q2. What acc to are your roles and responsibilities
  • Ans. 

    As an HR intern, my roles include supporting recruitment, onboarding, employee engagement, and administrative tasks.

    • Assist in the recruitment process by screening resumes and scheduling interviews.

    • Help with onboarding new employees by preparing orientation materials and conducting sessions.

    • Support employee engagement initiatives, such as organizing team-building activities.

    • Maintain employee records and assist with HR a...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

Questions were asked based on my projects, React and Nodejs.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Behavioral 

(2 Questions)

  • Q1. Roi discussion for distribution
  • Q2. Current role and achievement

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prompt and puntual

SDE Interview Questions & Answers

user image Ranjana Gupta

posted on 6 Sep 2024

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

(1 Question)

  • Q1. Something related to binary search

Data Analyst Interview Questions & Answers

user image raj tripathi

posted on 23 Apr 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Detailed About SQL
  • Q2. Experience with ML
  • Ans. 

    I have experience applying machine learning techniques for data analysis, including predictive modeling and data visualization.

    • Utilized regression analysis to predict sales trends based on historical data.

    • Implemented clustering algorithms to segment customers for targeted marketing.

    • Developed classification models to identify fraudulent transactions in financial datasets.

    • Used decision trees to analyze patient data for p...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What businesses/clients did you cater? What was the bucket size of these clients?
  • Q2. How frequently were your involved in the technical support and onboarding of new projects for old and new clients? How did you handle the onboarding and if technical support was required for your existing ...
Round 2 - Technical 

(1 Question)

  • Q1. While working with your previous company how much technical knowledge you had on SMS, WhatsApp, Voice and SoIP processes. What challenges you faced and how did you tackle them?

Top trending discussions

View All
Interview Tips & Stories
6d (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 Times Internet?
Ask anonymously on communities.

Times Internet Interview FAQs

How many rounds are there in Times Internet interview?
Times Internet interview process usually has 1-2 rounds. The most common rounds in the Times Internet interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Times Internet 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 Times Internet. The most common topics and skills that interviewers at Times Internet expect are Ad Sales, B2B Sales, Sales, Social Media Marketing and SQL.
What are the top questions asked in Times Internet interview?

Some of the top questions asked at the Times Internet interview -

  1. 20 red balls and 16 blue balls are present in a bag. 2 balls are removed, if th...read more
  2. Find the second largest prime number from a given array of positive integers. A...read more
  3. If a person travels from point A to point B at 20 km/h and returns at 30 km/h, ...read more
How long is the Times Internet interview process?

The duration of Times Internet 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

4/5

based on 49 interview experiences

Difficulty level

Easy 15%
Moderate 77%
Hard 8%

Duration

Less than 2 weeks 63%
2-4 weeks 26%
6-8 weeks 7%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
PolicyBazaar Interview Questions
3.7
 • 476 Interviews
BigBasket Interview Questions
3.9
 • 401 Interviews
JustDial Interview Questions
3.5
 • 359 Interviews
Info Edge Interview Questions
3.9
 • 348 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Naukri Interview Questions
4.1
 • 201 Interviews
Uber Interview Questions
4.2
 • 156 Interviews
View all

Times Internet Reviews and Ratings

based on 708 reviews

3.4/5

Rating in categories

3.1

Skill development

3.7

Work-life balance

3.3

Salary

3.3

Job security

3.4

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 708 Reviews and Ratings
Chief Manager - Sales

Noida,

Mumbai

6-15 Yrs

Not Disclosed

Lead Product Designer

Noida

5-8 Yrs

Not Disclosed

Senior Payroll Specialist (In House) - US and India

Gurgaon / Gurugram

5-10 Yrs

₹ 8-12 LPA

Explore more jobs
Senior Software Engineer
149 salaries
unlock blur

₹20.9 L/yr - ₹33.6 L/yr

Product Manager
108 salaries
unlock blur

₹21 L/yr - ₹31.6 L/yr

Software Developer
99 salaries
unlock blur

₹13 L/yr - ₹27 L/yr

Manager
74 salaries
unlock blur

₹12.5 L/yr - ₹22 L/yr

Accounts Manager
67 salaries
unlock blur

₹5.5 L/yr - ₹11.4 L/yr

Explore more salaries
Compare Times Internet with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare

BigBasket

3.9
Compare
write
Share an Interview