Upload Button Icon Add office photos

Filter interviews by

Rediff.com Software Engineer Interview Questions and Answers

Updated 12 Jun 2024

Rediff.com Software Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Explain event bubbling in js
  • Ans. 

    Event bubbling is the process where an event triggered on a child element is propagated up through its parent elements.

    • Events in JavaScript propagate through the DOM tree from the target element to the root element.

    • When an event occurs on a child element, it will also trigger the same event on its parent elements.

    • Event bubbling allows for event delegation, where a single event handler is attached to a parent element to

  • Answered by AI
  • Q2. Difference between DELETE * and TRUNCATE in MySQL
  • Ans. 

    DELETE * removes all rows in a table while TRUNCATE removes all rows and resets auto-increment values.

    • DELETE * is a DML command and TRUNCATE is a DDL command

    • DELETE * is slower as it logs individual row deletions while TRUNCATE is faster as it deallocates data pages

    • DELETE * can have WHERE clause for selective deletion while TRUNCATE cannot

    • TRUNCATE resets auto-increment values while DELETE * does not

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

Data Structures and Algorithms questions were asked

Round 2 - One-on-one 

(1 Question)

  • Q1. Java Questions were asked
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql join questions
  • Q2. Python decorartors
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed before Mar 2022.

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 - HR 

(1 Question)

  • Q1. By when can u join, hr told me they shared my resume with multiple managers and waiting for it to be shortlisted
Round 3 - Technical 

(2 Questions)

  • Q1. Acid, SQL vs nosql, react based, asynchronous working of js, event loop, etc. How will u design a matrimony site such that search query will contain multiple preferences - age, height, income, etc (say 100...
  • Q2. How to implement any one of acid property.
  • Ans. 

    To implement ACID property, use transactions to ensure atomicity, consistency, isolation, and durability of data.

    • Use transactions to group related database operations together.

    • Ensure that all operations within a transaction are completed successfully or none of them are.

    • Maintain consistency by enforcing data integrity constraints.

    • Isolate transactions to prevent interference from other transactions.

    • Ensure durability by ...

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. Js output questions. A recursion based coding problem. (Easy-medium)
  • Q2. Was asked to develop an ui but i told the interviewer I'm more into backend so she asked me some backend questions after this. Didn't have to solve the ui task.
  • Q3. I answered almost all questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honest
Even if u have internship experience, your interview is going to be tech stack/CS fundamentals based rather than DSA. If no experience, expect DSA problems.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic questions on what you have mentioned in resume , design patterns , reactjs questions , explain your project

Interview Questionnaire 

2 Questions

  • Q1. Design Facebook
  • Ans. 

    Designing Facebook involves creating a social networking platform with features like user profiles, news feed, messaging, and more.

    • Create a user registration and login system

    • Develop a news feed algorithm to display relevant content

    • Implement a messaging system for users to communicate

    • Design a user profile page with customizable options

    • Incorporate features like groups, events, and pages

    • Ensure scalability and security of

  • Answered by AI
  • Q2. Reverse the linked list
  • Ans. 

    Reverse a linked list

    • Iterative approach using three pointers

    • Recursive approach with base case and recursive call

    • In-place reversal using stack

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design fhf rhf rhd r rhrhf rhfbt rhrif jdbtj djht jdbbtb fjjt

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 Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 2 question on Data structure and algorithms (easy-medium and medium level questions)
  • Q2. Related to array and matrix
Round 2 - Technical 

(2 Questions)

  • Q1. This also contained discussion on last company project and some basic question regarding different tech stack used. Then asked 2 questions on Data structure and algorithms (both medium level questions)
  • Q2. Related to stack and linked list
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was the Hiring Manager round. He asked different questions related to general programming like - Rest, Http, Websockets, TCP. Asked some questions from past company projects. Then asked one easy-mediu...
  • Q2. Programming and Math related topics

Interview Preparation Tips

Topics to prepare for Tokopedia Software Engineer interview:
  • Data Structures
  • Algorithms
  • Programming
  • Operating Systems
Interview preparation tips for other job seekers - Should be well prepared for Data structure and Algorithm questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some database questions,some java questions .

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between javascript and jQuery.
  • Ans. 

    JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.

    • JavaScript is a programming language, while jQuery is a library written in JavaScript.

    • JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.

    • JavaScript is a core technology for web development, w...

  • Answered by AI
  • Q2. Define different types of join
  • Ans. 

    Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full ...

  • Answered by AI
  • Q3. Define multithreading concept and exception handling.
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.

    • Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.

    • Threads share the same memory space but have their own program counter and registers.

    • Exception handling is a mechanism to handle errors or exceptional situations in a program.

    • It helps prevent the prog...

  • 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 before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA medium leetcode questions - easy to solve

Round 2 - Coding Test 

DSA medium 2 questions and core questions 1.5 hrs

Round 3 - HR 

(5 Questions)

  • Q1. Managerial round and company fit check
  • Q2. Tell about company
  • Q3. Why should we hire you?
  • Q4. Tell something not in your resume
  • Q5. How would you handle deadlines?
  • Ans. 

    I prioritize tasks, communicate with stakeholders, and adjust resources as needed to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Regularly communicate with stakeholders to provide updates and address any issues that may impact deadlines

    • Adjust resources or seek help from team members if necessary to meet deadlines

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and core concepts and be confident

Interview Questionnaire 

1 Question

  • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...

Rediff.com Interview FAQs

How many rounds are there in Rediff.com Software Engineer interview?
Rediff.com interview process usually has 1 rounds. The most common rounds in the Rediff.com interview process are Technical.
What are the top questions asked in Rediff.com Software Engineer interview?

Some of the top questions asked at the Rediff.com Software Engineer interview -

  1. difference between DELETE * and TRUNCATE in My...read more
  2. explain event bubbling in...read more

Tell us how to improve this page.

Rediff.com Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Rediff.com Software Engineer Salary
based on 7 salaries
₹5 L/yr - ₹9 L/yr
22% less than the average Software Engineer Salary in India
View more details

Rediff.com Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Renewal Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager Enterprise Sales
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Group Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Rediff.com with

MagicPin

3.0
Compare

HealthKart

4.0
Compare

Awign Enterprises

4.0
Compare

Nestaway

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