Upload Button Icon Add office photos
Engaged Employer

i

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

MGS Technology Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MGS Technology Private Limited Interview Questions and Answers

Updated 12 Sep 2024

MGS Technology Private Limited Interview Experiences

Popular Designations

4 interviews found

Data Science Trainee Interview Questions & Answers

user image Shubham Zunjar Bhange

posted on 12 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Technical 

(3 Questions)

  • Q1. What is python array?
  • Ans. 

    Python array is a data structure that stores a collection of elements of the same data type.

    • Python array is a mutable sequence type that can store elements of the same data type.

    • Arrays in Python are created using the 'array' module.

    • Example: arr = array('i', [1, 2, 3, 4, 5])

  • Answered by AI
  • Q2. Tell me four SQL Joins?
  • Ans. 

    SQL Joins are used to combine rows from two or more tables based on a related column between them.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q3. Describe Supervised and unsupervised ML
  • Ans. 

    Supervised ML uses labeled data to train the model, while unsupervised ML finds patterns in unlabeled data.

    • Supervised ML requires labeled data for training and testing

    • Examples of supervised ML include classification and regression algorithms

    • Unsupervised ML finds patterns and relationships in unlabeled data

    • Examples of unsupervised ML include clustering and dimensionality reduction algorithms

  • Answered by AI

Skills evaluated in this interview

Data Science Trainee Interview Questions asked at other Companies

Q1. Tell me four SQL Joins?
View answer (1)

Content Writer Interview Questions & Answers

user image Gargee Dasgupta

posted on 15 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. What are your skills?

Content Writer Interview Questions asked at other Companies

Q1. What are the steps to follow to write good content?
View answer (5)

fresher Interview Questions & Answers

user image Anonymous

posted on 3 Nov 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Normal Aptitude test to check your abilities of calculation and logic.

Round 2 - Group Discussion 

Purpose is to check the persons knowledge not the communication.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview based on Resume

fresher Interview Questions asked at other Companies

Q1. What is the unit of electric current
View answer (127)

I applied via Approached by Company and was interviewed before Mar 2021. 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 - Technical 

(1 Question)

  • Q1. Questions on UxUi design. Interviewer was from Mannai, Qatar.
Round 3 - HR 

(3 Questions)

  • Q1. Why are you looking for a change?
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic and innovative environment.

    • Looking to expand my skill set and knowledge base

    • Desire to work with a diverse range of clients and industries

    • Seeking a more collaborative and team-oriented work culture

    • Wanting to contribute to the success of a growing company

    • Seeking better work-life balance and personal development opportunities

  • Answered by AI
  • Q2. What are your salary expectations?
  • Q3. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview process, chance to get on-site opportunity in Qatar.

Associate Managing Consultant Interview Questions asked at other Companies

Q1. Guesstimate: calculate number of delivery vans required by grocery company
View answer (1)

MGS Technology Private Limited interview questions for popular designations

 fresher

 (1)

 Content Writer

 (1)

 Data Science Trainee

 (1)

 Associate Managing Consultant

 (1)

Jobs at MGS Technology Private Limited

View all

Interview questions from similar companies

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

I applied via Company Website and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Create specific components
  • Ans. 

    Creating specific components for software development

    • Identify the requirements for the component

    • Design the component architecture

    • Implement the component using appropriate programming languages and tools

    • Test the component for functionality and performance

    • Integrate the component into the larger software system

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Hard

This round was very difficult. I never do these much difficulty level of coding questions. But i give my best, and just do every questions by using step by step process.

  • Q1. 

    Hourglass Pattern Problem Statement

    Given an integer 'N', print an hourglass pattern based on the value of 'N'.

    Input:

    The first and only line of input contains an integer, denoting the value of N.

    Out...

  • Ans. 

    Print an hourglass pattern based on the given integer 'N'.

    • Read the integer 'N' as input

    • Print the top half of the hourglass pattern with decreasing numbers

    • Print the bottom half of the hourglass pattern with increasing numbers

    • Handle the constraints for 'N' values between 1 and 50

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Use BFS algorithm to traverse the graph starting from vertex 0.

    • Explore neighbor nodes first before moving to the next level neighbors.

    • Consider bidirectional edges in an undirected graph.

    • Output the BFS traversal sequence for each test case in a separate line.

    • Ensure the BFS path starts from vertex 0 and print connected nodes in numerical sort order.

  • Answered by AI
  • Q3. 

    Sort a Stack Problem Statement

    You are given a stack. Your task is to sort the elements within the stack in ascending order using only push and pop operations. You are allowed to use one additional stack ...

  • Ans. 

    Sort a given stack in ascending order using only push and pop operations with the help of an additional stack.

    • Use one additional stack to assist in sorting the elements.

    • Pop elements from the input stack and push them onto the auxiliary stack in sorted order.

    • Keep track of the current minimum element to maintain ascending order.

    • Pop elements from the auxiliary stack back to the input stack to get the sorted order.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round is also coding round in this round we have a small video call interaction too, in which hr ask few questions to only those whose coding question is correct.

  • Q1. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Find the largest palindrome number strictly less than a given palindrome number.

    • Iterate from the middle towards the start of the number and decrement the digits to create the largest palindrome less than the given number.

    • Handle cases where the number is all '9's by changing the middle digit to '9' and decrementing the rest of the digits.

    • If the number has an odd length, simply mirror the first half to create the largest

  • Answered by AI
  • Q2. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find minimum time to rot all fresh oranges adjacent to rotten oranges in a grid.

    • Use Breadth First Search (BFS) to simulate the rotting process.

    • Track the time taken to rot all fresh oranges.

    • Return -1 if all fresh oranges cannot be rotten.

    • Handle edge cases like empty grid or no fresh oranges.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 cgpaZIGRAM interview preparation:Topics to prepare for the interview - OOPS , Data Structures, Dynamic Programming, Algorithms from variuos coding platforms , Database Management System, Operating System, Web developmentTime required to prepare for the interview - 2 monthInterview preparation tips for other job seekers

Tip 1 : Relax and don't stress. Practice
Tip 2 : Build Resume according to Job Description , but don't lie.
Tip 3 : Have good projects and knowledge regarding important subjects related to interviews

Application resume tips for other job seekers

Tip 1 : Include only genuine information, never lie in resume , it will impact to bad impression. 
Tip 2 : Skills relevant to Job Description
Tip 3 : Resume should not be more than 2 pages 
Tip 4 : Have some projects and internship on your resume because it will give good impression

Final outcome of the interviewSelected

Skills evaluated in this interview

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 - Technical 

(1 Question)

  • Q1. Everything in your resume.
Round 3 - HR 

(2 Questions)

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

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. They mostly check your english fluency.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is secondary research
  • Ans. 

    Secondary research involves gathering information from existing sources such as books, articles, and reports.

    • Secondary research is the process of collecting and analyzing data that has already been published or gathered by others.

    • It is used to gain a better understanding of a topic, validate primary research findings, or gather historical data.

    • Examples of secondary research sources include academic journals, government

  • Answered by AI
  • Q2. What have u done in your internship
  • Ans. 

    I worked on data analysis projects, conducted market research, and created reports for senior management.

    • Conducted data analysis on customer feedback surveys

    • Assisted in creating financial models to analyze company performance

    • Researched market trends and competitor analysis

    • Prepared presentations and reports for senior management meetings

  • Answered by AI
  • Q3. PEP relevant questions
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Share your past work experience.
Round 2 - Technical 

(1 Question)

  • Q1. What is research?
  • Ans. 

    Research is the systematic investigation of a subject to discover new knowledge or validate existing theories.

    • Research involves a systematic and organized approach to gather information and analyze data.

    • It aims to answer specific questions or solve problems by using various methods and techniques.

    • Research can be conducted in various fields such as science, social sciences, business, and technology.

    • Examples of research ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company, dont go there.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox

Round 1 - Coding Test 

Java, spring,springboot

MGS Technology Private Limited Interview FAQs

How many rounds are there in MGS Technology Private Limited interview?
MGS Technology Private Limited interview process usually has 2-3 rounds. The most common rounds in the MGS Technology Private Limited interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for MGS Technology Private Limited 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 MGS Technology Private Limited. The most common topics and skills that interviewers at MGS Technology Private Limited expect are Javascript, Payroll, Oracle E - business Suite, Core HR and Java.
What are the top questions asked in MGS Technology Private Limited interview?

Some of the top questions asked at the MGS Technology Private Limited interview -

  1. What is python arr...read more
  2. Tell me four SQL Joi...read more
  3. Describe Supervised and unsupervised...read more

Tell us how to improve this page.

MGS Technology Private Limited Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
ZIGRAM Interview Questions
3.2
 • 26 Interviews
RGBSI Interview Questions
3.5
 • 24 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
View all

MGS Technology Private Limited Reviews and Ratings

based on 39 reviews

4.1/5

Rating in categories

4.4

Skill development

4.0

Work-life balance

3.4

Salary

3.9

Job security

3.9

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 39 Reviews and Ratings
Oracle Ebs Technical Consultant

Pune

5-10 Yrs

Not Disclosed

Oracle Apex Developer

Pune

5-10 Yrs

Not Disclosed

Mendix Developer

Pune,

Qatar

4-9 Yrs

₹ 8-18 LPA

Explore more jobs
Senior Analyst
21 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Senior Associate
16 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Oracle Application Technical Consultant
15 salaries
unlock blur

₹4.7 L/yr - ₹13.6 L/yr

Associate Consultant
15 salaries
unlock blur

₹4.8 L/yr - ₹8 L/yr

Senior Consultant
15 salaries
unlock blur

₹8.4 L/yr - ₹18 L/yr

Explore more salaries
Compare MGS Technology Private Limited with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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