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
Popular Designations

7 Interview questions

A Sde1 was asked 6mo ago
Q. Given a 2D grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizontally or vertically. You may assume all f...
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

View all Sde1 interview questions
A Sde1 was asked 6mo ago
Q. Given a roman numeral, convert it to an integer.
Ans. 

Convert Roman numerals to integers by mapping symbols to values and summing them based on specific rules.

  • Roman numerals consist of symbols like I (1), V (5), X (10), L (50), C (100), D (500), M (1000).

  • If a smaller numeral appears before a larger one, subtract it (e.g., IV = 4).

  • If a smaller numeral appears after a larger one, add it (e.g., VI = 6).

  • Example: 'MCMXCIV' = 1000 + (1000 - 100) + (1000 - 10) + 5 = 1994.

View all Sde1 interview questions
A Senior Software Engineer was asked 9mo ago
Q. A conveyor belt has packages that must be shipped from one port to another within days days. The ith package on the conveyor belt has a weight of weights[i]. Each day, we load the ship with packages on the ...
Ans. 

Binary search for ship capacity involves finding the minimum capacity needed to transport all packages within a given time.

  • Identify the range for ship capacity: min is max weight of packages, max is sum of all weights.

  • Use binary search to find the minimum capacity that allows all packages to be shipped within the given time.

  • Calculate the number of trips needed for a mid capacity: iterate through packages and sum w...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. Design a system similar to Twitter, focusing on the data model, API design, and scaling considerations. Consider features like user accounts, tweets, timelines, and search.
Ans. 

Design a simplified version of Twitter, focusing on user interactions and tweet management.

  • Users can follow/unfollow each other, e.g., User A follows User B.

  • Each user can post tweets, e.g., 'Hello World!' as a tweet.

  • Users can view their feed, which shows tweets from followed users.

  • Implement a timeline that retrieves the latest tweets, e.g., showing the 10 most recent tweets.

  • Support retweets and likes for tweets, e...

View all Senior Software Engineer interview questions
A Software Development Engineer II was asked
Q. Given a set of jobs and their dependencies, how would you determine the order of scheduling the jobs?
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

View all Software Development Engineer II interview questions
A Software Development Engineer II was asked
Q. How would you 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

View all Software Development Engineer II interview questions
A Senior Front end Developer was asked
Q. What are the differences between class-based and functional components?
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 fo...

View all Senior Front end Developer interview questions
Are these interview questions helpful?

Syfe Interview Experiences

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)
  • Ans. 

    Binary search for ship capacity involves finding the minimum capacity needed to transport all packages within a given time.

    • Identify the range for ship capacity: min is max weight of packages, max is sum of all weights.

    • Use binary search to find the minimum capacity that allows all packages to be shipped within the given time.

    • Calculate the number of trips needed for a mid capacity: iterate through packages and sum weight...

  • Answered by AI
  • Q2. Twitter lld design (medium leetcode)
  • Ans. 

    Design a simplified version of Twitter, focusing on user interactions and tweet management.

    • Users can follow/unfollow each other, e.g., User A follows User B.

    • Each user can post tweets, e.g., 'Hello World!' as a tweet.

    • Users can view their feed, which shows tweets from followed users.

    • Implement a timeline that retrieves the latest tweets, e.g., showing the 10 most recent tweets.

    • Support retweets and likes for tweets, e.g., ...

  • Answered by AI

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
  • Ans. 

    Convert Roman numerals to integers by mapping symbols to values and summing them based on specific rules.

    • Roman numerals consist of symbols like I (1), V (5), X (10), L (50), C (100), D (500), M (1000).

    • If a smaller numeral appears before a larger one, subtract it (e.g., IV = 4).

    • If a smaller numeral appears after a larger one, add it (e.g., VI = 6).

    • Example: 'MCMXCIV' = 1000 + (1000 - 100) + (1000 - 10) + 5 = 1994.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - leetcode level questions

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

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.

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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Syfe?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Jan 2021. 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 - Technical 

(2 Questions)

  • Q1. Pl sql Unix api configuration
  • Q2. Routing how to use proxy
  • Ans. 

    Routing through a proxy involves configuring the proxy server to forward requests to the destination server.

    • Configure the proxy server to listen for incoming requests

    • Configure the proxy server to forward requests to the destination server

    • Configure the client to use the proxy server for outgoing requests

    • Use a proxy server to bypass network restrictions or improve performance

    • Examples: Nginx, Apache, Squid

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid this company. You can be fired any day without notice.

Skills evaluated in this interview

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

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 Cash Management Services, Wealth Management, Medical Coding, Analytical Chemistry and Manual 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. twitter lld design (medium leetco...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 25%
2-4 weeks 75%
View more

Interview Questions from Similar Companies

FIS Interview Questions
3.9
 • 502 Interviews
PhonePe Interview Questions
4.0
 • 341 Interviews
PayPal Interview Questions
3.8
 • 224 Interviews
Fiserv Interview Questions
2.9
 • 181 Interviews
Razorpay Interview Questions
3.6
 • 159 Interviews
MasterCard Interview Questions
3.9
 • 144 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
CapitalOne Interview Questions
3.7
 • 81 Interviews
Rupeek Interview Questions
3.7
 • 65 Interviews
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.5

Job security

4.3

Company culture

3.5

Promotions

4.3

Work satisfaction

Explore 9 Reviews and Ratings
Backend Intern

Gurgaon / Gurugram

0-1 Yrs

Not Disclosed

Client Success Analyst (Remote)

Gurgaon / Gurugram

2-5 Yrs

Not Disclosed

SDE - Backend (SDE III)

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Explore more jobs
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

Software Engineer
4 salaries
unlock blur

₹15 L/yr - ₹35 L/yr

QA Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹13 L/yr

Software Development Engineer II
4 salaries
unlock blur

₹25 L/yr - ₹45 L/yr

Explore more salaries
Compare Syfe with

FIS

3.9
Compare

PhonePe

4.0
Compare

Fiserv

2.9
Compare

Broadridge Financial Solutions

3.9
Compare
write
Share an Interview