Upload Button Icon Add office photos

Filter interviews by

Times Internet Sde1 Interview Questions and Answers

Updated 15 Jan 2022

Times Internet Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Subhajit Biswas

posted on 15 Jan 2022

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

Interview questions from similar companies

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 1 Jul 2024

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

1. Question on Graph LC-Hard 2. Question on BFS LC-Medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. 1. Minimum platforms GFG
  • Q2. Find missing number in array without extra space
  • Ans. 

    Find missing number in array without extra space

    • Iterate through the array and XOR all the elements with their indices and the actual numbers

    • The missing number will be the XOR result

    • Example: ['1', '2', '4', '5'] -> XOR(0, 1) ^ XOR(1, 2) ^ XOR(2, 4) ^ XOR(3, 5) = 3

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Question on Heap
  • Q2. Implement Heap in C++
  • Ans. 

    Implementing Heap data structure in C++

    • Use an array to represent the binary tree structure of the heap

    • Implement functions for inserting elements, deleting elements, and heapifying the array

    • Ensure that the heap property is maintained (parent node is always greater than or equal to its children)

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Implement LRU Cache
  • Ans. 

    LRU Cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • Use a combination of a doubly linked list and a hashmap to efficiently implement LRU Cache.

    • Keep track of the least recently used item at the tail of the linked list.

    • When an item is accessed, move it to the head of the linked list to mark it as the most recently used item.

    • When adding a new it...

  • Answered by AI
  • Q2. Discussion on CV and previous projects
Round 5 - One-on-one 

(1 Question)

  • Q1. Easy LLD question

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Flipkart user image Anonymous

posted on 24 Jun 2024

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 DSA questions were there in the coding round

Round 2 - Technical 

(2 Questions)

  • Q1. DSA based question
  • Q2. DSA question medium level

Sde1 Interview Questions & Answers

Uber user image Anonymous

posted on 12 Jun 2023

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

I applied via Company Website and was interviewed in May 2023. 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 

Very Easy questions just do it

Round 3 - One-on-one 

(4 Questions)

  • Q1. What is your introduction
  • Q2. Why SDE 1 only not SDE 2
  • Ans. 

    SDE 1 is an entry-level position where candidates gain foundational skills before advancing to SDE 2.

    • SDE 1 focuses on learning and building foundational skills in software development.

    • SDE 2 requires more experience and expertise in software development.

    • Advancing from SDE 1 to SDE 2 is a common career progression in tech companies.

    • SDE 1 roles often involve working on smaller projects or components of larger projects.

    • SDE...

  • Answered by AI
  • Q3. If bully happens will you bully someone
  • Ans. 

    No, I believe in standing up against bullying and supporting those who are being bullied.

    • I do not support bullying in any form and believe in treating others with respect and kindness.

    • I would try to intervene and help the person being bullied, either by talking to the bully or seeking help from a teacher or supervisor.

    • I believe in creating a positive and inclusive environment where everyone feels safe and respected.

  • Answered by AI
  • Q4. If taken leave can you work 7 days a week

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself you only and you will get a wholesome of 60 LPA

Sde1 Interview Questions & Answers

Amazon user image Harshita Manwani

posted on 17 Oct 2024

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

(2 Questions)

  • Q1. What is linked list?
  • Ans. 

    A linked list is a linear data structure where elements are stored in nodes with each node pointing to the next node in the sequence.

    • Consists of nodes connected by pointers

    • Does not have a fixed size like arrays

    • Can easily insert or delete elements without shifting other elements

    • Examples: Singly linked list, Doubly linked list, Circular linked list

  • Answered by AI
  • Q2. How to use set in javascript
  • Ans. 

    Sets in JavaScript are used to store unique values of any type.

    • Create a new set using the Set constructor

    • Add values to the set using the add() method

    • Check if a value exists in the set using the has() method

    • Remove a value from the set using the delete() method

    • Iterate over the set using the forEach() method

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1 HR of coding round, 2 problems asked. One on stack, one on DP.

Round 2 - Coding Test 

Machine coding round where LLD implementation of a cab booking system was asked.

Round 3 - Behavioral 

(2 Questions)

  • Q1. Past projects were discussed at length
  • Q2. Behavioural questions were asked

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 3 Jul 2023

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

I applied via Referral and was interviewed in Jun 2023. There were 5 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 

2 questions of leetcode medium level
And also has to write the steps of the approaches

Round 3 - Technical 

(1 Question)

  • Q1. Leet code medium of array and dp
  • Ans. 

    Dynamic programming problem involving arrays of strings.

    • Use dynamic programming to efficiently solve problems by breaking them down into smaller subproblems.

    • Consider using a 2D array to store intermediate results for optimal substructure.

    • Examples: Longest Common Subsequence, Word Break, Minimum Path Sum.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Leetcode medium of DP and behavioural questions
Round 5 - Technical 

(1 Question)

  • Q1. Leetcode medium questions and behavioural questions

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • Dp
  • Array
  • Recursion
  • Behavioural questions
Interview preparation tips for other job seekers - I was applied for SDE1. The maximum focus was on coding. Its not tough to crack. Just explain the approaches from brute to more optimise properly

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 28 May 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Assignment 

3 Coding question on hackerrank (graph leet code medium)

Round 3 - Technical 

(5 Questions)

  • Q1. Asked two medium question 1. find element in a rotated sorted array 2. and basics of CS
  • Q2. Final element in rotated array
  • Ans. 

    Find the final element in a rotated array.

    • Identify the pivot point where the array was rotated.

    • Determine if the target element is in the first or second half of the array.

    • Use binary search to find the target element.

  • Answered by AI
  • Q3. Reorder Linked list
  • Ans. 

    Reorder a linked list in place.

    • Use two pointers to find the middle of the list

    • Reverse the second half of the list

    • Merge the two halves of the list

  • Answered by AI
  • Q4. Intrsection point in linked list
  • Ans. 

    Finding the intersection point of two linked lists.

    • Traverse both lists and find their lengths

    • Move the head of the longer list by the difference in lengths

    • Traverse both lists simultaneously until they meet at the intersection point

  • Answered by AI
  • Q5. Path sum between two tree node
  • Ans. 

    Calculate the sum of all paths between two nodes in a binary tree.

    • Traverse the tree and keep track of the path and its sum from the root to the current node.

    • When the target nodes are found, calculate the sum of all paths between them by adding the path sums of their common ancestor.

    • Recursively traverse the left and right subtrees to find the target nodes.

    • Use a hash table to store the path sums of each node for efficien...

  • Answered by AI

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 30 Mar 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

45 minutes
2 medium level questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Rotten oranges srgiluskbfakbv agr vua bgG I;E OWE FKEJBiluwefbLEFskdbfhadbfil brsebkfb ;so gao;ig o b galkgrbalgb
  • Q2. 8 queen an lfabi abbglkabahblba bilub lilba l vvblab WLEKFJB AEFBIWEF KJDBAKDBVLYA Ffawejawl iubaw ;h'FO IF ;IFBA Jfkfblif ai;ur h

Interview Preparation Tips

Interview preparation tips for other job seekers - ab ia bfie;oweinfgakrjbgliE BIUWB GIEWB AD SBKB ABB bdlvkdbiagiia bladblakdjblakbl bh ldf bvlbgli

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 17 Mar 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

Binary Search Tree Traversal, 20 min, Leetcode

Round 3 - Technical 

(3 Questions)

  • Q1. What is caching? explain in detail.
  • Ans. 

    Caching is the process of storing frequently accessed data in a temporary storage to improve performance.

    • Caching improves performance by reducing the need to fetch data from the original source.

    • It involves storing data in a temporary storage, such as memory or disk, closer to the user or application.

    • Caching can be done at various levels, including browser caching, server-side caching, and database caching.

    • Examples of c...

  • Answered by AI
  • Q2. What are POST requests?
  • Ans. 

    POST requests are a type of HTTP request method used to submit data to a server.

    • POST requests are used to create or update resources on a server.

    • They are commonly used in web forms to submit user input data.

    • POST requests have a request body that contains the data being submitted.

    • They are different from GET requests, which are used to retrieve data from a server.

    • POST requests are more secure than GET requests because th

  • Answered by AI
  • Q3. Did explain about that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before applying. It will always help.

Skills evaluated in this interview

Times Internet Interview FAQs

What are the top questions asked in Times Internet Sde1 interview?

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

  1. What is encapsulati...read more
  2. Different between C and ...read more
  3. About SQL they asked few questi...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Times Internet interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 4.9k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
JustDial Interview Questions
3.5
 • 326 Interviews
Info Edge Interview Questions
4.0
 • 314 Interviews
Zomato Interview Questions
3.8
 • 313 Interviews
PolicyBazaar Interview Questions
3.6
 • 307 Interviews
Naukri Interview Questions
4.0
 • 179 Interviews
Uber Interview Questions
4.2
 • 159 Interviews
View all

Times Internet Sde1 Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-Life balance

3.0

Salary & Benefits

1.0

Job Security

2.0

Company culture

2.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
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

4.0
Compare

Network 18

3.4
Compare

Times Group

3.8
Compare

INDIA TODAY GROUP

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview