Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cygnet Infotech Team. If you also belong to the team, you can get access from here

Cygnet Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cygnet Infotech Senior Software Engineer Interview Questions and Answers

Updated 15 Sep 2022

Cygnet Infotech Senior Software Engineer Interview Experiences

1 interview found

I applied via Referral

Round 1 - Technical 

(1 Question)

  • Q1. Design Pattern Solid Principal OOPS JWT Token Dependency Injection
Round 2 - HR 

(1 Question)

  • Q1. Salary discuss, Previous job related discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Give interview with confident and with more preparation

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They specifically didn’t asked any questions by looking at my strong resume but just asked me if to come Hyderabad for training of a month

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge then it would be easy for you to get opportunity here at client site you will learn a lot as mostly you will be at your own, companies technical support is not very good so mostly you are on your own

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic oops concept. Code : linked list, deleting middle element in array.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask questions about the project you are supposed to work on. Reality can be totally different from what you are expecting. In my case I was hired for Development team. But I got support with no coding at all.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic Maths reasoning, general question genre jdnfk hdsfjks kjhbdfk

Round 2 - HR 

(1 Question)

  • Q1. Why you change the company
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2022. 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 - Aptitude Test 

Mcat Aptitude for general MCQ

Round 3 - Technical 

(5 Questions)

  • Q1. Python/Java Development test
  • Q2. What is Object-oriented programming?
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: Objects can encapsulate data and behavior within a single unit.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Objects can take on different forms or have multiple behaviors.

    • Example: Classes in Java or C++ are used to create objects with propertie

  • Answered by AI
  • Q3. Explain API Gateway.
  • Ans. 

    API Gateway is a server that acts as an API front-end, receiving API requests, enforcing throttling and security policies, passing requests to the back-end service, and then passing the response back to the requester.

    • API Gateway acts as a single entry point for all client requests to the backend services.

    • It can handle tasks like authentication, authorization, rate limiting, caching, and request/response transformations...

  • Answered by AI
  • Q4. What is Spring?
  • Ans. 

    Spring is a lightweight framework for building enterprise applications in Java.

    • Provides comprehensive infrastructure support for developing Java applications

    • Facilitates easier configuration and integration of various components

    • Promotes good programming practices like dependency injection and aspect-oriented programming

    • Includes modules like Spring Core, Spring MVC, Spring Security, etc.

    • Example: @Autowired annotation for

  • Answered by AI
  • Q5. What is Normalization?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller tables and defining relationships between them.

    • It helps in reducing data anomalies such as insertion, update, and deletion anomalies.

    • Normalization is achieved through a series of normal forms (1NF, 2NF, 3NF, BCNF, etc.)

    • For exa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Technologies and be confident

Skills evaluated in this interview

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

(1 Question)

  • Q1. Difference between Sanity & Smoke
  • Ans. 

    Sanity testing is a subset of regression testing, while smoke testing is a subset of acceptance testing.

    • Sanity testing is performed to ensure that the critical functionalities of the software are working as expected.

    • Smoke testing is performed to verify if the software build is stable enough for further testing.

    • Sanity testing is usually performed after major changes or bug fixes.

    • Smoke testing is performed on each build ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on Javascript like closure, event loop,hoisting and some coding questions on map,filter, reduce
  • Q2. Basic conceptual questions on React, redux
Round 2 - One-on-one 

(1 Question)

  • Q1. Coding questions on JS and React
Round 3 - HR 

(1 Question)

  • Q1. Salary Expectation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What are closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They are commonly used in event handlers, callbacks, and asynchronous programming.

    • Closures help in maintaining state in functional programming.

  • Answered by AI
  • Q2. What is virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed.

    • This approach reduces the number of costly DOM operations, resulting in faster rende

  • Answered by AI
  • Q3. What are the data types in JS
  • Ans. 

    Data types in JavaScript include number, string, boolean, object, function, undefined, and null.

    • Number - represents numeric data, e.g. 10, 3.14

    • String - represents textual data, e.g. 'hello', '123'

    • Boolean - represents true or false values, e.g. true, false

    • Object - represents complex data structures, e.g. { key: 'value' }

    • Function - represents executable code, e.g. function() { }

    • Undefined - represents a variable that has ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write react code for counter
  • Ans. 

    React code for a simple counter

    • Create a functional component for the counter

    • Use useState hook to manage the count state

    • Render the count value and buttons to increment and decrement the count

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good

Skills evaluated in this interview

I applied via Referral and was interviewed before Nov 2021. There were 4 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 - Aptitude Test 

Reasoning Aptitude Test and some logical questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic Java Questions of java 8, Collection, SpringBoot annotations, hibernate and jpa annotations,
Round 4 - Technical 

(1 Question)

  • Q1. Java 8, Logical question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare well in java 8 spring boot annotations, questions of collection

I appeared for an interview in Nov 2022.

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 

(2 Questions)

  • Q1. Client interview about previous projects
  • Q2. Scenario based solution design explanation
  • Ans. 

    Scenario-based solution design involves identifying and addressing potential issues in a given situation.

    • Identify the problem or challenge presented in the scenario

    • Consider possible solutions and their potential outcomes

    • Evaluate the feasibility and effectiveness of each solution

    • Select the best solution and develop a plan for implementation

    • Continuously monitor and adjust the solution as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is for Appian Developer role. Interview is good. Prepare for the scenario based questions and solution design.

Skills evaluated in this interview

Cygnet Infotech Interview FAQs

How many rounds are there in Cygnet Infotech Senior Software Engineer interview?
Cygnet Infotech interview process usually has 2 rounds. The most common rounds in the Cygnet Infotech interview process are Technical and HR.
How to prepare for Cygnet Infotech Senior Software Engineer 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 Cygnet Infotech. The most common topics and skills that interviewers at Cygnet Infotech expect are C#, .Net Core, .Net, MVC and Docker.

Tell us how to improve this page.

Cygnet Infotech Senior Software Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Cygnet Infotech Senior Software Engineer Salary
based on 196 salaries
₹6 L/yr - ₹23 L/yr
9% less than the average Senior Software Engineer Salary in India
View more details

Cygnet Infotech Senior Software Engineer Reviews and Ratings

based on 31 reviews

3.4/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.2

Salary

2.9

Job security

3.1

Company culture

3.0

Promotions

2.8

Work satisfaction

Explore 31 Reviews and Ratings
Software Engineer
198 salaries
unlock blur

₹4 L/yr - ₹14.5 L/yr

Senior Software Engineer
196 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior QA Engineer
70 salaries
unlock blur

₹4.9 L/yr - ₹13.1 L/yr

Client Account Manager
50 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

QA Engineer
43 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Explore more salaries
Compare Cygnet Infotech with

ITC Infotech

3.6
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

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