Upload Button Icon Add office photos
Engaged Employer

i

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

Ceinsys Tech Verified Tick

Compare button icon Compare button icon Compare
4.4

based on 403 Reviews

Filter interviews by

Ceinsys Tech DOT NET Developer Interview Questions, Process, and Tips

Updated 20 Dec 2024

Ceinsys Tech DOT NET Developer Interview Experiences

1 interview found

DOT NET Developer Interview Questions & Answers

user image Shubhangi Wasnik

posted on 20 Dec 2024

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

(4 Questions)

  • Q1. What is MVC Architecture
  • Ans. 

    MVC Architecture is a software design pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly

  • Answered by AI
  • Q2. What is middleware
  • Ans. 

    Middleware is software that acts as a bridge between different applications or systems, allowing them to communicate and share data.

    • Middleware facilitates communication between different software components

    • It can handle tasks such as authentication, logging, and error handling

    • Examples include message brokers like RabbitMQ, web servers like Apache, and API gateways like Kong

  • Answered by AI
  • Q3. How we create web api
  • Ans. 

    Web APIs can be created using frameworks like ASP.NET Core, which allow developers to build RESTful services for web applications.

    • Use ASP.NET Core framework to create web APIs

    • Define routes and controllers to handle HTTP requests

    • Implement actions in controllers to perform CRUD operations

    • Use attributes like [HttpGet], [HttpPost], [HttpPut], [HttpDelete] to define HTTP methods

    • Return data in JSON format using IActionResult

  • Answered by AI
  • Q4. Disadvantage of index in sql server
  • Ans. 

    Disadvantage of using indexes in SQL Server

    • Indexes can slow down write operations as they need to be updated whenever data is inserted, updated, or deleted

    • Indexes consume additional storage space on disk

    • Indexes can lead to increased query execution time if not used properly

  • Answered by AI

Interview questions from similar companies

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

I was interviewed before Dec 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Technical Round with Basic ASp/MVC/SQL questions
Round 2 - Technical 

(1 Question)

  • Q1. SQL And WebAPI questions [BASIC]
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly people with good support and understanding and also a good management team.
Limited in-house projects and most of the clients were in the BFSI sector.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via AmbitionBox and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Simple discussion
Round 2 - Coding Test 

Any coding test in asp.net for 1 hour duration

Round 3 - Technical 

(1 Question)

  • Q1. Ask some technical questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Amrita Vishwa Vidyapeetham, Amritapuri Campus

Round 1 - Aptitude Test 

Since it came through college I was a fresher and it was aptitude + English

Round 2 - Technical 

(2 Questions)

  • Q1. Project questions based on resume
  • Q2. Then some HR questions also based
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Prev job work and project details , roles and responsibility

Round 2 - Technical 

(2 Questions)

  • Q1. What is SDLC process
  • Ans. 

    SDLC process is a structured approach to software development that defines tasks performed at each stage of the software development life cycle.

    • SDLC stands for Software Development Life Cycle

    • It includes stages like planning, analysis, design, implementation, testing, and maintenance

    • Each stage has specific goals and deliverables to ensure the quality and success of the software project

  • Answered by AI
  • Q2. What is the ASp.net mean for ?
  • Ans. 

    ASP.NET stands for Active Server Pages .NET, a web application framework developed by Microsoft.

    • ASP.NET is a server-side web application framework used for building dynamic web pages and web applications.

    • It allows developers to create web applications using languages like C# or VB.NET.

    • ASP.NET provides tools and libraries for building web forms, MVC (Model-View-Controller) applications, and Web API services.

    • It is part o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tech round

Skills evaluated in this interview

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

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

Round 1 - HR 

(1 Question)

  • Q1. About yourself and background only

Interview Preparation Tips

Interview preparation tips for other job seekers - good good

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

    A cycle occurs when a node's next points back to a previous node in the ...

  • Ans. 

    The task is to determine if a given singly linked list forms a cycle or not.

    • A cycle occurs when a node's next points back to a previous node in the list.

    • To solve this problem, we can use the Floyd's Cycle-Finding Algorithm.

    • The algorithm uses two pointers, one moving at a normal pace and the other moving twice as fast.

    • If there is a cycle, the fast pointer will eventually catch up to the slow pointer.

    • If the fast pointer ...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Minimum Depth Of Binary Tree

    You have been given a Binary Tree of integers, find the minimum depth of this Binary Tree. The minimum depth of a Binary Tree is the number of nodes along the shortest path fro...

  • Ans. 

    The minimum depth of a binary tree is the number of nodes along the shortest path from the root node down to the nearest leaf node.

    • The minimum depth can be found by performing a breadth-first search (BFS) traversal of the binary tree

    • During the BFS traversal, keep track of the current level and increment the depth by 1 for each level

    • Stop the BFS traversal when a leaf node is encountered and return the depth as the minim

  • Answered by AI
  • Q2. Intersection Of Two Arrays

    You are given two arrays 'A' and 'B' of size 'N' and 'M' respectively. Both these arrays are sorted in non-decreasing order. You have to find the ...

  • Ans. 

    The problem is to find the intersection of two sorted arrays.

    • Use two pointers to iterate through the arrays.

    • Compare the elements at the current pointers and move the pointers accordingly.

    • If the elements are equal, add it to the intersection array and move both pointers.

    • If the element in the first array is smaller, move the first pointer.

    • If the element in the second array is smaller, move the second pointer.

    • Repeat until...

  • Answered by AI
  • Q3. Operating System Question

    What is the difference between a mutex and a semaphore

  • Ans. 

    A mutex is a binary semaphore used for mutual exclusion, while a semaphore is a generalized synchronization primitive.

    • Mutex is used to protect a critical section of code, allowing only one thread to access it at a time.

    • Semaphore is used to control access to a shared resource, allowing multiple threads to access it simultaneously.

    • Mutex has ownership, meaning the thread that locks it must unlock it.

    • Semaphore does not hav...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Technical Questions

    It was a managerial round. The interviewer started by introducing himself and then asked for my introduction. We then had an in-depth discussion on Cloud Computing, its importance and di...

  • Ans. 

    The interviewer asked about Cloud Computing, OSI layers, network security, and security protocols.

    • Discussed the importance of Cloud Computing

    • Talked about the different OSI layers

    • Explored the significance of network security in today's world

    • Discussed various security protocols in place

    • Had a healthy and friendly discussion

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

  • Q1. Basic HR questions

    The interviewer introduced himself and then asked for my introduction. He then asked me why I wanted to join F5 networks and why they should hire me. He then told me in-depth about the co...

  • Ans. 

    I wanted to join F5 networks because of their strong reputation in the industry and their commitment to innovation and customer satisfaction.

    • I am impressed by F5 networks' track record of delivering cutting-edge solutions to their clients.

    • I believe my skills and experience align well with the company's goals and values.

    • F5 networks' focus on customer satisfaction resonates with my own commitment to providing excellent s...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaMinimum CGPA Required: 7.0F5 Networks interview preparation:Topics to prepare for the interview - Data Structure and Algorithms, Operating Systems, Object-Oriented Programming, Computer Networks, System DesignTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot of DSA questions on various online platforms. 
Tip 2 : Regularly go back to some of the typical DSA questions.
Tip 3 : Give equal importance to OS, OOPS, and CN subjects.

Application resume tips for other job seekers

Tip 1 : Be thorough with your resume to answer anything and everything from your resume.
Tip 2 : Do not put false information on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Case Study 

Explain project and found quite basic

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

Interview Questionnaire 

4 Questions

  • Q1. What is Singleton Class?
  • Ans. 

    A Singleton Class is a class that can only have one instance and provides a global point of access to it.

    • Singleton Class restricts the instantiation of a class to a single object.

    • It is used when only one instance of a class is required throughout the system.

    • It provides a global point of access to the instance.

    • It is implemented by making the constructor private and providing a static method to access the instance.

    • Exampl...

  • Answered by AI
  • Q2. Why do we use Static in java
  • Ans. 

    Static keyword in Java is used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q3. Write Program with Singleton class
  • Ans. 

    Singleton class ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to get the instance of the class

    • Ensure thread safety by using synchronized keyword or static initialization

    • Example: Database connection manager

  • Answered by AI
  • Q4. Internal working of Hashmap
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • Hashmap uses an array to store the key-value pairs

    • The keys are hashed to generate an index in the array

    • If two keys hash to the same index, a linked list is used to store the values

    • Retrieving a value involves hashing the key to find the index and then traversing the linked list if necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - With 2 Years of experience, you can't expect people to be master on any topic, Stop humiliating people by asking questions on a single topic only.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Arithmetic and reasoning

Round 2 - HR 

(2 Questions)

  • Q1. Tell about your self ?
  • Q2. Why you choose this one?

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly

Ceinsys Tech Interview FAQs

How many rounds are there in Ceinsys Tech DOT NET Developer interview?
Ceinsys Tech interview process usually has 1 rounds. The most common rounds in the Ceinsys Tech interview process are Technical.
What are the top questions asked in Ceinsys Tech DOT NET Developer interview?

Some of the top questions asked at the Ceinsys Tech DOT NET Developer interview -

  1. disadvantage of index in sql ser...read more
  2. What is MVC Architect...read more
  3. How we create web ...read more

Tell us how to improve this page.

GIS Executive
53 salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

Assistant Manager
52 salaries
unlock blur

₹4.3 L/yr - ₹12 L/yr

Senior Executive
50 salaries
unlock blur

₹2.2 L/yr - ₹7.9 L/yr

Executive
47 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Junior Executive
45 salaries
unlock blur

₹1.1 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Ceinsys Tech with

Cyient

3.7
Compare

L&T Technology Services

3.3
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview