Upload Button Icon Add office photos

Quora

Compare button icon Compare button icon Compare
3.9

based on 7 Reviews

Filter interviews by

Quora Interview Questions and Answers

Updated 10 May 2023

Quora Interview Experiences

Popular Designations

3 interviews found

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

I applied via Job Fair and was interviewed in Apr 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 

Codesignal test. Can use the tested result.

Round 3 - Technical 

(1 Question)

  • Q1. One Leetcode tag problem. One of those high frequency.

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)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 7 Nov 2022

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 - Aptitude Test 

Hi how are you i am fine with a big smile okay hi hi hi hi hi hi hi hi hihi

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why did you join my company NSKSS BECAUSE I SEE MY CAREER GROWTH
  • Q2. DMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM

Interview Preparation Tips

Interview preparation tips for other job seekers - OKAY KNCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Head Agency Partnerships Interview Questions & Answers

user image Enakshi Chatterjee

posted on 20 Jul 2022

I applied via LinkedIn and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. What is the current role and responsibilities?
  • Q2. What are your strengths and weaknesses?
  • Q3. Any questions for me?
  • Q4. Please share instance of conflict management and team management?
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your understanding of Quora as a platform?
  • Q2. This is an Individual contributor role. Any views of how you will manage it vs previous manager role?
Round 3 - One-on-one 

(1 Question)

  • Q1. What is your view in managing partners and growing Quora’s business?
Round 4 - One-on-one 

(1 Question)

  • Q1. What are your key learnings from working with partners?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is important to know what your current role and KPIs are, along with challenges faced. Also important to have a view on how you would look to address the new role

Interview questions from similar companies

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

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a combination of mcq and coding questions
mcq: aptitude + c++ + sql question, nothing really tough
Coding question: 3 leetcode question, medium level, of stack, binary search and graph traversal

Round 2 - One-on-one 

(5 Questions)

  • Q1. Question regarding project
  • Q2. SQL basic to moderate question
  • Q3. C++ coding question on strings recursion callback in c, oops medium level question, finding error in code
  • Q4. Puzzles Q1-> cake cutting ( 3 cuts, 8 slices) Q2 ->9 bottles, 8 same weight bottles, 1 heavy, 2 tries using a balance
  • Q5. OS question difference bw multi-processing and multi-programming how would u reduce number of page faults. etc
Round 3 - One-on-one 

(3 Questions)

  • Q1. Once again project explanation
  • Q2. Basic to high level oops question:( C++) i was asked to write some class and in that these questions were asked 1: different types of access modifiers, but the question was asked indirectly. like why did...
  • Q3. HR questions, since it was a semi technical cum hr round,

Interview Preparation Tips

Interview preparation tips for other job seekers - stay clam and respond actively and please fill the company recruitment form properly, question was asked directly form that form. Also properly attend the pre placement talks, it would be beneficial as u can directly answer company related questions without any hesitation.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Past experience and questions around that
  • Q2. High level software design for eCommerce system
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why you want to join Style Baazar?

Interview Preparation Tips

Topics to prepare for Stylebaazar Store Manager interview:
  • Fashion trends
Interview preparation tips for other job seekers - Just be confident.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic HR stuffs
Round 2 - One-on-one 

(1 Question)

  • Q1. Various management questions/topics
Round 3 - Group Discussion 

5 areas of discussion all related to management

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

(2 Questions)

  • Q1. Design a chat application
  • Ans. 

    Design a chat application for real-time communication

    • Use WebSocket for real-time communication

    • Implement user authentication and authorization

    • Include features like group chat, private messaging, and file sharing

    • Design a responsive and user-friendly interface

    • Ensure data security and privacy

  • Answered by AI
  • Q2. Design a payment gateway
  • Ans. 

    Design a payment gateway for online transactions

    • Implement secure encryption for data transmission

    • Integrate with various payment methods like credit cards, PayPal, etc.

    • Provide error handling and transaction logging for troubleshooting

    • Ensure compliance with PCI DSS standards for data security

  • Answered by AI

Senior Android Developer (consultant) Interview Questions & Answers

Uplers user image Anonymous

posted on 10 Oct 2024

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

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Kotlin questions like scope functions and higher order functions
  • Q2. Data structures questions like detecting circular linked list and 2 sum

Quora Interview FAQs

How many rounds are there in Quora interview?
Quora interview process usually has 3-4 rounds. The most common rounds in the Quora interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
How to prepare for Quora 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 Quora. The most common topics and skills that interviewers at Quora expect are Coding, Python, Data Science, Product Management and Sales.
What are the top questions asked in Quora interview?

Some of the top questions asked at the Quora interview -

  1. What is your view in managing partners and growing Quora’s busine...read more
  2. What is your understanding of Quora as a platfo...read more
  3. Please share instance of conflict management and team manageme...read more

Tell us how to improve this page.

Quora Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

LinkedIn Interview Questions
4.3
 • 80 Interviews
Facebook Interview Questions
4.4
 • 70 Interviews
Uplers Interview Questions
4.1
 • 40 Interviews
Stylebaazar Interview Questions
3.9
 • 30 Interviews
TikTok Interview Questions
4.0
 • 23 Interviews
YouTube Interview Questions
4.5
 • 9 Interviews
Twitter Interview Questions
4.1
 • 5 Interviews
Snapchat Interview Questions
2.9
 • 5 Interviews
Instagram Interview Questions
4.6
 • 5 Interviews
Pinterest Interview Questions
4.8
 • 3 Interviews
View all

Quora Reviews and Ratings

based on 7 reviews

3.9/5

Rating in categories

3.9

Skill development

3.4

Work-life balance

2.5

Salary

3.4

Job security

3.9

Company culture

2.8

Promotions

3.7

Work satisfaction

Explore 7 Reviews and Ratings
Customer Success Manager
4 salaries
unlock blur

₹14 L/yr - ₹24 L/yr

Content Writer
3 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Writer
3 salaries
unlock blur

₹2 L/yr - ₹3.3 L/yr

Marketing Associate
3 salaries
unlock blur

₹10 L/yr - ₹10.3 L/yr

Explore more salaries
Compare Quora with

LinkedIn

4.3
Compare

Facebook

4.4
Compare

Twitter

4.1
Compare

Pinterest

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