Upload Button Icon Add office photos

Times Internet

Compare button icon Compare button icon Compare

Filter interviews by

Times Internet SDE Interview Questions and Answers

Updated 6 Sep 2024

Times Internet SDE Interview Experiences

1 interview found

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

Interview questions from similar companies

SDE Interview Questions & Answers

Info Edge user image SUMAN JANGID

posted on 16 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Two stack based question
  • Q2. Find the non repeting no from an array
  • Ans. 

    Find the non-repeating number in an array of strings.

    • Iterate through the array and count the occurrences of each number using a hashmap.

    • Return the number that has a count of 1.

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Uber user image Anonymous

posted on 16 Jan 2025

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

Leetcode medium questions, 45 mins

Round 2 - One-on-one 

(2 Questions)

  • Q1. HLD question - cant disclose
  • Q2. Design LRU cache

SDE Interview Questions & Answers

Zomato user image Anonymous

posted on 6 Sep 2024

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

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

Round 1 - Coding Test 

Three lc med-hard, were there based on bs , arrays , segment trees

SDE Interview Questions & Answers

Flipkart user image Koushik Hegde

posted on 24 May 2024

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

Build the conference room

Round 2 - Technical 

(2 Questions)

  • Q1. Asked all about my previous work.
  • Q2. Resume based question , went in depth.
Round 3 - HR 

(1 Question)

  • Q1. Not much , discussed about the offer

SDE Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Questionnaire 

7 Questions

  • Q1. Find the second largest element in an array. (-----/)
  • Ans. 

    Find the second largest element in an array.

    • Sort the array and return the second last element

    • Iterate through the array and keep track of the two largest elements

    • Use a priority queue to find the second largest element

  • Answered by AI
  • Q2. Given a sorted array which can have repeated elements, find the occurrence of an element. (Most optimal solution is O(logn) – Using binary search to find start and end occurrence)
  • Ans. 

    Given a sorted array with repeated elements, find the occurrence of a given element using binary search.

    • Use binary search to find the first occurrence of the element

    • Use binary search to find the last occurrence of the element

    • Calculate the occurrence by subtracting the indices of the last and first occurrences and adding 1

  • Answered by AI
  • Q3. Make a data structure and implement an algorithm to print all the files in a directory. (the root directory can have sub-directories too.) I used an n-ary tree and BFS to print files. It can also be done u...
  • Ans. 

    Implement a data structure and algorithm to print all files in a directory, including sub-directories.

    • Use an n-ary tree or stack to represent the directory structure

    • Implement a BFS or DFS algorithm to traverse the directory and print files

    • Handle sub-directories recursively

    • Consider using a queue or stack to keep track of directories to visit

  • Answered by AI
  • Q4. He asked some question about my CV
  • Q5. Print a matrix diagonally. (-----/)
  • Ans. 

    Print a matrix diagonally.

    • Start from the top left corner and print the diagonal elements

    • Move down and right to print the next diagonal

    • Repeat until all diagonals are printed

  • Answered by AI
  • Q6. DFS of binary tree, n-ary tree
  • Ans. 

    DFS is a traversal algorithm used to visit all nodes of a tree or graph. It can be applied to binary as well as n-ary trees.

    • DFS stands for Depth First Search.

    • In DFS, we start from the root node and visit its children recursively until we reach a leaf node.

    • There are two types of DFS: Preorder (root, left, right) and Postorder (left, right, root).

    • DFS can be implemented using recursion or a stack data structure.

    • Example: I...

  • Answered by AI
  • Q7. Then he asked some question from other subjects. OS – Scheduling DBMS – Normalization, Transaction OOPS – Abstraction

Interview Preparation Tips

Round: Test
Experience: They had an online aptitude test on day 1. It was 90 minutes: 20 MCQs + 2 coding questions (choice between C/C++/Java for coding). MCQs were based on DSA, OS, and Math. They were apparently difficult.

Round: Test
Experience: 1. Keypad problem ( -----/ )– Little difficult problem on backtracking.2. Given an array, find the count of impossible triangle ( -----/ )

Round: Test
Experience: Questions involved DSA and strongly based on optimising the code:



1. Given a linked list, reverse K nodes in it eg :- 1->2->3->4->5->NULL , k = 3 3->2->1->5->4 2. Search for an element in an array which has elements who’s values are first increasing and then decreasing. (Use modified binary search)
Duration: 60 minutes
Total Questions: 2

College Name: NA

Skills evaluated in this interview

SDE Interview Questions & Answers

Info Edge user image Anonymous

posted on 25 Sep 2024

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test anddsa quuestions and also core questions

Round 2 - Coding Test 

Dsa round tree and graph questions

SDE Interview Questions & Answers

Uber user image Anonymous

posted on 4 Jun 2023

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

I applied via LinkedIn and was interviewed in Dec 2022. There were 3 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 

3 coding questions one on array

Round 3 - Technical 

(2 Questions)

  • Q1. Leetcode problem called 01 island
  • Q2. Leetcode problem no of ilsands

Interview Preparation Tips

Interview preparation tips for other job seekers - do leetcode as much as possible

SDE Interview Questions & Answers

Flipkart user image Anonymous

posted on 14 Feb 2024

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

(1 Question)

  • Q1. Questions on arrays and hashing
Round 2 - Technical 

(1 Question)

  • Q1. Questions on linkedlist and dp
Round 3 - HR 

(1 Question)

  • Q1. Questions on projects and standard HR questions

SDE Interview Questions & Answers

Amazon user image Anonymous

posted on 25 May 2015

Interview Preparation Tips

Round: Telephonic round
Experience: 1. An array is given with element name and their respective pH values. Print the combination of 2 elements which make a neutral compound.

A discussion started and best solution was O(n) time complexity and O(1) space complexity.

Then I got call for F2F interviews and here are those-

Round: Technical Interview
Experience: 1. Print Matrix in spiral form.

2. A store have n customers and any 1 can visit them any time through out the year.Data is stored in a file.Design a data structure to find given person visited on so n so date or not.

Round: Technical Interview
Experience: 1.There are N packages P1, P2…Pn. A package may depend on another or many other for its compilation. Given a matrix of dependency, find a sequence of package compilation.

2.A 2D matrix is given, with each elements representing number of gold coin at that position. I have to travel from (0,0) to last element of matrix collecting maximum no. of coins.I can travel either right of an element or down of it.

3.In Galaxy there are trillions of stars. I am provide distance of every star from earth. Tell me nearest 1Million stars to earth, provided with best time and space complexity.

Round: Technical Interview
Experience: 1. Implement LRU.

2.In Android phones we have 3X3 grid for making a pattern. Given a length, find number of combinations for that length in that grid.

Round: HR Interview
Experience: 1. Project deep discussion.
2. Few given scenarios and how you will tackle.
3. Strengths and weaknesses.
4. Given a file with many statements. Print all the strings with their anagrams through the file.Logic to check anagrams and to store them

Round: Technical Interview
Experience: 1. Behavioral Questions like
>Why you want to leave your organization?
>What is most challenging work you have done till date?
>Why you want to join Amazon?
etc.
2. Which data structure you know?
3.Say I have few words and their meaning, and I want to store them which DS will you use and why.
I started with Hashmap and we kept on discussing about pros and cons.Finally ended up with trie.He asked me to write code for it, for adding new word and for fetching meaning from Trie.The whole process started in 1st week and yesterday got a call from HR for I am invited to be part of Amazon.

College Name: NA

Times Internet Interview FAQs

How many rounds are there in Times Internet SDE interview?
Times Internet interview process usually has 1 rounds. The most common rounds in the Times Internet interview process are Technical.

Tell us how to improve this page.

Times Internet SDE Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

SDE Interview Questions from Similar Companies

Amazon SDE Interview Questions
4.1
 • 44 Interviews
Flipkart SDE Interview Questions
4.0
 • 5 Interviews
Info Edge SDE Interview Questions
3.9
 • 4 Interviews
Uber SDE Interview Questions
4.2
 • 2 Interviews
Zomato SDE Interview Questions
3.7
 • 1 Interview
View all
Senior Software Engineer
146 salaries
unlock blur

₹11 L/yr - ₹39 L/yr

Product Manager
107 salaries
unlock blur

₹13.6 L/yr - ₹36.8 L/yr

Software Developer
95 salaries
unlock blur

₹5.5 L/yr - ₹22.7 L/yr

Manager
73 salaries
unlock blur

₹7.5 L/yr - ₹30 L/yr

Software Engineer
64 salaries
unlock blur

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