Upload Button Icon Add office photos

Syfe

Compare button icon Compare button icon Compare

Filter interviews by

Syfe Interview Questions, Process, and Tips

Updated 13 Dec 2024

Top Syfe Interview Questions and Answers

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)

Jobs at Syfe

View all

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

I applied via Referral and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you deel with merchens(costumer) ?

Interview Preparation Tips

Interview preparation tips for other job seekers - First I explain prodect benefits and convenc to buy prodect.

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

I applied via Company Website and was interviewed before Jun 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Machine learning and Java programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledege about the work you are presenting in front of them.

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
 • 305 Interviews
PayPal Interview Questions
3.9
 • 210 Interviews
HighRadius Interview Questions
2.9
 • 184 Interviews
Fiserv Interview Questions
3.0
 • 174 Interviews
Razorpay Interview Questions
3.6
 • 153 Interviews
MasterCard Interview Questions
3.9
 • 136 Interviews
CapitalOne Interview Questions
3.7
 • 79 Interviews
Rupeek Interview Questions
3.7
 • 61 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.6

Job security

4.3

Company culture

3.5

Promotions

4.3

Work satisfaction

Explore 9 Reviews and Ratings
Senior Product Analyst

Remote

5-8 Yrs

Not Disclosed

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