Upload Button Icon Add office photos
Engaged Employer

i

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

Chetu Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 995 Reviews

Filter interviews by

Chetu .NET Software Developer Interview Questions and Answers

Updated 21 Mar 2023

Chetu .NET Software Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Round 1 is Optional test. Which we have to pass atleast 30 marks out of 50

Round 2 - One-on-one 

(1 Question)

  • Q1. What is oops. What is .net core What is Mssql. What is joins. What is union. What is procedures
  • Ans. 

    Answers to common technical questions asked in a .NET Software Developer interview.

    • OOPs stands for Object-Oriented Programming, a programming paradigm that uses objects to represent real-world entities.

    • .NET Core is a cross-platform, open-source framework for building modern applications.

    • MS SQL is a relational database management system used to store and retrieve data.

    • Joins are used to combine data from two or more tabl...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. SQL queries. Max average salary.
  • Ans. Login process. Authentication. Authorization. Return type of action method
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.learn theoretical part first then coding round must be stronger

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of oops, .net framework and .net core
  • Q2. Sql query for student department id
  • Ans. 

    SQL query to retrieve student department id.

    • Use SELECT statement to retrieve data

    • Specify the columns to be selected, including the department id column

    • Specify the table where the student data is stored

    • Use WHERE clause to filter the results based on student information

  • Answered by AI
  • Q3. Solid principles and design patterns
Round 2 - Technical 

(2 Questions)

  • Q1. Asked to code palindrome
  • Q2. Code duplicate string from main string and get index of sub string
  • Ans. 

    Code to find index of sub string in main string and duplicate the sub string

    • Use a loop to iterate through the main string and check for the sub string

    • If sub string is found, duplicate it and store the index

    • Return the index of the duplicated sub string

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Manager asked me to code the count index of substring and sum of substring
  • Q2. Questions as HR informed, it was worst and all interviews were scheduled at night time.he was more technical than the second round team lead instead of asking manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - worst manager round and salary is also provided less compared to market rate.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Hacker rank mcq medium to hard level 1 hr duration

Round 2 - Technical 

(3 Questions)

  • Q1. Oops , diff composition and inheritance
  • Q2. Design pattern explain singleton , abstract factory
  • Ans. 

    Singleton ensures a class has only one instance, while Abstract Factory provides an interface for creating families of related objects.

    • Singleton pattern restricts the instantiation of a class to one object, ensuring there is only one instance of the class.

    • Abstract Factory pattern provides an interface to create families of related or dependent objects without specifying their concrete classes.

    • Singleton pattern can be i...

  • Answered by AI
  • Q3. Implement linked list , all combination string in python
  • Ans. 

    Implement linked list and generate all combination strings in Python.

    • Create a Node class to represent each element in the linked list.

    • Implement methods to add nodes, delete nodes, and generate all combinations of strings.

    • Use recursion to generate all combinations of strings.

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Introduction about my skills and projects
  • Q2. Situation based question on my projects , talk about security and performance in my projects
Round 4 - HR 

(2 Questions)

  • Q1. Introduction about me and my family members
  • Q2. Relocation comfortable , about my friends who are placed , why many people from my college

Interview Preparation Tips

Interview preparation tips for other job seekers - mostly questions depend on interviewer , some my friend were asked basic question , mine were still moderate level , my luck is worst already more than 20 interview all are above 10 lpa , this one is 25lpa , luck matter most

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is Common Term Expression?
  • Q2. What is Overloading and Overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the parent class.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding is when a subclass provides a specific implementation of a method that is already defined in its parent class.

    • Example o...

  • Answered by AI
  • Q3. Examples of Server side session Management? Types of Session State?
  • Ans. 

    Server side session management involves storing user data on the server to maintain state. Types include in-process, out-of-process, and database.

    • In-process session state: Data stored in memory on the same server as the application.

    • Out-of-process session state: Data stored in a separate server or service, such as a state server or Redis cache.

    • Database session state: Data stored in a database, such as SQL Server or MySQ...

  • Answered by AI
  • Q4. How to Debug Stored Procedures?
  • Ans. 

    Debugging stored procedures involves using tools like SQL Server Management Studio, setting breakpoints, and analyzing query execution.

    • Use SQL Server Management Studio to debug stored procedures

    • Set breakpoints in the stored procedure code to pause execution at specific points

    • Analyze query execution using tools like SQL Profiler to identify issues

    • Use PRINT or SELECT statements to output intermediate results for debuggin...

  • Answered by AI
  • Q5. What is Compile time binding and Runtime Binding?
  • Ans. 

    Compile time binding occurs during compilation while runtime binding occurs during execution.

    • Compile time binding is also known as early binding, where the method to be called is determined at compile time based on the type of the object.

    • Runtime binding is also known as late binding, where the method to be called is determined at runtime based on the actual type of the object.

    • Compile time binding is faster as it is don...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ebix Software India DOT NET Developer interview:
  • C#
  • ASP.Net MVC
  • SQL Server
Interview preparation tips for other job seekers - Prepare well on C# and Asp.Net MVC. For experienced candidates prepare in depth.

Skills evaluated in this interview

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

General Topic And controversial topic

Round 2 - Technical 

(2 Questions)

  • Q1. Number series in python
  • Ans. 

    Number series in python involves generating a sequence of numbers based on a specific pattern or rule.

    • Use loops or list comprehensions to generate number series.

    • Identify the pattern or rule to determine the next number in the series.

    • Examples: Fibonacci series, prime numbers series, arithmetic progression.

  • Answered by AI
  • Q2. Basic python questions and patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills and fluency

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Based on core Java, DS and spring

Software Development Engineer II Interview Questions & Answers

Atlassian user image Suraj Udayashankar (Suraj Uday)

posted on 7 Aug 2024

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

Graphql implementation

Round 2 - Coding Test 

System design questions : HLD and LLD

Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Strengths and weakness
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Internal working of Hash Map
  • Ans. 

    Hash Map is a data structure that stores key-value pairs and uses a hash function to map keys to their corresponding values.

    • Hash Map uses a hash function to determine the index of the key-value pair in the underlying array.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Hash Map typically has a load factor threshold to determine whe...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Diff var let const
  • Ans. 

    diff var let const

    • var is function-scoped, let and const are block-scoped

    • var can be redeclared and reassigned, let can be reassigned but not redeclared, const cannot be reassigned or redeclared

    • const must be initialized during declaration, let and var can be declared without initialization

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Related to node js architecture
Round 3 - HR 

(1 Question)

  • Q1. Expectation and all

Skills evaluated in this interview

Chetu Interview FAQs

How many rounds are there in Chetu .NET Software Developer interview?
Chetu interview process usually has 4 rounds. The most common rounds in the Chetu interview process are Resume Shortlist, Aptitude Test and One-on-one Round.
What are the top questions asked in Chetu .NET Software Developer interview?

Some of the top questions asked at the Chetu .NET Software Developer interview -

  1. What is oops. What is .net core What is Mssql. What is joins. What is union. Wh...read more
  2. SQL queries. Max average sala...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Globant Interview Questions
3.9
 • 169 Interviews
View all
Chetu .NET Software Developer Salary
based on 47 salaries
₹1.8 L/yr - ₹8 L/yr
14% less than the average .NET Software Developer Salary in India
View more details

Chetu .NET Software Developer Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.4

Skill development

4.4

Work-life balance

4.2

Salary

4.2

Job security

4.2

Company culture

4.3

Promotions

4.6

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
1.2k salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Software Developer
1k salaries
unlock blur

₹2.4 L/yr - ₹9.7 L/yr

Senior Software Engineer
636 salaries
unlock blur

₹4.4 L/yr - ₹10.5 L/yr

Team Lead
285 salaries
unlock blur

₹5 L/yr - ₹13.2 L/yr

Senior Software Developer
221 salaries
unlock blur

₹4.2 L/yr - ₹11 L/yr

Explore more salaries
Compare Chetu with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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