Upload Button Icon Add office photos
Engaged Employer

i

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

Mitsogo Inc Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mitsogo Inc Software Engineer Interview Questions and Answers

Updated 4 Jan 2025

Mitsogo Inc Software Engineer Interview Experiences

6 interviews found

Software Engineer Interview Questions & Answers

user image srimadhi karthikeyan

posted on 4 Jan 2025

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

(1 Question)

  • Q1. It is related to windows application and basic c# coding
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

QUANTS in Fill up form , 60qns-60, min

Round 2 - Coding Test 

5 coding question to be solved in 2 hrs

Round 3 - Coding Test 

2 Coding questions to be solved in 2 hrs

Round 4 - Technical 

(1 Question)

  • Q1. Asked about projects and puzzles
Round 5 - HR 

(1 Question)

  • Q1. Asked general HR questions

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude fill in type

Round 2 - Assignment 

English research assignment and essay writing

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interview at their office
  • Q2. Explain abt project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

  • Answered by AI

Software Engineer Interview Questions & Answers

user image Mohammad Mujahid

posted on 15 Feb 2024

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

60 min and problems are more in work

Round 2 - Coding Test 

It is moderate to advance level round and topics i faced are Arrays, string manipulation, DP

Interview Preparation Tips

Interview preparation tips for other job seekers - Attain strong grip in basics of programming, Aptitude is important, many students neglet it.

Mitsogo Inc interview questions for designations

 Associate Software Engineer

 (2)

 Software QA Engineer

 (2)

 Software Engineer Intern

 (1)

 Software Developer

 (7)

 Devops Engineer

 (3)

 QA Engineer

 (3)

 Softwaretest Engineer

 (1)

 Sdet Engineer

 (2)

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

Simple math question

Round 2 - Coding Test 

3 coding questions which contain easy midium and hard

Round 3 - Technical 

(1 Question)

  • Q1. Project and oops with DBMS os
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It basically contains the aptitude question of distance and time, age, speed, importantly pipes and cisterns

Round 2 - Coding Test 

They asked about pallindrome and string and array

Interview Preparation Tips

Interview preparation tips for other job seekers - Just get through basic concepts and strong about basic programming of your area

Interview questions from similar companies

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

(2 Questions)

  • Q1. Basics of Data structures, C++
  • Q2. How do you reverse an array
  • Ans. 

    To reverse an array of strings, iterate through half of the array and swap elements from start and end.

    • Iterate through half of the array

    • Swap elements from start and end of the array

  • Answered by AI

Skills evaluated in this interview

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 in Mar 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Starts with an online assessment test on HackerRank. Expect a LeetCode Medium question most of the time, mostly created by HackerRank.

Round 2 - One-on-one 

(2 Questions)

  • Q1. LC medium related to dynamic programming.
  • Q2. LC easy related to heaps.
Round 3 - One-on-one 

(1 Question)

  • Q1. LC medium-hard, don't remember the category.
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a design round. You can expect to be asked to design the DB schema and API endpoints for a well-known use case. Interviewer was super helpful and receptive throughout. While getting to an agreeabl...
Round 5 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Mostly discussions about your profile, discussion on past projects from your resume. You can do well in this round if you know your basics and can explain your projects to some depth....

Interview Preparation Tips

Interview preparation tips for other job seekers - Apart from DSA (which is very important in the initial rounds, I would say), putting down your understanding of your past projects in a doc and refining it should help in most conversations you have throughout the interview process. Also brush up on schema design, normalisation, and API design.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is promise
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used in JavaScript to handle asynchronous operations.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and failure callbacks.

    • Example: Fetching data from an API returns a promise that resolves with the data or rejects with an error.

  • Answered by AI
  • Q2. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable and function declarations are hoisted to the top of their scope.

    • Only declarations are hoisted, not initializations.

    • Function declarations take precedence over variable declarations.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is event loop
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.

    • It allows for non-blocking I/O operations, ensuring that the program can continue running while waiting for I/O operations to complete.

    • Event loop works by contin...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at Indian Institute of Technology (IIT), Mandi and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me about redux in reactJs
  • Ans. 

    Redux is a state management library for React applications.

    • Redux helps manage the state of your application in a predictable way

    • It stores the state of your application in a single immutable state tree

    • Actions are dispatched to update the state using reducers

    • Components can subscribe to the state changes using connect() function

  • Answered by AI
Round 2 - Coding Test 

Just a question need to count no. of digits of each element of the array and return them

Skills evaluated in this interview

Mitsogo Inc Interview FAQs

How many rounds are there in Mitsogo Inc Software Engineer interview?
Mitsogo Inc interview process usually has 3 rounds. The most common rounds in the Mitsogo Inc interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Mitsogo Inc Software Engineer interview?

Some of the top questions asked at the Mitsogo Inc Software Engineer interview -

  1. Explain abt proj...read more
  2. It is related to windows application and basic c# cod...read more
  3. Technical interview at their off...read more

Tell us how to improve this page.

Mitsogo Inc Software Engineer Interview Process

based on 6 interviews

2 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
View more
Mitsogo Inc Software Engineer Salary
based on 52 salaries
₹4 L/yr - ₹10 L/yr
30% less than the average Software Engineer Salary in India
View more details

Mitsogo Inc Software Engineer Reviews and Ratings

based on 9 reviews

3.5/5

Rating in categories

3.1

Skill development

3.5

Work-life balance

3.3

Salary

2.8

Job security

3.2

Company culture

3.3

Promotions

2.9

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
52 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Software Developer
16 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

Product Evangelist
11 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Product Consultant
9 salaries
unlock blur

₹5 L/yr - ₹7.2 L/yr

Devops Engineer
9 salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Mitsogo Inc with

Freshworks

3.5
Compare

Zoho

4.3
Compare

TCS

3.7
Compare

Infosys

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