Upload Button Icon Add office photos
Engaged Employer

i

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

Mystifly Consulting Verified Tick

Compare button icon Compare button icon Compare
2.7

based on 85 Reviews

Filter interviews by

Mystifly Consulting Senior Software Engineer Interview Questions, Process, and Tips

Updated 25 Jun 2023

Mystifly Consulting Senior Software Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Dec 2022. There were 3 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 - HR 

(1 Question)

  • Q1. Why are looking to switch
  • Ans. 

    Seeking new challenges and opportunities for growth

    • Desire for new challenges and learning opportunities

    • Current role lacks growth potential

    • Interested in working with cutting-edge technologies

    • Seeking better work-life balance

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Architecture of current project
  • Ans. 

    The current project follows a microservices architecture with Docker containers and Kubernetes for orchestration.

    • Microservices architecture is used to break down the application into smaller, independent services that can be developed, deployed, and scaled independently.

    • Docker containers are used to package the application and its dependencies into a standardized unit for development, shipment, and deployment.

    • Kubernete...

  • Answered by AI
  • Q2. How you decide ttl in redis
  • Ans. 

    TTL in Redis is decided based on the desired expiration time for the data stored in the cache.

    • Consider the nature of the data and how frequently it needs to be updated

    • Take into account the memory constraints and performance requirements of the application

    • Use a combination of default TTL values and custom TTL settings for different types of data

    • Monitor the cache usage and adjust TTL values based on usage patterns

  • Answered by AI
  • Q3. Explain internals of LINQ
  • Ans. 

    LINQ (Language Integrated Query) is a feature in C# that allows querying data from different data sources using a uniform syntax.

    • LINQ allows querying data from collections, databases, XML, and other data sources using a common syntax.

    • It provides a set of standard query operators like Where, Select, OrderBy, GroupBy, etc.

    • LINQ queries are written in C# and are translated into equivalent SQL queries when querying database...

  • Answered by AI
  • Q4. ACID properties of relational DB
  • Ans. 

    ACID properties ensure data integrity in relational databases.

    • Atomicity: All transactions are either fully completed or fully aborted.

    • Consistency: Data remains consistent before and after transactions.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once a transaction is committed, changes are permanent.

    • Example: If a bank transfer fails midway, the entire transaction is rolled b...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mystifly Consulting Senior Software Engineer interview:
  • db
  • DS
Interview preparation tips for other job seekers - Basics of everything

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 3 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 

50 questions in 12mins

Round 3 - Technical 

(1 Question)

  • Q1. Basic DSA question in binary search and memoization

Interview Preparation Tips

Interview preparation tips for other job seekers - basic DSA question on binary search and basic memoization was asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Basic DSA questions related to string and hashmap

Round 2 - One-on-one 

(2 Questions)

  • Q1. Return true if the sentence use all the vowels else false
  • Q2. When to use BFS, DFS and basic DSA questions?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Simple java questions including theory and code snippet

Round 2 - Technical 

(2 Questions)

  • Q1. Iterate collection and do some options on some perticular elements?
  • Q2. Palandrone string Or pattern program Or string related program?
Round 3 - Technical 

(2 Questions)

  • Q1. Linux commands operating system?
  • Ans. 

    Linux commands are used to interact with the operating system through the command line interface.

    • Linux commands are case-sensitive

    • Commands are typically followed by options and arguments

    • Common commands include ls (list files), cd (change directory), mkdir (make directory)

    • Commands can be combined using pipes (|) and redirection symbols (> and <)

  • Answered by AI
  • Q2. Html css javascript theory questions
Round 4 - HR 

(2 Questions)

  • Q1. Salary discuss and general questions?
  • Q2. They ask for join immediately?

Interview Preparation Tips

Interview preparation tips for other job seekers - Get touched which HR while interview rounds

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 125 minutes
Round difficulty - Easy

Platform for this round is Amcat. The First round have coding questions , we can write programs in any language . It was easy round.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. Count Characters

    Anagrams have a unique property: the counts of each distinct character present in both strings are the same. One way to check this is: 

    1. Sort both strings, so that all the same characters come together
    2. Then loop through both strings together and check each element in both strings one by one
    3. If at any position, the characters are found to be different or if the lengths of the two strings are different, ...
  • Answered Anonymously
  • Q2. 

    Decimal to Octal Conversion Problem Statement

    Convert a given decimal number into its equivalent octal representation.

    Explanation:

    The octal number system is a base-8 system, meaning each digit ranges ...

  • Ans. Maths
    • A necessary observation for octal numbers is that every digit will lie in the range 0 - 7.
    • Create a variable sol to store the final octal representation of X and initialise sol to 0.
    • So, to convert decimal numbers to octal numbers:

                 1. Multiply previous sol value by 10, to add new remainder in the current step.

                 2. Find the r...

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This round was easy they basically ask about some important topics of computer science as well as related to our position for company.

  • Q1. What is the need for virtual memory?
  • Q2. 

    Delete Middle Element from Stack

    You are provided with a stack ARR of size 'N+1'. Your task is to delete the middlemost element so that the size of the resulting stack becomes 'N'.

    Recall that a stack is...

  • Ans. Recursive approach

    The idea is to use recursive calls. We first remove all items one by one, then we recur. After recursive calls, we push all items back except for the middle item.

     

    1. We have an input stack as “INPUTSTACK”, ‘N’ denotes the number of elements in the stack.
    2. We define a function "DELETEMIDDLE" that accepts, a stack of integers "STACK" and an integer “COUNT” (initially 0) as input parameters.
    3. Now we define...
  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

It was in the morning . Its one to one conversation. Interviewer was good enough. He ask about me and what i know about their company. What were my objectives and many more.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in NoidaEligibility criteriaAbove 7 CGPAMedTourEasy interview preparation:Topics to prepare for the interview - OOPS, STL, CPP, Socket Programming, Pointers,DBMS, Data Structures and Algorithms, Advanced Java, OOPS concepts, Problem Solving, Aptitude and ReasoningTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Aptitude Questions from IndiaBix
Tip 2 : Continue practice on online coding platforms and do participate in coding challenges. 
Tip 3 : Keep revising your Computer Science fundamentals(OS, DBMS, Software Engineering principles).
Tip 4 : Also brush-up your aptitude skills.

Application resume tips for other job seekers

Tip 1 : Add only what you know properly. don't add extra stuff just to add weight to your resume.
Tip 2 : First page of the resume must in tabular form and it must give complete information about you in very simple manner.
Tip 3 : Use professional Keywords in your resume. 
Tip 4 : Highlight your Skills and Achievements. Put only those skills in which you are good like any question can be asked on any particular skill. Like how you will do this in this.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via campus placement at Indian Institute of Technology (IIT), Roorkee and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Linked List, Stack, BST

Interview Preparation Tips

Interview preparation tips for other job seekers - be ready with ds algo and have some side projects

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

All Basic Questions Related To Dsa

Round 2 - HR 

(2 Questions)

  • Q1. Why You Want to join Cogoport?
  • Q2. How you will see yourself in Next 5 years?
  • Ans. 

    In the next 5 years, I see myself growing into a senior software developer role, leading projects and mentoring junior developers.

    • Continuing to learn new technologies and programming languages to stay current in the industry

    • Taking on more responsibilities in project management and leading development teams

    • Mentoring junior developers and sharing my knowledge and experience with them

    • Working towards becoming a subject mat...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Tell me about yourself

Round 2 - One-on-one 

(1 Question)

  • Q1. What is static method
  • Ans. 

    A static method is a method that belongs to the class itself, rather than to instances of the class.

    • Static methods can be called without creating an instance of the class.

    • They are commonly used for utility functions that do not require access to instance variables.

    • Static methods are declared using the 'static' keyword in the method signature.

    • Example: Math.max() is a static method in the Math class that returns the maxi

  • Answered by AI

I applied via Company Website and was interviewed in Apr 2022. There were 6 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Assignment 

Naaptol

Round 3 - Assignment 

Naaptol

Round 4 - Aptitude Test 

Naaptol

Round 5 - Case Study 

Study ing information

Round 6 - One-on-one 

(5 Questions)

  • Q1. Which place are you studying
  • Q2. Which subject are u interested
  • Q3. Which place are you born
  • Q4. Iam born in chamadala(v),jaladhanki (m)
  • Q5. Are you complete your graduation

Interview Preparation Tips

Interview preparation tips for other job seekers - Naaptol shopping information is very well..

Mystifly Consulting Interview FAQs

How many rounds are there in Mystifly Consulting Senior Software Engineer interview?
Mystifly Consulting interview process usually has 3 rounds. The most common rounds in the Mystifly Consulting interview process are Resume Shortlist, HR and Technical.
How to prepare for Mystifly Consulting Senior Software Engineer 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 Mystifly Consulting. The most common topics and skills that interviewers at Mystifly Consulting expect are Software Engineering.
What are the top questions asked in Mystifly Consulting Senior Software Engineer interview?

Some of the top questions asked at the Mystifly Consulting Senior Software Engineer interview -

  1. how you decide ttl in re...read more
  2. why are looking to swi...read more
  3. ACID properties of relational...read more

Tell us how to improve this page.

Mystifly Consulting Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Mystifly Consulting Senior Software Engineer Salary
based on 9 salaries
₹8.7 L/yr - ₹18.4 L/yr
15% less than the average Senior Software Engineer Salary in India
View more details

Mystifly Consulting Senior Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Travel Consultant
59 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Travel Consultant
24 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Senior Accounts Executive
21 salaries
unlock blur

₹4.2 L/yr - ₹7.1 L/yr

Software Engineer
20 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Product Manager
14 salaries
unlock blur

₹26 L/yr - ₹41 L/yr

Explore more salaries
Compare Mystifly Consulting with

Amadeus

4.0
Compare

Travelport

4.4
Compare

Sabre

4.0
Compare

Cleartrip

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