Upload Button Icon Add office photos

Filter interviews by

Times Internet Java Developer Interview Questions and Answers

Updated 2 Apr 2022

Times Internet Java Developer Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be clear with the basic OOPS concepts and some basic algorithm techniques

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious Subsequence Problem Statement Determine the lo ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(5 Questions)

  • Q1. Java & advance java,spring Boot
  • Ans. 

    I m to get yourlife company to work.

  • Answered Anonymously
  • Q2. Check my skills
  • Ans. 

    It's like technical round & Hr round , way of language speaking.

  • Answered Anonymously
  • Q3. I ability to doing work hard in this company
  • Q4. I'm have read to extra work form this company
  • Q5. I hope I think about me good everything it's OK thank you my side.

Interview Preparation Tips

Topics to prepare for Amazon Java Developer interview:
  • Core Java
  • JDBC
  • Servlets
  • Hibernate
  • Spring Boot
Interview preparation tips for other job seekers - Good
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Realted to.multithreading
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Nov 2022. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic java ask quations
  • Q2. What is java is use
  • Ans. 

    Java is a versatile programming language used for developing a wide range of applications.

    • Java is used for developing web applications, mobile apps, desktop applications, and enterprise software.

    • It is commonly used in backend development for server-side programming.

    • Java is also used in game development, scientific applications, and big data processing.

    • Examples include Android apps, banking software, e-commerce platform

  • Answered by AI
  • Q3. Java app li cation as
  • Q4. Your role for that job
Round 2 - Assignment 

Coding of java how to solve eassy quations

Round 3 - HR 

(1 Question)

  • Q1. Salary how and which side or osbsb idjs

Interview Preparation Tips

Interview preparation tips for other job seekers - Good eassy and get good opurchshsh idkskks

Skills evaluated in this interview

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

Learn fundamentals, masted dsa and oop. after create 2 professional projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the fundamentals
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Coding Test 

Codesignal Round : Implementation based 4 questions. Solved 2.5

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Asked to make a dynamic button component
Round 2 - Technical 

(1 Question)

  • Q1. Asked to make an API call using debouncing

I was interviewed in Jul 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Easy level DSA questions were asked to implement.

  • Q1. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS is a traversing algorithm we start traversing from a selected node (starting node) and traverse the graph layer wise thus exploring the neighbor nodes (nodes which are directly connected to source node). And then move towards the next-level neighbor nodes.
    Pseudocode :
    BFS (G, s) 
    Q.push( s ) //Inserting s in queue Q until all its neighbor vertices are marked.
    mark s as visited.
    while ( Q is not empty)
    //Removing th...

  • Answered Anonymously
  • Q2. 

    DFS Traversal Problem Statement

    Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GR...

  • Ans. 

    The DFS algorithm is a recursive algorithm based on the idea of backtracking. It starts with the initial node of the graph G, and then goes to deeper and deeper until we find the goal node or the node which has no children.
    Pseudocode :
    DFS(G, s):
    mark s as visited
    for all neighbors v of s in Graph G:
    if v is not visited:
    DFS-recursive(G, v)

  • Answered Anonymously
  • Q3. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    The recursive approach involves direct implementation of mathematical recurrence formula. 
    F(n) = F(n-1)+F(n-2)
    Pseudocode :
    fibonacci(n):
    if(n<=1)
    return n;
    return fibonacci(n-1) + fibonacci(n-2)

    This is an exponential approach. 
    It can be optimized using dynamic programming. Maintain an array that stores all the calculated fibonacci numbers so far and return the nth fibonacci number at last. This approach will t...

  • Answered Anonymously
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

DSA questions based on trees were asked to implement.

  • Q1. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. 

    A level order traversal based solution can be presented here. For each level, we need to print the first node i.e. the leftmost node of that level.
    Steps :
    1. Make a queue of node type and push the root node in the queue. 
    2. While the queue is not empty, do :
    2.1 Determine the current size of the queue. 
    2.2 Run a for loop to traverse all nodes of the current level and do :
    2.2.1 Remove the topmost node from the q...

  • Answered Anonymously
  • Q2. 

    Right View of Binary Tree

    Given a binary tree of integers, your task is to output the right view of the tree.

    The right view of a binary tree includes the nodes that are visible when the tree is observed...

  • Ans. 

    BFS can be used to solve this question.
    Steps :
    1. Traverse the whole tree in level order fashion using BFS along with storing the last processed node (curr).
    2. Keep a tag at the end of each level to know that a particular level has ended.
    3. Whenever a level ends store the last processed node value to the resultant list.
    Time Complexity : O(n) [ Since, each node is traversed exactly once ]
    Space Complexity : O(w) [ 'w' is

  • Answered Anonymously
  • Q3. 

    Height of Binary Tree

    You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...

  • Ans. 

    This problem can be solved using recursion. Recursively calculate height of left and right subtrees for each node node and assign height to the node as max of the heights of two children plus 1
    Algorithm :
    height()
    1. If tree is empty , return -1
    2. Else
    (a) Get the height of left subtree recursively i.e. call height( tree->left-subtree)
    (a) Get the height of right subtree recursively i.e. call height( tree->right-subt...

  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPolicyBazaar.com interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Learn DS, SQL for the interview as it will be ask and be confident about what you are saying
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 interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Silchar and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked a Question about Trees

Round 2 - Technical 

(1 Question)

  • Q1. Basics about DS, SQL

Times Internet Interview FAQs

How many rounds are there in Times Internet Java Developer interview?
Times Internet interview process usually has 1 rounds. The most common rounds in the Times Internet interview process are Technical.
How to prepare for Times Internet Java Developer 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 Java, Data Structures, MySQL, Spring Mvc and Algorithms.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
PolicyBazaar Interview Questions
3.6
 • 335 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
Zomato Interview Questions
3.8
 • 316 Interviews
Naukri Interview Questions
4.0
 • 181 Interviews
Uber Interview Questions
4.2
 • 162 Interviews
View all
Times Internet Java Developer Salary
based on 20 salaries
₹5.8 L/yr - ₹22.4 L/yr
116% more than the average Java Developer Salary in India
View more details

Times Internet Java Developer Reviews and Ratings

based on 5 reviews

3.5/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

2.9

Salary

2.7

Job security

3.4

Company culture

3.0

Promotions

2.7

Work satisfaction

Explore 5 Reviews and Ratings
Senior Software Engineer
147 salaries
unlock blur

₹11 L/yr - ₹39 L/yr

Product Manager
109 salaries
unlock blur

₹12.9 L/yr - ₹36.8 L/yr

Software Developer
94 salaries
unlock blur

₹6 L/yr - ₹23.5 L/yr

Manager
79 salaries
unlock blur

₹7.5 L/yr - ₹30 L/yr

Software Engineer
65 salaries
unlock blur

₹5.4 L/yr - ₹24 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