Upload Button Icon Add office photos

Filter interviews by

Synophic Systems Interview Questions and Answers

Updated 15 Mar 2022

Synophic Systems Interview Experiences

Popular Designations

3 interviews found

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain me OSI layers
  • Ans. 

    OSI layers are a conceptual model that describes the communication functions of a network.

    • OSI stands for Open Systems Interconnection.

    • There are 7 layers in the OSI model.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The layers are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Examples of protocols at each layer include Ethernet at the Data Link

  • Answered by AI
  • Q2. They look into your confidence level

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good, and fresher to this field

Skills evaluated in this interview

Engineer - Network Operations Interview Questions asked at other Companies

Q1. How would you diagnose a STP loop in a switches network ?
View answer (1)

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain me OSI layers
  • Ans. 

    OSI layers are a conceptual model for communication systems that define how data is transmitted between devices.

    • There are 7 layers in the OSI model: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and interacts with adjacent layers to transmit data.

    • The Physical layer deals with the physical transmission of data, while the Application layer deals with us...

  • Answered by AI
  • Q2. They look into your confidence level

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good, and fresher to this field

Skills evaluated in this interview

Engineer - Network Operations Interview Questions asked at other Companies

Q1. How would you diagnose a STP loop in a switches network ?
View answer (1)

I applied via Naukri.com and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. My experience ,skills and tools worked on
  • Q2. Also fundamental questions on Information security

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview can be cleared if u have the understanding of information security.
Firewalls ,Endpoint security ,Network security concepts ,Encryption types

Validation Engineer Interview Questions asked at other Companies

Q1. What is the CSV? What is automation testing?
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Micro services, devops, python, networking scenarios, testing scenarios

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing: Morning
How was the environment? It happened in the Computer Lab of my institution
All students were assigned a computer and we had to solve questions on hackerrank

  • Q1. 

    Order of People Heights Problem Statement

    Consider 'N' individuals numbered from 0 to N-1 standing in a queue. You are provided with two arrays: Height and Infront, each consisting of 'N' non-negative int...

  • Ans. 

    The task is to find the actual order of people in a queue based on their heights and the number of taller people in front of them.

    • Iterate through the given arrays and create a list of tuples containing the height and number of taller people for each person.

    • Sort the list of tuples in descending order of height and ascending order of the number of taller people.

    • Create an empty result list and insert each tuple into the r...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Round was a mix of concepts from OOPS, OS and Problem Solving

  • Q1. 

    Binary Search Tree Value Finder

    Given a Binary Search Tree (BST) and a key value 'X', determine if there exists a node within the BST containing the value 'X'.

    Example:

    Input:
    Consider the tree represe...
  • Ans. 

    The task is to find if a given value is present in a Binary Search Tree (BST).

    • Start from the root node and compare the value with the target value.

    • If the value matches, return true.

    • If the target value is less than the current node value, move to the left child.

    • If the target value is greater than the current node value, move to the right child.

    • Repeat the process until a match is found or a leaf node is reached.

    • If a leaf...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms(basic), DBMS, Operating systems, basics of web development.Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Try to code the data structures that you have learned to understand things better
Tip 2 : Try to solve the problem even if it is the worst possible solution you think and then try to optimize don't jump to get the
best possible solution
Tip 3 : Discuss things among peers it helps to improve the understanding, even try to teach someone anything new you learn, this is very helpful during the interviews as you will have habit of explaining things

Application resume tips for other job seekers

Tip 1 : Try to be honest in the resume don't write something you don't know, most of the time it backfires.
Tip 2 : Try to make 2 good projects for cv and know about the challenges you can face on the project and think about how you can solve that challenge.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to get opportunities in Colt
  • Ans. Need thorough knowledge on ethernet over SDH,DWDM and OTN.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a great opportunity if you get a chance to join at Colt. Have a good work life balance 😊 and good features for employees as well.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Pretty easy just same basic aptitude and output based questions in C/C++ language

Round 2 - Technical 

(2 Questions)

  • Q1. Leetcode medium questions
  • Q2. Project discussions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

60 min 60 qs and negative marking

Round 2 - Technical 

(1 Question)

  • Q1. Interview with dsa and oops questions
Round 3 - HR 

(1 Question)

  • Q1. Normal questions

I appeared for an interview in Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing was 12 PM. Interviewer was nice.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from end to start and append each character to a new string.

    • Alternatively, use built-in functions like reverse() or slicing to reverse the string.

    • Handle special characters and numbers while reversing the string.

    • Ensure to consider the constraints on the length of the string and number of test cases.

  • Answered by AI
  • Q2. 

    Move Zeros to Left Problem Statement

    Your task is to rearrange a given array ARR such that all zero elements appear at the beginning, followed by non-zero elements, while maintaining the relative order of...

  • Ans. 

    Rearrange an array such that all zero elements appear at the beginning, followed by non-zero elements, maintaining relative order of non-zero elements.

    • Iterate through the array and maintain two pointers - one for the next position to place a zero and one for the next non-zero element.

    • Swap the elements at these pointers until all zeros are moved to the left and non-zero elements are in their relative order.

    • Time complexi...

  • Answered by AI
  • Q3. Write an SQL query to find the second highest salary from a table.
  • Ans. 

    SQL query to find the second highest salary from a table

    • Use the MAX() function to find the highest salary

    • Use the NOT IN operator to exclude the highest salary from the results

    • Order the salaries in descending order and limit the result to 1

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - 1 in NoidaEligibility criteriaAbove 8 CGPAWatchGuard Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice problem solving questions.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Online test

  • Q1. MCQ Questions

    Based on c++,c and java basics

  • Ans. 

    MCQ questions based on C++, C, and Java basics.

    • Understand the differences between C++, C, and Java syntax and features.

    • Be familiar with basic concepts like data types, control structures, and functions.

    • Practice solving MCQs to improve your understanding of the languages.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Technical interview

  • Q1. 

    Distinct Elements in K-Sized Windows

    The task is to determine the number of distinct elements in every sliding window of size 'K' across an array 'ARR' of size 'N'. A 'K' sized window is a contiguous sequ...

  • Ans. 

    Calculate the count of distinct elements in each sliding window of size 'K' across an array 'ARR'.

    • Use a sliding window approach to iterate through the array and keep track of distinct elements using a hashmap or set.

    • Update the count of distinct elements in each window as it slides across the array.

    • Return the array detailing the count of distinct elements in each 'K' sized window for each test case.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, and then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

    • Handle the base cases of empty list or single node list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 3 - Coding Test 

Round duration - 20 minutes
Round difficulty - Hard

Hr interview

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteria80% and above in 10th,12th and ugWatchGuard Technologies interview preparation:Topics to prepare for the interview - Stack Implementation, DBMS, SQL QUERIES, Data structure and ADATime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Go through oosp concept properly
Tip 2 : Good knowledge on coding
Tip 3 : intermediate knowledge on database and data structures

Application resume tips for other job seekers

Tip 1 : A project based on database
Tip 2 : Mention all the fields properly and have a prior knowledge on your project

Final outcome of the interviewRejected

Skills evaluated in this interview

Synophic Systems Interview FAQs

How many rounds are there in Synophic Systems interview?
Synophic Systems interview process usually has 1 rounds. The most common rounds in the Synophic Systems interview process are One-on-one Round.
How to prepare for Synophic Systems 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 Synophic Systems. The most common topics and skills that interviewers at Synophic Systems expect are Networking, OSPF, Bgp, Java and Switching.
What are the top questions asked in Synophic Systems interview?

Some of the top questions asked at the Synophic Systems interview -

  1. Explain me OSI lay...read more
  2. Also fundamental questions on Information securi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Cisco Interview Questions
4.2
 • 375 Interviews
Nvidia Interview Questions
3.7
 • 108 Interviews
BT Business Interview Questions
4.0
 • 81 Interviews
Arista Networks Interview Questions
4.2
 • 43 Interviews
View all

Synophic Systems Reviews and Ratings

based on 101 reviews

3.5/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.1

Salary

3.3

Job security

3.2

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 101 Reviews and Ratings
Network Engineer
82 salaries
unlock blur

₹2.1 L/yr - ₹9 L/yr

Network Support Engineer
43 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Senior Operations Engineer
30 salaries
unlock blur

₹6.8 L/yr - ₹14.2 L/yr

Associate Solution Architect
19 salaries
unlock blur

₹12.5 L/yr - ₹21 L/yr

Network Engineer L1
11 salaries
unlock blur

₹0.7 L/yr - ₹4 L/yr

Explore more salaries
Compare Synophic Systems with

Sterlite Technologies

3.8
Compare

Cisco

4.2
Compare

BT Business

4.0
Compare

Lumen Technologies

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