Upload Button Icon Add office photos

Filter interviews by

Misha Infotech Interview Questions and Answers

Updated 1 Mar 2025

Misha Infotech Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Abstraction scenario, Put Post, Frontend Validation
  • Q2. Security to the application
  • Ans. 

    Implementing security measures to protect the application from unauthorized access and data breaches.

    • Implement secure authentication methods such as OAuth or JWT tokens

    • Use HTTPS protocol to encrypt data in transit

    • Implement input validation to prevent SQL injection and XSS attacks

    • Regularly update and patch software to fix security vulnerabilities

    • Implement role-based access control to restrict user permissions

  • Answered by AI

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)

PHP Developer Interview Questions & Answers

user image talib Ansari

posted on 1 Mar 2025

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

I appeared for an interview before Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions from the cv.

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2022. There were 5 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 - Aptitude Test 

This is first round, you just score good in aptitude test.

Round 3 - Technical 

(1 Question)

  • Q1. Some technical questions ask by interviewer. You need to focus on one technology.
Round 4 - Coding Test 

This is main round now. They will do some crud operation for fresher.

Round 5 - HR 

(1 Question)

  • Q1. This is the Har round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be panic, just focus on technical questions.

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 Questionnaire 

1 Question

  • Q1. How you can manage data table when data is larger than millions of data?
  • Ans. 

    Use indexing, partitioning, and compression techniques to manage large data tables.

    • Use indexing to speed up data retrieval.

    • Partition the data into smaller chunks to improve query performance.

    • Use compression techniques to reduce storage space.

    • Consider using a distributed database system to handle the load.

    • Use caching to improve performance for frequently accessed data.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to learn many things in this field be ready. be updated

Skills evaluated in this interview

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)

Misha Infotech interview questions for popular designations

 DOT NET Developer

 (2)

 PHP Developer

 (1)

 Software Developer

 (1)

Jobs at Misha Infotech

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

I applied via Naukri.com and was interviewed in Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Are JOINS in SQL and difference between Inner JOIN and equi JOIN? Illustrate with an example.
  • Ans. 

    JOINS are used in SQL to combine data from two or more tables based on a related column.

    • Inner JOIN returns only the matching rows from both tables

    • Equi JOIN is a type of Inner JOIN where the join condition is based on equality between two columns

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Divide the array in two Halves and keep each half in ascending order without using new Array?
  • Ans. 

    Divide array in two halves and keep each half in ascending order without using new Array.

    • Use Array.sort() method to sort the original array

    • Use Array.slice() method to divide the array into two halves

    • Use Array.reverse() method to reverse the second half of the array

  • Answered by AI
  • Q3. What are Interfaces and Why do we need interfaces?
  • Ans. 

    Interfaces are contracts that define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • They allow for loose coupling between classes and promote code reusability.

    • Interfaces can be used to define common behavior across multiple classes.

    • Example: IDisposable interface in C# ensures that an object can be properly dispo...

  • Answered by AI
  • Q4. What is inheritance and Examples in inheritance.
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class is based on another class.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • The subclass can also add its own properties and methods.

    • Examples include a Car class inheriting from a Vehicle class, or a Dog class inheriting from an Animal class.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep The Basics clear and Be confident about what you know.
Be truthful and well prepared (Interviewer will catch your lies).

Skills evaluated in this interview

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept based questions

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Design pattern
  • Q2. Solid principle
  • Q3. Button trigger in mvc
  • Ans. 

    Button trigger in MVC allows for user interaction and execution of server-side code.

    • Buttons can be created using HTML helpers in MVC

    • Button click events can be handled using jQuery or JavaScript

    • Server-side code can be executed using AJAX calls or form submissions

  • Answered by AI
  • Q4. Delegate in c sharp
  • Ans. 

    Delegate is a type that represents references to methods with a specific parameter list and return type.

    • Delegates are similar to function pointers in C++.

    • Delegates can be used to pass methods as arguments to other methods.

    • Delegates can be used to define callback methods.

    • Delegates can be chained together using the + or += operator.

    • Delegates can be removed from a chain using the - or -= operator.

  • Answered by AI
  • Q5. Function delegate

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare well on technical side

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SOLID Principal, OOPS Concept
Round 2 - Technical 

(1 Question)

  • Q1. MVC , .Net Core , .Net assembly related.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have knowledge about MVC , .Net basic and oops concept.

Misha Infotech Interview FAQs

How many rounds are there in Misha Infotech interview?
Misha Infotech interview process usually has 2-3 rounds. The most common rounds in the Misha Infotech interview process are Technical, Coding Test and HR.
How to prepare for Misha Infotech 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 Misha Infotech. The most common topics and skills that interviewers at Misha Infotech expect are Javascript, JQuery, Entity Framework, MVC and MySQL.
What are the top questions asked in Misha Infotech interview?

Some of the top questions asked at the Misha Infotech interview -

  1. How you can manage data table when data is larger than millions of da...read more
  2. Security to the applicat...read more
  3. Some technical questions ask by interviewer. You need to focus on one technolog...read more

Tell us how to improve this page.

Misha Infotech Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.7k Interviews
Nagarro Interview Questions
4.0
 • 765 Interviews
Publicis Sapient Interview Questions
3.5
 • 622 Interviews
GlobalLogic Interview Questions
3.6
 • 594 Interviews
UST Interview Questions
3.8
 • 520 Interviews
FIS Interview Questions
3.9
 • 490 Interviews
View all

Misha Infotech Reviews and Ratings

based on 42 reviews

2.9/5

Rating in categories

3.4

Skill development

2.9

Work-life balance

2.9

Salary

3.0

Job security

2.9

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 42 Reviews and Ratings
Seo Expert

Noida

3-5 Yrs

₹ 3-5.5 LPA

Sales Head (IT)

Noida

10-15 Yrs

₹ 12-22 LPA

Explore more jobs
PHP Developer
15 salaries
unlock blur

₹3 L/yr - ₹7.4 L/yr

Software Engineer
13 salaries
unlock blur

₹1.7 L/yr - ₹8 L/yr

Software Developer
10 salaries
unlock blur

₹1.5 L/yr - ₹6.5 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Business Development Manager
7 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Misha Infotech 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