Upload Button Icon Add office photos

Filter interviews by

Manabh Software Solutions Interview Questions and Answers

Updated 8 Sep 2024

Manabh Software Solutions Interview Experiences

Popular Designations

3 interviews found

DOT NET Developer Interview Questions & Answers

user image MAYA JONDHALE

posted on 30 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. Self introduction
  • Q2. , family background, basic SQL Education
  • Q3. Education background
Round 2 - Aptitude Test 

Basic questions speed, alphabet

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General Aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Basic and oops concepts
  • Q2. SQL sp,trigger,second highest value

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops,SQL,dotnet basic questions.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is Trigger,Store procedure, join in sql query and their syntax
  • Ans. 

    A trigger is a database object that is automatically executed in response to certain events. A stored procedure is a named group of SQL statements that can be executed. A join is used to combine rows from two or more tables based on a related column between them.

    • Triggers are used to enforce business rules, perform data validation, or automate tasks.

    • Stored procedures are used to encapsulate a set of SQL statements for r...

  • Answered by AI
  • Q2. Some mathamatical tasks like (a+b)2 simplify this
  • Q3. What is MVC , Life cycle of MVC
  • Ans. 

    MVC stands for Model-View-Controller. It is a software architectural pattern used in web development.

    • MVC separates the application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for rendering the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC follows a specific life cy...

  • Answered by AI
  • Q4. About myself and family detail
  • Q5. Sql queries using like ,between ,in keywords
  • Q6. Foreign key primary key
  • Q7. What is Entity Framework how to use
  • Ans. 

    Entity Framework is an ORM tool that simplifies database programming in .NET applications.

    • Entity Framework is used to map database tables to .NET classes.

    • It provides a set of APIs to perform CRUD operations on the database.

    • It supports LINQ queries to retrieve data from the database.

    • It supports different database providers like SQL Server, MySQL, Oracle, etc.

    • It has three different approaches: Database First, Model First...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - When you go to interview Dress well and speak confidently eye contact may matter keep calm and listen carefully the questions ask bye the interviewer, answer all questions polietly

Skills evaluated in this interview

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

Jobs at Manabh Software Solutions

View all

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concept relate questions and multithreading

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on oops concept
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Fair

Round 1 - Technical 

(1 Question)

  • Q1. Explain MVC life cycle?
  • Ans. 

    MVC life cycle involves request handling, routing, controller execution, view rendering, and response generation.

    • Request is received by the application

    • Routing determines which controller and action to execute

    • Controller executes the requested action and processes data

    • View is rendered to display the data

    • Response is generated and sent back to the client

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Aptitude Test 

Mettl aptitude reasoning and technical MCQ

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

(2 Questions)

  • Q1. About the SQL server basic question
  • Q2. .net fundamentals
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What changes should be made to both the backend and frontend when a new field is added in order to ensure that data flows from the backend to the user interface (UI) in the Model-View-Controller (MVC) arch...
  • Ans. 

    Adding a new field in MVC requires updates in the backend and frontend for seamless data flow.

    • 1. Update the Model: Add the new field to the data model class (e.g., 'public string NewField { get; set; }' in C#).

    • 2. Update the Database: Modify the database schema to include the new field (e.g., using a migration in Entity Framework).

    • 3. Update the Controller: Ensure the controller retrieves and sends the new field data to ...

  • Answered by AI
  • Q2. Could you describe the types of SQL query questions you were asked during the interview, including scenarios involving join operations with two tables and the expected outputs, as well as your experience w...
  • Q3. There are two technical rounds 1st round is around 45 mins and second round is face to face that is too technical around one and half an hour. Third round also happened at a day with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - It is important to thoroughly understand the topic and practically write code to see its application. For instance, in the case of the Singleton design pattern, we might question how we can identify it as a singleton. While we cannot observe it directly, we must determine which class to use for creating a singleton class and understand how this ensures the creation of only one instance.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Interface va abstract class
  • Q2. Mvc filters usage
  • Ans. 

    MVC filters are used to perform logic before or after an action method is executed in ASP.NET MVC applications.

    • Filters can be used for authorization, logging, exception handling, etc.

    • Types of filters include Authorization filters, Action filters, Result filters, and Exception filters.

    • Filters can be applied globally, at controller level, or at action level.

    • Example: [Authorize] attribute is a type of filter used for auth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Most questions on Dependency injection, how to implement DI, how data transfeted from controller to model to view... Practical scenario based mvc questions.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Assignment 

Give me to small project. C# console or asp.net or sql database

Round 2 - Group Discussion 

Self introduction & asking any question c# and asp.net and sql and ado.net

Interview Preparation Tips

Interview preparation tips for other job seekers - I have quickly understand mind. One time your train me after i pickup the job.

Manabh Software Solutions Interview FAQs

How many rounds are there in Manabh Software Solutions interview?
Manabh Software Solutions interview process usually has 2 rounds. The most common rounds in the Manabh Software Solutions interview process are Aptitude Test, HR and Technical.
How to prepare for Manabh Software Solutions 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 Manabh Software Solutions. The most common topics and skills that interviewers at Manabh Software Solutions expect are SQL, C#, Javascript, ASP.Net and SQL Server.
What are the top questions asked in Manabh Software Solutions interview?

Some of the top questions asked at the Manabh Software Solutions interview -

  1. What is Trigger,Store procedure, join in sql query and their syn...read more
  2. What is MVC , Life cycle of M...read more
  3. What is Entity Framework how to ...read more

Tell us how to improve this page.

Manabh Software Solutions Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.7k Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
Publicis Sapient Interview Questions
3.5
 • 621 Interviews
GlobalLogic Interview Questions
3.6
 • 592 Interviews
UST Interview Questions
3.8
 • 517 Interviews
CGI Group Interview Questions
4.0
 • 493 Interviews
View all

Manabh Software Solutions Reviews and Ratings

based on 7 reviews

2.6/5

Rating in categories

2.9

Skill development

2.9

Work-life balance

2.3

Salary

2.4

Job security

3.0

Company culture

2.3

Promotions

2.6

Work satisfaction

Explore 7 Reviews and Ratings
HR Executive

Pune

0-1 Yrs

Not Disclosed

Software Sales/Marketing Executive

Mumbai,

Nagpur

+4

0-2 Yrs

Not Disclosed

Technical Support Engineer

Mumbai,

Nagpur

+4

0-2 Yrs

Not Disclosed

Explore more jobs
Software Developer
12 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Technical Support Engineer
8 salaries
unlock blur

₹1.2 L/yr - ₹2.5 L/yr

DOT NET Developer
6 salaries
unlock blur

₹1.2 L/yr - ₹5.2 L/yr

.NET Software Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Sales Executive
4 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Explore more salaries
Compare Manabh Software Solutions with

Cognizant

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

4.0
Compare

Hexaware Technologies

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