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 (11)
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 (11)

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jul 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Type of data,garbage collector etc What kind of project have you done before
  • Ans. 

    I have worked on various projects including web applications, desktop applications, and mobile applications.

    • Developed a web application using ASP.NET MVC and Entity Framework

    • Created a desktop application using WPF and MVVM pattern

    • Built a mobile application using Xamarin.Forms

    • Used garbage collector to manage memory in all projects

    • Handled different types of data such as text, images, and videos

  • Answered by AI
  • Q2. What is dot net.. Is it object oriented language
  • Ans. 

    Dot net is a software framework developed by Microsoft for building and running applications on Windows.

    • Dot net provides a common language runtime (CLR) for executing code written in various programming languages.

    • It supports object-oriented programming and allows for easy integration with other Microsoft technologies.

    • Examples of dot net languages include C#, VB.NET, and F#.

    • Dot net also includes a large class library fo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for CGI Group DOT NET Developer interview:
  • Definition
  • Database
  • Metadata
Interview preparation tips for other job seekers - Be confident on what you are saying and stay calm and relaxed while giving answer
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good,SQL query and c# programs

Round 2 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. Design pattern related questions
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
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 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

I applied via Campus Placement and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Union And Union All in SQL?
  • Ans. 

    Union combines and removes duplicates, Union All combines all rows including duplicates.

    • Union merges the results of two or more SELECT statements into a single result set.

    • Union All returns all rows from all SELECT statements, including duplicates.

    • Union requires the same number of columns in all SELECT statements, while Union All does not.

    • Union sorts the result set and removes duplicates, while Union All does not.

    • Union ...

  • Answered by AI
  • Q2. Difference Abstract Method vs Interface ?
  • Ans. 

    Abstract methods are methods without implementation in abstract classes, while interfaces are contracts that define methods.

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

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

    • Abstract classes can have constructors, while interfaces cannot.

    • Interfaces can have properties,

  • Answered by AI
  • Q3. Tell Travelling Salesman Problem Optimal Solution Approach
  • Ans. 

    The optimal solution approach for the Travelling Salesman Problem involves using algorithms such as the Nearest Neighbor Algorithm and the 2-Opt Algorithm.

    • The Nearest Neighbor Algorithm starts at a random city and selects the nearest unvisited city as the next stop.

    • The 2-Opt Algorithm involves swapping two edges in the tour to see if it results in a shorter distance.

    • Other algorithms include the Genetic Algorithm and th...

  • Answered by AI
  • Q4. Can Two Primary keys can be made possible in Sql Table ?
  • Ans. 

    No, only one primary key can be defined in a SQL table.

    • Primary key ensures uniqueness of each record in a table.

    • A table can have only one primary key constraint.

    • However, a composite primary key can be created using multiple columns.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The Advice which I want to give all fresher candidates to explain theoretical questions that are asked by interviewer in a manner to real life based example, like if interviewer ask oops concepts like inheritance, polymorphism, encapsulation etc. don't tell him direct definition like this this and so please try to relate your answer to real world example and their uses in day to day life
And Another advice to keep calm while complete interview process and don't get nervous and hesitate while answering answer to interviewer

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between forach and Parallel.Foreach loop
  • Q2. Abstract class and interface when to use

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.6k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Publicis Sapient Interview Questions
3.5
 • 618 Interviews
GlobalLogic Interview Questions
3.7
 • 587 Interviews
UST Interview Questions
3.8
 • 511 Interviews
CGI Group Interview Questions
4.0
 • 485 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
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