Upload Button Icon Add office photos

Syfe

Compare button icon Compare button icon Compare

Filter interviews by

Syfe Interview Questions and Answers

Updated 13 Dec 2024

Syfe Interview Experiences

Popular Designations

7 interviews found

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

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

Round 1 - Coding Test 

First round was taken by interview vector on leetcode
1 question was based on binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search(ship capacity leetcode)
  • Q2. Twitter lld design (medium leetcode)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Sde1 Interview Questions & Answers

user image Anonymous

posted on 13 Dec 2024

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

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

Round 1 - DSA 

(2 Questions)

  • Q1. Count no. of islands using DFS
  • Ans. 

    Count the number of islands in a grid using Depth First Search (DFS).

    • Create a visited array to keep track of visited cells

    • Iterate through each cell in the grid and perform DFS to explore neighboring cells

    • Increment the count of islands whenever a new island is encountered

  • Answered by AI
  • Q2. Roman to Int

Interview Preparation Tips

Interview preparation tips for other job seekers - leetcode level questions

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 17 Jul 2024

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

I applied via Referral and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

By interview Vector , 2 coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. LLD Stock exchange
Round 3 - One-on-one 

(1 Question)

  • Q1. HLD Zomato like

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Round 1

First question 30 mins, write a working modular code
Buy and sell stock 2 like Problem from leetcode.
Given an array of stock prices each day you can buy or sell stock. you can hold almost 1 stock at any time. return maximum profit you can achieve

2. Dp, maximum points from a card (30min
Several cards are arranged in a row and each card has one number. you can take a total K cards from the beginning or at the end. Your score is the sum of points on the cards you have picked.
eg: [1,2,3,4,5,6,1] k = 3 -> Ans 12

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode medium question if you are apply for SDE1 position at sypfe

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Syfe interview questions for popular designations

 SDE-2

 (1)

 Software Developer

 (1)

 Senior Software Engineer

 (1)

 Software Development Engineer II

 (1)

 Senior Front end Developer

 (1)

 Sde1

 (1)

Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

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

I applied via LinkedIn and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to sort data

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Class based vs functional comp
  • Ans. 

    Class-based components are used for complex components with state and lifecycle methods, while functional components are simpler and more lightweight.

    • Class-based components have access to lifecycle methods like componentDidMount and componentDidUpdate.

    • Functional components are easier to read and test.

    • Functional components can use React hooks to manage state and lifecycle.

    • Class-based components are more suitable for lar...

  • Answered by AI
  • Q2. Web optimisation
  • Q3. Coding questions
  • Q4. Lifecycle methods
  • Q5. Best practices
  • Q6. Some unnecessary ones

Interview Preparation Tips

Interview preparation tips for other job seekers - fresher will take interview and will just ask silly questions, nothing else.

Senior Front end Developer Interview Questions asked at other Companies

Q1. Discuss a time when you had to refactor a large codebase. How did you approach the task, and what steps did you take to ensure that the code remained maintainable and scalable?
View answer (1)

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How you will add two linked lists
  • Ans. 

    To add two linked lists, traverse both lists simultaneously and add corresponding nodes.

    • Create a new linked list to store the sum

    • Traverse both linked lists simultaneously and add corresponding nodes

    • If the sum is greater than 9, carry over the 1 to the next node

    • If one list is longer than the other, add the remaining nodes to the sum

    • Return the new linked list

  • Answered by AI
  • Q2. Determine the order of scheduling of jobs given jobs and its dependency
  • Ans. 

    Determining job scheduling order based on dependencies

    • Create a directed graph with jobs as nodes and dependencies as edges

    • Use topological sorting to determine the order of scheduling

    • If there is a cycle in the graph, it is not possible to schedule the jobs

    • Consider using depth-first search to traverse the graph

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and think loudly

Skills evaluated in this interview

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: CAT-type data interpretation test.30 questions in 35 minutes.Fast graph interpretation and quick calculations.
Tips: CAT preparation will help.
Duration: 35 minutes
Total Questions: 30

Round: Case Study Interview
Experience: A simple case, based on the credit card industry or any other field, is given. Cases lay more focus on quantitative skills apart from the focus on asking the right questions.There is a shortlist made after each case round.
Tips:  Fast calculation and insight into what data may be required to solve the case are essential.Practice the cases given on their website and at www.beprepared.in.

Round: Behavorial Interview
Experience: Questions are asked based on incidents- give examples of instances when you led a team successfully or when you had to go against your team, etc.
Tips:  Practice HR questions from HLPQ.

General Tips: Positions Of Responsibility (PORs) are required but not mandatory. They are of secondary importance if one has scored well in the exam. A good CV with good internships/projects will help one to get shortlisted.
Skill Tips: "Student needs to be quick with simple percentage calculations."
Skills: Basic Quantitative skills
College Name: IIT Kharagpur

Interview Preparation Tips

Round: Test
Experience: Written Test ( DI questions, each involving 2-3 plots)

Round: Interview
Experience: Started with a “Tell me something about your-self question”. I believe it was just to set the ball rolling and was not evaluated. The interviewer then gave me a case question wherein I had to make a choice between a diesel and a petrol car. There were 3 parts to the question (some candidates were asked 1 / 2 as well). The first dealt with finding the breakeven point given the basic set of cost, fuel price and fuel consumption data. Next was to find breakeven considering the money was acquired at a certain rate of interest (bond/loan). Both these results involved basic calculation and I was comfortable with them. The final part was about calculating the breakeven, again, but this time considering depreciation. This is where I was caught off guard and though I did turn up with a figure, the interviewer was not completely satisfied.

General Tips: Do get a basic background of the firm and also about terms in the related field.
Skill Tips: I was not hesitant and was reasonably confident while answering. What went wrong was perhaps the fact that I was caught unaware of how depreciation works and how it had to be included in the equation. I fumbled a lot with the equation and puzzled as to where to include terms for depreciation etc.
College Name: IIT KANPUR

Interview Preparation Tips

Round: Test
Experience: There was test which was purely data analysis and calculator was allowed. So the procedure that they follow is that first they shortlist 50 people and a small case interview is followed. The case I was asked was to calculate the change in the cost of a grocery store if it has changed its model from cash on delivery with a physical store to an online portal which has cash on delivery option. As I had practiced it already I took some time to give structure and then gave 3-4 reasons for change in cost and then he gave me some numbers based on which I had to calculate the break even time period or amount . But I think he expected a little bit different approach or was searching for a different solution as I wasn't selected for the final interview sessions. I think 22 people were selected for the final interview session out of which 2 people were finally selected in Cap One.

College Name: IIT KANPUR

Syfe Interview FAQs

How many rounds are there in Syfe interview?
Syfe interview process usually has 1-2 rounds. The most common rounds in the Syfe interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Syfe 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 Syfe. The most common topics and skills that interviewers at Syfe expect are Black Box Testing, Client Management, Customer Service, Manual Testing and Mobile Application Testing.
What are the top questions asked in Syfe interview?

Some of the top questions asked at the Syfe interview -

  1. determine the order of scheduling of jobs given jobs and its dependen...read more
  2. How you will add two linked lis...read more
  3. class based vs functional c...read more

Tell us how to improve this page.

Syfe Interview Process

based on 6 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 300 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 184 Interviews
Groww Interview Questions
3.7
 • 66 Interviews
Upstox Interview Questions
3.7
 • 35 Interviews
Paytm Money Interview Questions
3.2
 • 27 Interviews
INDMoney Interview Questions
3.4
 • 13 Interviews
Zerodha Interview Questions
4.2
 • 9 Interviews
Kuvera Interview Questions
3.5
 • 1 Interview
ET Money Interview Questions
3.8
 • 1 Interview
View all

Syfe Reviews and Ratings

based on 9 reviews

4.2/5

Rating in categories

4.4

Skill development

4.4

Work-life balance

4.0

Salary

3.6

Job security

4.3

Company culture

3.5

Promotions

4.3

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
6 salaries
unlock blur

₹15 L/yr - ₹35 L/yr

Software Developer
5 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹29 L/yr - ₹38 L/yr

QA Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Software Development Engineer II
4 salaries
unlock blur

₹25 L/yr - ₹45 L/yr

Explore more salaries
Compare Syfe with

Fiserv

3.0
Compare

PhonePe

4.0
Compare

HighRadius

2.9
Compare

Broadridge Financial Solutions

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