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 QA Engineer Interview Questions and Answers

Updated 24 Oct 2024

Mitsogo Inc Software QA Engineer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Aptitude Test 

They ask 60 question time duration is 60 minutes

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

I applied via campus placement at Sona College of Technology, Salem and was interviewed in Apr 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Easy to moderate level. Just basic aptitude questions and some topics had repeating questions with values changed. 60 questions in 60 minutes. No negative marks. all MCQs in virtual mode.

Round 2 - Coding Test 

It's not just a coding round. It's comprehensive assessment which had 2 sections. One section is verbal and the other one is coding. The verbal section had 3 questions of writing. 2 questions of essay writing and one is report writing. The essay writing was given on a random topic and the report writing was regarding "OAUTH AND IOS and it's impact in modern enterprises".
The coding round had 3 questions and it was in moderate - hard level. The second round was in mettel platform.

Round 3 - Technical 

(1 Question)

  • Q1. Tell about yourself, riddles based questions, questions on your project, mostly all the questions were related to resume.
Round 4 - HR 

(1 Question)

  • Q1. It is general HR round. Only basic question about the candidate and their family.
Round 5 - One-on-one 

(1 Question)

  • Q1. Technical + managerial Round Some scenario based questions, questions that test on our abilities, some basic technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is a great tool to crack any interview. Just beleive that you are capable of cracking this interview.

Software QA Engineer Interview Questions Asked at Other Companies

asked in Encora
Q1. What exceptions have u faced while creating framework?
Q2. What is Bug tracking and explain their bug life cycle?
asked in Nvidia
Q3. Design Test cases for A Deseal Car Engine. Cover all test cases
Q4. Questions related to QA< basic , scenario based questions
Q5. What are the advantages of wire EDM processes in comparison with ... read more

Interview questions from similar companies

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 Sep 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

OOPS , DBMS , OS , and DSA concepts

Round 2 - Technical 

(2 Questions)

  • Q1. DBMS related concepts
  • Q2. Networking and Network Security
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
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your Project and why you use this tech for this project.
  • Q2. Find the mid element in the link list.
  • Ans. 

    To find the mid element in a linked list, use two pointers - one moving at double the speed of the other.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The element pointed to by the slow pointer at this point is the mid element of the linked list.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Linked List Palindrome
  • Q2. Combination Sum
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. You have a hotel and how will you create a complete schema for hotel
  • Ans. 

    To create a complete schema for a hotel, you need to consider various entities like rooms, guests, reservations, staff, amenities, etc.

    • Entities to include: rooms, guests, reservations, staff, amenities, invoices, payments

    • Relationships between entities: guest stays in a room, staff manages reservations, amenities are available in rooms

    • Attributes for each entity: room number, guest name, reservation date, staff ID, ameni

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Carbon footprint and ways to achieve

Round 2 - Coding Test 

1. which data structure is used to create an editor?

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

(1 Question)

  • Q1. They will ask you about core java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Mitsogo Inc Interview FAQs

How many rounds are there in Mitsogo Inc Software QA Engineer interview?
Mitsogo Inc interview process usually has 3-4 rounds. The most common rounds in the Mitsogo Inc interview process are Aptitude Test, Resume Shortlist and Coding Test.

Tell us how to improve this page.

Mitsogo Inc Software QA Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
View all
Mitsogo Inc Software QA Engineer Salary
based on 4 salaries
₹4 L/yr - ₹5.2 L/yr
43% less than the average Software QA Engineer Salary in India
View more details
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