Upload Button Icon Add office photos
Engaged Employer

i

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

Gyansys Infotech Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 167 Reviews

Filter interviews by

Gyansys Infotech DOT NET Developer Interview Questions and Answers

Updated 15 Nov 2024

Gyansys Infotech DOT NET Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is boxing and unboxing in C#?
  • Ans. 

    Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

    • Boxing is done implicitly by the compiler when a value type is assigned to a reference type variable.

    • Unboxing requires an explicit cast from the reference type back to the original value type.

    • Boxing and unboxing can impact performance, so they should be used carefully in performance-critical code.

  • Answered by AI
  • Q2. What are sessions in mvc?
  • Ans. 

    Sessions in MVC are used to store and manage user-specific data throughout multiple requests.

    • Sessions are used to maintain state between multiple requests from the same user.

    • Data stored in sessions is unique to each user and can be accessed across different pages.

    • Sessions can be used to store user authentication information, shopping cart items, etc.

    • Sessions can be managed using session variables in MVC controllers.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(3 Questions)

  • Q1. Explain exceptional handling
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in a program.

    • Exception handling helps in gracefully handling unexpected errors in a program.

    • It prevents the program from crashing and allows for proper error logging and recovery.

    • Commonly used keywords in exception handling are try, catch, finally, and throw.

    • Example: try { // code that may throw an exception } catch(Exception ex) { // handle the exception }

  • Answered by AI
  • Q2. Explain difference between abstract and interfaces
  • Ans. 

    Abstract classes can have implementation details while interfaces cannot.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • A class can only inherit from one abstract class, but can implement multiple interfaces.

    • Abstract classes can have constructors, fields, and properties, while interfaces cannot.

    • Abstract classes are used when some common functionality ne...

  • Answered by AI
  • Q3. One coding question on arrays
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Oop questions they will ask
  • Q2. C# basic string var dymaic out ref
  • Q3. Sql , dot net
Round 2 - Managment Round 

(2 Questions)

  • Q1. This round they will ask strategic question
  • Q2. How you will handle the team , deadlines
  • Ans. 

    I will handle the team by setting clear expectations, delegating tasks effectively, monitoring progress, and providing support as needed.

    • Set clear goals and deadlines for the team to ensure everyone is on the same page

    • Delegate tasks based on team members' strengths and workload

    • Regularly check in with team members to monitor progress and offer assistance if needed

    • Adjust deadlines or redistribute tasks as necessary to me...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was rejected in the second round, check what domain the company is working.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions and dot net basic questions

Round 2 - Coding Test 

Good to have , useful very easy

Interview Questionnaire 

1 Question

  • Q1. Abstract claas

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops, encapsulation, interface, private constructors
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. There were two technical and one HR round. Question were scenario based on sql and .net applications.
  • Q2. Replication of Databases
Round 2 - Technical 

(2 Questions)

  • Q1. I was not selected for round two
  • Q2. I am not aware of question in 2nd technical
Round 3 - HR 

(1 Question)

  • Q1. I was not selected for HR round
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Online zoom coding test will be there - 4 questions - 2 about output of code & 2 about technical questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Polymorphism and explain about virtual polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Virtual polymorphism is achieved through virtual functions in C++.

    • Virtual functions allow a function in a base class to be overridden in a derived class.

    • Example: Animal class with virtual function 'makeSound' overridden in Dog a

  • Answered by AI
  • Q2. Write code for virtual polymorphism and explain
  • Ans. 

    Virtual polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Create a base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers or references of the base class to call the overridden functions

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. About yourself should explain
  • Q2. Reason for job change
  • Q3. Salary negotiations and location

Interview Preparation Tips

Interview preparation tips for other job seekers - I have interviewed for c++ developer role in incedo company - please make sure you are completely aware of every functions and keywords relate to c++ concepts.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Java Question
  • Q2. Spring Boot related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Design a rest API and code it.
  • Ans. 

    Design and code a REST API for a software developer interview.

    • Define the endpoints and HTTP methods for the API (e.g. GET /users, POST /users)

    • Implement authentication and authorization mechanisms (e.g. JWT tokens)

    • Use proper status codes for responses (e.g. 200 OK, 401 Unauthorized)

    • Include error handling and validation for input data

    • Document the API using tools like Swagger or OpenAPI

  • Answered by AI
  • Q2. Questions related to JPA HIBERNATE SQL
Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion related to Last company Project and architecture level questions
  • Q2. Write code to calculate frequency of a word using Stream API and lambda expressions
  • Ans. 

    Calculate word frequency using Stream API and lambda expressions

    • Use Stream API to convert array of strings to stream

    • Use Collectors.groupingBy to group words by their frequency

    • Use Collectors.counting to count the occurrences of each word

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Shine and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Normal coding round with simple oa complexity

Round 2 - One-on-one 

(2 Questions)

  • Q1. Discussion on projects
  • Q2. Culture fit check

Interview Preparation Tips

Interview preparation tips for other job seekers - go thru projects and problem solving
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How does consumer, producer work in kafka
  • Ans. 

    Consumers read data from topics, while producers write data to topics in Kafka.

    • Consumers subscribe to topics to read messages from them

    • Producers publish messages to topics for consumers to read

    • Consumers can be part of a consumer group to scale out consumption

    • Producers can specify key for messages to control partitioning

  • Answered by AI

Gyansys Infotech Interview FAQs

How many rounds are there in Gyansys Infotech DOT NET Developer interview?
Gyansys Infotech interview process usually has 1 rounds. The most common rounds in the Gyansys Infotech interview process are Technical.
How to prepare for Gyansys Infotech DOT NET Developer 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 Gyansys Infotech. The most common topics and skills that interviewers at Gyansys Infotech expect are .NET, Angular, Angularjs, C# and SQL.
What are the top questions asked in Gyansys Infotech DOT NET Developer interview?

Some of the top questions asked at the Gyansys Infotech DOT NET Developer interview -

  1. What is boxing and unboxing in ...read more
  2. What are sessions in m...read more

Tell us how to improve this page.

Fast track your campus placements

View all
Associate Consultant
171 salaries
unlock blur

₹4 L/yr - ₹8.4 L/yr

Senior Consultant
99 salaries
unlock blur

₹8.7 L/yr - ₹27.5 L/yr

Lead Consultant
84 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Consultant
83 salaries
unlock blur

₹4.2 L/yr - ₹12.9 L/yr

Principal Consultant
58 salaries
unlock blur

₹18.5 L/yr - ₹36 L/yr

Explore more salaries
Compare Gyansys Infotech with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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