Upload Button Icon Add office photos

Filter interviews by

INCREFF Sde1 Interview Questions and Answers

Updated 26 Feb 2023

INCREFF Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Normal MCQ questions, mostly GATE type questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. A question about recursion.
  • Q2. Discussion about project and tech used

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, and clear. Focus on explaining your approach clearly while solving a problem rather than final output

Interview questions from similar companies

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 Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 coding question was asked and it is a standard question from leetcode

Round 2 - Technical 

(2 Questions)

  • Q1. Find middle element of linked list
  • Ans. 

    To find the middle element of a linked list, use the slow and fast pointer technique.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move the slow pointer by one node and the fast pointer by two nodes until the fast pointer reaches the end of the list.

    • The node pointed to by the slow pointer at this point will be the middle element of the linked list.

  • Answered by AI
  • Q2. Explain acid properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that either all operations in a transaction are completed or none are

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that multiple transactions can be executed concurrently ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the topics well and read the company description and prepare according to company and focus more on learning and mastering your skills

Skills evaluated in this interview

I applied via Referral and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are different types of streams
  • Ans. 

    Streams are a sequence of data elements made available over time. There are different types of streams.

    • Byte Streams

    • Character Streams

    • Buffered Streams

    • Data Streams

    • Object Streams

    • Print Streams

    • File Streams

    • Network Streams

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

(1 Question)

  • Q1. Talks about previous projects and architecture.
Round 3 - One-on-one 

(1 Question)

  • Q1. More talks about previous projects and underlying architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Having a in depth knowledge of your tech stack will help you a lot in the interview

Skills evaluated in this interview

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

Build a typeahead component

Round 2 - Technical 

(2 Questions)

  • Q1. Build a form for personal details
  • Ans. 

    Build a form for personal details

    • Include fields for name, email, phone number, address, date of birth

    • Use input fields, dropdowns, and date pickers for user input

    • Add validation for required fields and correct formats

    • Consider user experience with clear labels and easy navigation

  • Answered by AI
  • Q2. Add validations to different fields
  • Ans. 

    Implement validations for different fields in software development.

    • Identify the fields that require validation such as email, password, phone number, etc.

    • Use regular expressions to validate input data format.

    • Implement client-side and server-side validations to ensure data integrity.

    • Display error messages for invalid input to guide users on correct data entry.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Leetcode medium question using heap
  • Q2. MySQL Queries using joins, group by, aggregate functions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Leetcode medium question of string
  • Q2. Database design for the notification service
  • Ans. 

    Design a database schema for a notification service

    • Identify the entities involved such as users, notifications, and devices

    • Create tables for each entity with relevant attributes

    • Establish relationships between tables using foreign keys

    • Consider indexing for efficient retrieval of notifications

    • Implement a mechanism for tracking read/unread status of notifications

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Dsa question regarding linked list and hashmap
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Money View user image Shreyas Vinayak Patil CSE-2019-23

posted on 5 Jun 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

2hrs aptitude test was there

Round 2 - Coding Test 

2 hrs coding test was there

Round 3 - Group Discussion 

GD was conducted and then i passed it

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

I applied via Approached by Company and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Hackerearth platform was provided , Question was based on Tree dsa. Need to run and pass few test cases.

Round 2 - Case Study 

Design patterns , chess LLD

Round 3 - Case Study 

Design blocking queue which can handle the multithreading scenario

Round 4 - One-on-one 

(5 Questions)

  • Q1. Last project experiences
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

  • Answered by AI
  • Q2. And management cases.
  • Q3. Discussion about recent projects
  • Q4. Discussion about working in projects for which hiring for
  • Q5. Discussion about why leaving previous company.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Question on linkedlist, remove duplicates
  • Q2. House robber 2,3

INCREFF Interview FAQs

How many rounds are there in INCREFF Sde1 interview?
INCREFF interview process usually has 3 rounds. The most common rounds in the INCREFF interview process are Resume Shortlist, Coding Test and One-on-one Round.

Tell us how to improve this page.

People are getting interviews through

based on 1 INCREFF 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

Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 750 Interviews
Myntra Interview Questions
4.0
 • 208 Interviews
Nykaa Interview Questions
3.5
 • 111 Interviews
Snapdeal Interview Questions
3.9
 • 74 Interviews
Lido Learning Interview Questions
2.3
 • 63 Interviews
MagicPin Interview Questions
3.1
 • 48 Interviews
Coding Ninjas Interview Questions
4.0
 • 47 Interviews
Pocket FM Interview Questions
3.1
 • 44 Interviews
View all
INCREFF Sde1 Salary
based on 27 salaries
₹15 L/yr - ₹23.8 L/yr
15% less than the average Sde1 Salary in India
View more details
Business Analyst
35 salaries
unlock blur

₹6.6 L/yr - ₹10 L/yr

Sde1
27 salaries
unlock blur

₹15 L/yr - ₹23.8 L/yr

Software Development Engineer
27 salaries
unlock blur

₹10 L/yr - ₹22.8 L/yr

Software Engineer
24 salaries
unlock blur

₹10 L/yr - ₹22.5 L/yr

Software Developer
24 salaries
unlock blur

₹10.5 L/yr - ₹23 L/yr

Explore more salaries
Compare INCREFF with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Shopclues

4.0
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