Upload Button Icon Add office photos
Engaged Employer

i

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

myGate Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

myGate Backend Developer Interview Questions and Answers

Updated 14 Oct 2023

myGate Backend Developer Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Tech Mcq around 20q with each question having time limit
Round 2 - Coding Test 

1 coding ques nearly 90 min time

Round 3 - One-on-one 

(2 Questions)

  • Q1. Two question from arrays with their TC and SC
  • Q2. One LL question with tc and sc
Round 4 - One-on-one 

(1 Question)

  • Q1. Puzzles asked 3 and were of medium difficulty

I applied via Referral and was interviewed in Apr 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 - Coding Test 

HackerEarth question. You need to score 50/100 to qualify for the next round. The question was medium level and the topic was array and strings.

Round 3 - Technical 

(3 Questions)

  • Q1. Question-based on Hashing.
  • Q2. Spiral 2D array Traversal
  • Q3. What is Redis and where it is used?
  • Ans. 

    Redis is an open-source, in-memory data structure store, used as a database, cache, and message broker.

    • Redis is a NoSQL database that stores data in key-value pairs.

    • It is often used as a cache to improve the performance of web applications.

    • Redis can also be used as a message broker for real-time applications.

    • It supports a wide range of data structures, including strings, hashes, lists, sets, and sorted sets.

    • Redis is of...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for myGate Backend Developer interview:
  • DSA
  • Algorithms
Interview preparation tips for other job seekers - DSA is important to crack jobs. So prepare well before applying.

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, yo ... read more
asked in Simpplr
Q2. Array Sum Calculation Calculate the sum of all elements in an arr ... read more
Q3. Given 9 ball all of which weigh the same except for one, what is ... read more
asked in Simpplr
Q4. Remove Duplicates from String Problem Statement You are provided ... read more
asked in BlackNGreen
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

I was interviewed in Dec 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical interview round with questions on DSA, OOPS and Low Level design.

  • Q1. 

    Vertical Order Traversal of a Binary Tree

    Given a binary tree, your task is to return the vertical order traversal of its nodes' values.

    For each node located at a position (X, Y), its left child will be...

  • Ans. 

    Vertical order traversal of a binary tree is required to be implemented for given input format and constraints.

    • Implement a function to perform vertical order traversal of a binary tree

    • Maintain the order of nodes based on their positions (X, Y)

    • Handle cases where two nodes have the same position by considering the left node first

    • Follow the input and output format as specified in the question

  • Answered by AI
  • Q2. Why is Java considered an Object Oriented Programming Language?
  • Ans. 

    Java is considered an Object Oriented Programming Language because it supports the key principles of OOP such as encapsulation, inheritance, and polymorphism.

    • Java allows for the creation of classes and objects, which are the building blocks of OOP.

    • It supports encapsulation by allowing data hiding within classes.

    • Inheritance is supported in Java, allowing classes to inherit attributes and methods from other classes.

    • Polym...

  • Answered by AI
  • Q3. What are indexing and partitioning in DBMS?
  • Ans. 

    Indexing and partitioning are techniques used in DBMS to improve performance by organizing data efficiently.

    • Indexing involves creating an index on a column in a database table to speed up data retrieval. It works like an index in a book, allowing the database to quickly locate the desired data.

    • Partitioning involves dividing a large table into smaller, more manageable parts called partitions. This can improve query perf...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANoBroker interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is OOPs concept. Why is java called an Object Oriented Programming Language. What benefit does java have as an OOP language?
  • Ans. 

    OOPs stands for Object Oriented Programming. Java is called an OOP language because it follows the principles of OOP.

    • OOPs is a programming paradigm that focuses on objects and their interactions.

    • Java supports the four main principles of OOP: encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation allows bundling of data and methods into a single unit, providing data hiding and security.

    • Inheritance enabl...

  • Answered by AI
  • Q2. What is indexing and partioning in dbms?
  • Ans. 

    Indexing and partitioning are techniques used in DBMS to improve performance and manage large amounts of data.

    • Indexing is the process of creating a data structure that allows for faster retrieval of data based on certain columns or fields.

    • Partitioning involves dividing a large table into smaller, more manageable parts called partitions, which can be stored on different disks or servers.

    • Both techniques can improve query...

  • Answered by AI
  • Q3. Print vertical level traversal in a binary tree.
  • Ans. 

    Print the vertical level traversal of a binary tree.

    • Traverse the tree and assign horizontal distance to each node.

    • Store nodes in a map with their horizontal distance as key.

    • Print nodes in each horizontal distance in vertical order.

  • Answered by AI
  • Q4. Design the table diagram and the ways different tables will be linked for a movie booking website like bookmyshow.
  • Ans. 

    Design table diagram and link tables for a movie booking website like bookmyshow.

    • Create tables for movies, theaters, users, bookings, payments, and reviews

    • Link movies and theaters through a many-to-many relationship

    • Link users and bookings through a one-to-many relationship

    • Link bookings and payments through a one-to-one relationship

    • Link movies and reviews through a one-to-many relationship

  • Answered by AI
  • Q5. Low Level Design: Design a movie site booking portal using objects and classes.
  • Ans. 

    Design a movie booking portal using objects and classes.

    • Create a Movie class with attributes like title, genre, duration, etc.

    • Create a Theater class with attributes like name, location, capacity, etc.

    • Create a Show class with attributes like movie, theater, showtime, price, etc.

    • Create a Booking class with attributes like show, seats, user, etc.

    • Implement methods for booking tickets, canceling tickets, etc.

    • Use database to...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the topics that the HR asks you to, at the time of scheduling the interview. In my case sql, oops, data structures and low level design questions related to all these topics were asked.

Skills evaluated in this interview

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Brief about your past experience?
  • Q2. Your previous CTC and expected CTC?
Round 2 - One-on-one 

(3 Questions)

  • Q1. How are you going to grow our business ?
  • Q2. Why should we hire you?
  • Q3. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, don't stumble, speak about your skills and achievements. Read about the industry and it's overall knowledge in detail.

I applied via Walk-in and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is the most important skill to perform sales.?
  • Ans. 

    Effective communication is the most important skill to perform sales.

    • Effective communication helps build rapport with customers and understand their needs.

    • It allows salespeople to articulate the value proposition of their product or service.

    • Active listening and empathy are crucial in sales to address customer concerns.

    • Negotiation and persuasion skills are also essential in closing deals.

    • Examples: A salesperson who can ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Two simple advice which makes you clear the interview........
Your communication level
And your confidence.

I applied via Indeed and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Real estate knowledge
  • Q2. Research on it's side it's help your to get idea about market

Interview Preparation Tips

Interview preparation tips for other job seekers - Visite once on side before going to interview

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It comprised of general aptitude questions and two coding questions. It was an offline test.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not attack each other.

    • Generate and print valid configurations where queens are placed safely.

    • Consider constraints and time limit for efficient solution.

    • Exam...

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Achieve sorting in a single scan over the array without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

After having a technical discussion about my CV. He gave me two questions to code.

  • Q1. 

    Ninja and Substrings Problem Statement

    Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...

  • Ans. 

    Find all unique contiguous substrings of size two from a given string.

    • Iterate through the string and extract substrings of size two

    • Use a set to store unique substrings

    • Return the set as an array of strings

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. 
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Return the valid combinations as an array of strings.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMagicbricks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2021. 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 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to only and only earn money without seeing your personal and professional life this company is best for you. They know how to use the employees.

I applied via Campus Placement and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About my self?
  • Q2. Tell me about your family?

Interview Preparation Tips

Interview preparation tips for other job seekers - There is no rejection phase for interview in this company.
Every one gets selected after interview.

myGate Interview FAQs

How many rounds are there in myGate Backend Developer interview?
myGate interview process usually has 4 rounds. The most common rounds in the myGate interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in myGate Backend Developer interview?

Some of the top questions asked at the myGate Backend Developer interview -

  1. What is Redis and where it is us...read more
  2. Tech Mcq around 20q with each question having time li...read more
  3. Two question from arrays with their TC and...read more

Tell us how to improve this page.

myGate Backend Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

NoBroker Interview Questions
3.2
 • 234 Interviews
Square Yards Interview Questions
4.0
 • 198 Interviews
G4S Interview Questions
4.0
 • 95 Interviews
MagicBricks Interview Questions
3.4
 • 57 Interviews
Securitas Interview Questions
3.8
 • 30 Interviews
99acres Interview Questions
3.8
 • 28 Interviews
Helloverify Interview Questions
3.2
 • 27 Interviews
PropTiger.com Interview Questions
4.0
 • 23 Interviews
Allegion Interview Questions
4.2
 • 23 Interviews
View all

myGate Backend Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

1.0

Salary

1.0

Job security

3.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Business Development Manager
424 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Client Account Manager
197 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Brand Manager
90 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Development Manager
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare myGate with

ApnaComplex

2.5
Compare

NoBroker

3.2
Compare

CommonFloor

3.7
Compare

Nestaway

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