Upload Button Icon Add office photos

Times Internet

Compare button icon Compare button icon Compare

Filter interviews by

Times Internet Interview Questions, Process, and Tips

Updated 18 Jan 2025

Top Times Internet Interview Questions and Answers

View all 54 questions

Times Internet Interview Experiences

Popular Designations

63 interviews found

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

(2 Questions)

  • Q1. What do you currently do in the organization where you are employed?
  • Q2. What are your individual contribution to the success of your team?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't lie or overshare information. If there are doubts abt the question, then ask the interviewer to be more specific

General Manager Interview Questions asked at other Companies

Q1. If we do 100% Banking, End of the Month Bank gives us Statement, Which account can be easily tracked from the Statement
View answer (2)

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

Interview Questionnaire 

5 Questions

  • Q1. Different between C and C++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) while C does not.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is achieved through access modifiers like public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access those...

  • Answered by AI
  • Q3. One DSA question.
  • Q4. About SQL they asked few questions
  • Q5. One puzzle in the end

Interview Preparation Tips

Interview preparation tips for other job seekers - It was quick and easy interview.

Skills evaluated in this interview

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - None 

(1 Question)

  • Q1. About the education and internships.

Marketing Trainee Interview Questions asked at other Companies

Q1. which strategies you will apply to promote your product in market?
View answer (1)

I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Remove duplicates from array Implement Stack using Queue
  • Ans. 

    Remove duplicates from array and implement Stack using Queue

    • To remove duplicates, use a HashSet or sort the array and iterate through it

    • To implement Stack using Queue, use two Queues and switch elements between them

    • Example: String[] arr = {"apple", "banana", "orange", "apple"};

    • Example: Queue queue1 = new LinkedList<>();

    • Example: Stack stack = new Stack<>();

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare easy and medium questions from leetcode

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Times Internet interview questions for popular designations

 Software Developer

 (5)

 Software Engineer

 (4)

 Senior Software Engineer

 (3)

 Marketing Trainee

 (2)

 Marketing Intern

 (2)

 Java Developer

 (2)

 Senior Android Developer

 (2)

 Project Manager

 (1)

I was interviewed in Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round. I was asked 2 DSA problems to discuss and code.

  • Q1. 

    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 fir...
  • 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: [1,

  • Answered by AI
  • Q2. 

    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.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round. I was asked questions related to Android and its architecture.

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

  • Answered by AI
  • Q2. 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 view o...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo CriteriaTimes Internet interview preparation:Topics to prepare for the interview - Android Architecture, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Senior Android Developer Interview Questions asked at other Companies

Q1. 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 first line contains an integer ‘T’ denoti... read more
View answer (1)

Get interview-ready with Top Times Internet Interview Questions

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 4 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 

Algorithm and database and datastructures

Round 3 - Coding Test 

Language and basic understanding

Round 4 - HR 

(2 Questions)

  • Q1. Too much Negotiations
  • Q2. Why this much of salary we give you

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for somewhere else if you are in tech. This is not a tech company. They are media house.

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Jobs at Times Internet

View all

SME Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2021

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Technical questions related to the subject
  • Q2. Managerial questions according to experience

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good experience, but job role is not described properly

SME Interview Questions asked at other Companies

Q1. 1. What is one to one function?
View answer (9)

Interview Questionnaire 

1 Question

  • Q1. Delete a Node in Linked list.
  • Ans. 

    To delete a node in a linked list, we need to find the node and update the pointers of its previous and next nodes.

    • Find the node to be deleted by traversing the linked list

    • Update the pointers of the previous and next nodes to skip the node to be deleted

    • Free the memory occupied by the node to be deleted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The campus process included 2 Technical and an HR round, First round was coding, second was to check theoretical knowledge and third HR round.

Skills evaluated in this interview

Top Times Internet Software Developer Interview Questions and Answers

Q1. 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 first line contains an integer ‘T’ denoti... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Operator Interview Questions & Answers

user image Anonymous

posted on 29 Dec 2021

I applied via Referral and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What you know about the business

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge about role and business

Operator Interview Questions asked at other Companies

Q1. Least count of micrometres,vernier caliper,what is gauge ,types of gauge, how to measure from micrometres , how to reading ,what is dial indicator ,what's work of dail indicator
View answer (1)

I applied via Campus Placement and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About yourself, why this role, how to pitch the product.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and cool and be smart in answering

Marketing Intern Interview Questions asked at other Companies

Q1. Most of our website traffic comes from India while our target geography is the USA. How will you bring US traffic?
View answer (1)

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 Digital Marketing.
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.

Times Internet Interview Process

based on 40 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
HT Media Interview Questions
3.3
 • 49 Interviews
Times Group Interview Questions
3.8
 • 27 Interviews
Network 18 Interview Questions
3.5
 • 26 Interviews
Sun TV Network Interview Questions
3.6
 • 12 Interviews
View all

Times Internet Reviews and Ratings

based on 666 reviews

3.6/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

3.4

Salary

3.3

Job security

3.5

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 666 Reviews and Ratings
Senior Sales Officer

Noida

2-5 Yrs

Not Disclosed

Senior Officer - Sales

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Junior Producer Job at Times Internet

Gurgaon / Gurugram

1-4 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
145 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
107 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
64 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Times Internet with

Info Edge

3.9
Compare

Network 18

3.5
Compare

Times Group

3.8
Compare

INDIA TODAY GROUP

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview