Upload Button Icon Add office photos

Murugappa Group

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Murugappa Group Cloud Engineer Interview Questions and Answers

Updated 17 Sep 2021

Murugappa Group Cloud Engineer Interview Experiences

1 interview found

Interview Questionnaire 

4 Questions

  • Q1. What is cloud computing
  • Ans. 

    Cloud computing is the delivery of computing services over the internet.

    • Cloud computing allows users to access and use computing resources on-demand, such as storage, processing power, and software applications.

    • It eliminates the need for physical infrastructure and provides scalability, flexibility, and cost-effectiveness.

    • Examples include cloud storage services like Dropbox, cloud-based productivity tools like Google D...

  • Answered by AI
  • Q2. Who are the big cloud providers
  • Ans. 

    The big cloud providers are Amazon Web Services (AWS), Microsoft Azure, Google Cloud Platform (GCP), and IBM Cloud.

    • Amazon Web Services (AWS) - the most popular cloud provider with a wide range of services

    • Microsoft Azure - offers a hybrid cloud solution and integrates well with Microsoft products

    • Google Cloud Platform (GCP) - known for its machine learning and data analytics capabilities

    • IBM Cloud - offers a variety of cl...

  • Answered by AI
  • Q3. About OSI model
  • Q4. What is Iaas,Saas,Paas ?
  • Ans. 

    IaaS, SaaS, and PaaS are cloud computing models that provide different levels of infrastructure, platform, and software services.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as servers, storage, and networking.

    • PaaS (Platform as a Service) provides a platform for developing, testing, and deploying applications without the need for infrastructure management.

    • SaaS (Sof...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be aware of the basic concepts of cloud

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Related to sales automation.
  • Q2. What is SFA?
  • Ans. 

    SFA stands for Sales Force Automation.

    • SFA is a software system that automates sales processes.

    • It helps sales teams manage customer interactions, track leads, and close deals.

    • SFA can also provide analytics and reporting on sales performance.

    • Examples of SFA software include Salesforce, HubSpot, and Zoho CRM.

  • Answered by AI
  • Q3. What is DMS?
  • Ans. 

    DMS stands for Document Management System.

    • DMS is a software system used to manage, store, and track electronic documents and images.

    • It allows for easy retrieval and sharing of documents within an organization.

    • DMS can also provide version control and security features to ensure document integrity.

    • Examples of DMS include Microsoft SharePoint, Google Drive, and Dropbox Business.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a long session and was an interesting one.

Interview Questionnaire 

1 Question

  • Q1. Oop concepts

I applied via Referral and was interviewed before Mar 2021. There were 4 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 Resume tips
Round 2 - Coding Test 

NA

Round 3 - Group Discussion 

NA

Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, be positive, good with knowledge of your project

Interview Questionnaire 

2 Questions

  • Q1. Jk
  • Q2. C language
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jan 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Related work experience Electrical based questions like... 1.transformer & it's losses. 2. PLC 3. Tripping devices 4.resistance value (GR &IR for earth pit, Grounding & earthing,motor & transformer windin...
Round 3 - HR 

(1 Question)

  • Q1. General questions related to study and faimly.

Interview Preparation Tips

Interview preparation tips for other job seekers - If your dream company need to require others skills which is not mentioned in your CV, 1st add it and select for interview call. Then prepare it for your self.
All the best

I was interviewed in May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Check Word Presence in String

    Given a string S and a list wordList containing N distinct words, determine if each word in wordList is present in S. Return a boolean array where the value at index 'i' indi...

  • Ans. 

    Given a string and a list of words, determine if each word in the list is present in the string and return a boolean array indicating their presence.

    • Iterate through each word in the word list and check if it is present in the string.

    • Use a boolean array to store the presence of each word in the string.

    • Consider case sensitivity when checking for word presence.

    • Do not use built-in string-matching methods.

    • Return the boolean

  • Answered by AI
Round 2 - Video Call 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria6.75+ CGPATata interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, GreedyTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions
Tip 2 : Have a good resume
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects listed

Final outcome of the interviewSelected

I applied via Campus Placement and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Ninja Coding Round Basic Coding questions available on youtube or sources online

Round 2 - Technical 

(1 Question)

  • Q1. Panel of 2 people will ask basic technical questions and it depends on what you have mentioned in your resume
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions about relocation etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise basic coding and math aptitude questions. To crack TCS
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is array?? Detail in programming
  • Ans. 

    An array is a collection of similar data types stored in contiguous memory locations.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using their index

    • Arrays can be initialized during declaration or later in the code

    • Arrays can be passed as arguments to functions

    • Example: int arr[5] = {1, 2, 3, 4, 5};

    • Example: char str[10] = "Hello";

  • Answered by AI
  • Q2. About programming and Java script

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare for interview and need you have to know about jd

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Aptitude Test 

It was good as well as challenging

Round 3 - Technical 

(1 Question)

  • Q1. 1- cement testing 2- communication level 3- situation based question 4- awareness and confidence test 5- Techncial based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive and enhance your knowledge!!
Contribute & help others!
anonymous
You can choose to be anonymous

Murugappa Group Interview FAQs

How to prepare for Murugappa Group Cloud 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 Murugappa Group. The most common topics and skills that interviewers at Murugappa Group expect are AWS, Azure DevOps, Cloud Computing, Disaster Recovery and GCP.
What are the top questions asked in Murugappa Group Cloud Engineer interview?

Some of the top questions asked at the Murugappa Group Cloud Engineer interview -

  1. What is cloud computi...read more
  2. Who are the big cloud provide...read more
  3. What is Iaas,Saas,Paa...read more

Recently Viewed

PHOTOS

Medanta the Medicity

4 office photos

LIST OF COMPANIES

Muthoot Microfin

Locations

LIST OF COMPANIES

Murugappa Group

Locations

INTERVIEWS

Muthoot Microfin

No Interviews

INTERVIEWS

Muthoot Microfin

No Interviews

INTERVIEWS

Murugappa Group

5.6k top interview questions

JOBS

Murugappa Group

No Jobs

JOBS

Muthoot Microfin

No Jobs

REVIEWS

Muthoot Microfin

No Reviews

JOBS

Murugappa Group

No Jobs

Tell us how to improve this page.

Interview Questions from Similar Companies

ITC Interview Questions
3.9
 • 545 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Aarti Industries Interview Questions
4.1
 • 282 Interviews
Adani Group Interview Questions
3.9
 • 187 Interviews
UPL Interview Questions
4.1
 • 174 Interviews
View all
Assistant Manager
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Murugappa Group with

Tata Group

4.2
Compare

Aditya Birla Group

4.1
Compare

Reliance Industries

4.0
Compare

Mahindra & Mahindra

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