Upload Button Icon Add office photos

Filter interviews by

Twitter Interview Questions, Process, and Tips

Updated 8 Jan 2025

Top Twitter Interview Questions and Answers

  • Q1. Fibonacci Number You are given an integer, all you have to do is to find whether this number is a Fibonacci number or not. Fn is said to be a Fibonacci sequence such that ...read more
    asked in Software Developer interview
  • Q2. Minimum Number Of People To Teach Ninja has started a social networking site, Ninjas Space. There are a total of ‘N’ users and ‘M’ different types of languages on the soc ...read more
    asked in Software Developer interview
  • Q3. Break The Board You’re given a board of length 'L' and width 'W'. Your task is to break this board into 'L' * 'W' smaller squares, such that the total cost involved in br ...read more
    asked in Software Developer interview
View all 7 questions

Twitter Interview Experiences

Popular Designations

5 interviews found

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

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

Round 1 - Coding Test 

Leetcode similar coding tests

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you test the feasibility of an idea?
  • Q2. Explain the process of calling an API

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode and review basic SWE interview questions

Top Twitter Software Developer Interview Questions and Answers

Q1. Fibonacci NumberYou are given an integer, all you have to do is to find whether this number is a Fibonacci number or not. Fn is said to be a Fibonacci sequence such that each number in Fn is the sum of its two preceding numbers, starting wi... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What design tool can be implemented to determine if A and B are friends, and if B and C are friends, subsequently making A and C friends automatically?
  • Ans. 

    A graph traversal algorithm like Depth First Search (DFS) can be implemented to determine if A and B are friends, and if B and C are friends, subsequently making A and C friends automatically.

    • Implement a graph where each person is a node and friendships are edges between nodes

    • Use Depth First Search (DFS) to traverse the graph and check for connections between A and B, and B and C

    • If both connections exist, then A and C

  • Answered by AI

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Standard Leetcode Medium question.

Round 3 - One-on-one 

(1 Question)

  • Q1. DSA Questions and database questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good resume!

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 3 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 - One-on-one 

(2 Questions)

  • Q1. Most of the questions were related to my experience
  • Q2. Most of the questions were related-to my experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Most of the questions were related to my experience.

Program Manager 2 Interview Questions asked at other Companies

Q1. How to deal with difficult stakeholders?
View answer (1)

Twitter interview questions for popular designations

 Software Developer

 (2)

 Program Manager 2

 (1)

 Senior Software Engineer

 (1)

 Software Engineer

 (1)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Online coding round , 2-3 questions. Level - med-hard

  • Q1. Fibonacci Number

    You are given an integer, all you have to do is to find whether this number is a Fibonacci number or not.

    Fn is said to be a Fibonacci sequence such that each number in Fn is the sum of ...

  • Ans. Brute Force

    The basic idea is to keep generating Fibonacci numbers until we find a number equal to the given number or the generated number becomes greater than the given number. If the generated number is equal to the given number then it means the given number is a Fibonacci number. Otherwise, it is not a Fibonacci number.

     

    The steps are as follows:

     

    1. Check if ‘N’ is 0 or 1, return true.
    2. Create two variables ‘a’...
  • Answered by CodingNinjas
  • Q2. Break The Board

    You’re given a board of length 'L' and width 'W'. Your task is to break this board into 'L' * 'W' smaller squares, such that the total cost involved in break...

  • Ans. Greedy Approach

    This problem can be solved using the greedy approach. By greedy, we mean that we simply start cutting the board along every horizontal and vertical line. But this cutting needs to be in a specific manner. Let’s see how we can do this.

     

    • Start by making an integer variable minCost and initialize it to 0.
    • Now we talked about cutting the board in a specific manner. This specific manner will involve minim...
  • Answered by CodingNinjas
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

2 interviewers , coding problem, no compilation.

  • Q1. Minimum Number Of People To Teach

    Ninja has started a social networking site, Ninjas Space. There are a total of ‘N’ users and ‘M’ different types of languages on the social network in which users can comm...

  • Ans. Brute force

    To obtain the total number of users Ninja needs to teach, we first need to find the users who cannot communicate with their friends on the social network. Our approach will be to maintain a set and iterate over the array 'FRIENDS', and we will check for every pair of friends whether both of them know a common language using which they can communicate with each other. If both users do not know a common langua...

  • Answered by CodingNinjas
Round 3 - Face to Face 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Medium

CS fundamentals. Tough round. 40 mins interview. 1 interviewer from USA

  • Q1. OS Questions

    What is virtual memory? 
    Related questions on virtual memory , follow up questions on each answer.

  • Q2. DBMS Questions

    What are Locks ?
    What is transaction? Types, Uses

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

System Design Problem

  • Q1. System Design Problem

    Design Facebook like application

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Delhi Technological University. I applied for the job as SDE - 1 in BangaloreEligibility criteriaComputer related BranchTwitter interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 9 MonthsInterview preparation tips for other job seekers

Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume

Application resume tips for other job seekers

Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Twitter Software Developer Interview Questions and Answers

Q1. Fibonacci NumberYou are given an integer, all you have to do is to find whether this number is a Fibonacci number or not. Fn is said to be a Fibonacci sequence such that each number in Fn is the sum of its two preceding numbers, starting wi... read more
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. System design Shortner URL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Currently which type of work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Group Discussion 

Good discussion there are 10 people and we got topic emerging use of technology in training the staff

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

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

The assignment was a data dump and I was asked to find some insights to reduce cost

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview with VP Marketing about my previous experience
Round 4 - One-on-one 

(1 Question)

  • Q1. Interview with reporting manager about my experience and skills to do that job
Round 5 - One-on-one 

(1 Question)

  • Q1. This round was to assess my culture fit

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good stories from your experience in STAR format

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

(2 Questions)

  • Q1. Basic questions like self introduction, experience, about current roles and responsibilities
  • Q2. Self introduction, current roles and responsibilities in the organisation, more questions about your roles and job
Round 3 - Behavioral 

(1 Question)

  • Q1. Self introduction, roles and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Invest some time to know about company before you attend interview

Twitter Interview FAQs

How many rounds are there in Twitter interview?
Twitter interview process usually has 2-3 rounds. The most common rounds in the Twitter interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for Twitter 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 Twitter. The most common topics and skills that interviewers at Twitter expect are French, SAN, Analytics, Computer science and PDF.
What are the top questions asked in Twitter interview?

Some of the top questions asked at the Twitter interview -

  1. What design tool can be implemented to determine if A and B are friends, and if...read more
  2. How do you test the feasibility of an id...read more
  3. Explain the process of calling an ...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Twitter interviews
Company Website
Job Portal
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
LinkedIn Interview Questions
4.3
 • 78 Interviews
Facebook Interview Questions
4.4
 • 70 Interviews
TikTok Interview Questions
4.0
 • 21 Interviews
YouTube Interview Questions
4.6
 • 9 Interviews
Instagram Interview Questions
4.6
 • 5 Interviews
Pinterest Interview Questions
4.8
 • 3 Interviews
Quora Interview Questions
3.9
 • 3 Interviews
Snap Inc Interview Questions
2.0
 • 2 Interviews
View all

Twitter Reviews and Ratings

based on 20 reviews

4.1/5

Rating in categories

3.7

Skill development

3.9

Work-Life balance

4.3

Salary & Benefits

3.0

Job Security

3.8

Company culture

3.8

Promotions/Appraisal

3.8

Work Satisfaction

Explore 20 Reviews and Ratings
Senior Software Engineer
12 salaries
unlock blur

₹37.5 L/yr - ₹80 L/yr

Software Developer
9 salaries
unlock blur

₹21.1 L/yr - ₹49.1 L/yr

Software Engineer
8 salaries
unlock blur

₹32 L/yr - ₹57 L/yr

Project Manager
5 salaries
unlock blur

₹12 L/yr - ₹32 L/yr

Senior Engineer
4 salaries
unlock blur

₹34 L/yr - ₹100 L/yr

Explore more salaries
Compare Twitter with

Facebook

4.4
Compare

LinkedIn

4.3
Compare

Snap Inc

2.0
Compare

Pinterest

4.8
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