Upload Button Icon Add office photos
Engaged Employer

i

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

SMS Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SMS Group Microsoft Azure Administrator Interview Questions and Answers

Updated 11 Jul 2024

SMS Group Microsoft Azure Administrator Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Whats your day to day responsibilities?
  • Ans. 

    As an Azure Administrator, I manage cloud resources, ensure security, and optimize performance daily.

    • Monitor and manage Azure resources, ensuring optimal performance and availability.

    • Implement and manage Azure Active Directory for user access and identity management.

    • Configure and maintain virtual networks, ensuring secure connectivity between resources.

    • Automate repetitive tasks using Azure PowerShell or Azure CLI for e...

  • Answered by AI
  • Q2. Have you worked on SSO, conditional policies and MFA?
  • Ans. 

    Yes, I have experience with SSO, conditional policies, and MFA.

    • Implemented Single Sign-On (SSO) for seamless user authentication across multiple applications

    • Configured conditional access policies to control access based on specific conditions like location or device

    • Enabled Multi-Factor Authentication (MFA) to add an extra layer of security for user logins

  • Answered by AI
  • Q3. How can we integrate SAMl or different kind of applications in azure ad?
  • Ans. 

    You can integrate SAML or different kinds of applications in Azure AD by configuring SAML-based single sign-on (SSO) settings.

    • Configure SAML-based SSO settings in Azure AD.

    • Add the application to Azure AD and configure the necessary settings.

    • Map the attributes between Azure AD and the application for user authentication.

    • Test the SAML integration to ensure it is working correctly.

  • Answered by AI
  • Q4. What is AAD Connect?
  • Ans. 

    AAD Connect is a tool used to synchronize on-premises Active Directory with Azure Active Directory.

    • AAD Connect helps in syncing user accounts, groups, and attributes between on-premises AD and Azure AD.

    • It allows for single sign-on capabilities and enables hybrid identity management.

    • AAD Connect is essential for integrating on-premises directories with Azure services like Office 365.

    • It ensures that user identities are co...

  • Answered by AI
  • Q5. Have you worked on microsoft identity manager?
  • Ans. 

    Yes, I have worked on Microsoft Identity Manager.

    • Implemented and managed user identities using Microsoft Identity Manager

    • Configured synchronization rules for user provisioning and deprovisioning

    • Troubleshooted issues related to identity management

    • Integrated Microsoft Identity Manager with other systems for seamless user access

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Do you have any scripting experience?
  • Ans. 

    Yes, I have experience with scripting languages such as PowerShell and Bash.

    • I have experience writing scripts in PowerShell for automating tasks on Windows systems.

    • I am familiar with Bash scripting for managing Linux environments.

    • I have used scripting languages to automate routine tasks and streamline processes.

  • Answered by AI
  • Q2. How do you see AI?
  • Ans. 

    AI is a powerful technology that enables machines to learn from data, adapt to new inputs, and perform tasks that typically require human intelligence.

    • AI is a branch of computer science that aims to create intelligent machines capable of simulating human intelligence.

    • It involves the development of algorithms that can analyze data, learn from it, and make decisions or predictions based on that data.

    • AI can be used in var...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you are looking for a change?
  • Q2. How you yourself after 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your skills and area.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about SMS Group?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Mar 2023. 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. HR reached out to me through naukri. Based on my tech stack i matched the requirements. On the first call HR asked me a lot of the questions on why i was looking out for a change, what kind of work have i ...
Round 3 - Technical 

(5 Questions)

  • Q1. Write a program to find last non repeating character in a given string using Java 8 functions only like Streams and Lambda's.
  • Ans. 

    Program to find last non-repeating character in a given string using Java 8 functions only.

    • Use Java 8 Streams and Lambda's to filter the string and find the last non-repeating character.

    • Create a Map to store the frequency of each character in the string.

    • Use the filter() method to get the non-repeating characters and find the last one using reduce().

  • Answered by AI
  • Q2. Given two interface, Interface A and Interface B both having the same functions in them let's say apply(). If a class implements both of these interface then which function will get implemented?
  • Ans. 

    When a class implements multiple interfaces with the same method, it must provide a single implementation for that method.

    • If both interfaces have the same method signature, the implementing class must define that method only once.

    • Example: If Interface A and Interface B both have 'void apply()', the class must implement 'void apply()' once.

    • The implementation can be used interchangeably for both interfaces.

    • If needed, the...

  • Answered by AI
  • Q3. Given a employee table with name, ID, age, salary and ratings column. Find the top 3 employee based on the ratings.
  • Ans. 

    Find the top 3 employees based on ratings in an employee table.

    • Sort the employee table based on ratings in descending order.

    • Select the top 3 employees from the sorted table.

    • Return the selected employees as the result.

  • Answered by AI
  • Q4. Group anagram coding question.
  • Ans. 

    Group anagrams from a list of strings by sorting characters in each string.

    • Use a hash map to group words by their sorted character tuple.

    • Example: Input: ['eat', 'tea', 'tan', 'ate', 'nat', 'bat']

    • Output: [['eat', 'tea', 'ate'], ['tan', 'nat'], ['bat']]

    • Iterate through each word, sort it, and use it as a key in the hash map.

  • Answered by AI
  • Q5. Given an Employee class with 3 fields name, age and salary. Make changes in the class so that any two employee objects having same names are considered duplicates.
  • Ans. 

    Modify Employee class to consider objects with same names as duplicates.

    • Add a static HashSet<String> to keep track of unique names.

    • Override equals() and hashCode() methods to compare names.

    • In the constructor, check if the name already exists in the HashSet and mark it as duplicate if true.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hilti Senior Software Engineer interview:
  • Java 8
  • OOPS
  • SQL Queries
  • Coding
  • DSA
  • Algorithms
Interview preparation tips for other job seekers - Technical and coding in depth Knowledge required. Un
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of OOP and JavaScript related

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Reasoning , English

Round 2 - Technical 

(1 Question)

  • Q1. Basics of c and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Make ourself respect and proud

I applied via Company Website and was interviewed in Apr 2022. 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 - Aptitude Test 

Multiple choice questions

Interview Preparation Tips

Topics to prepare for Wipro Infrastructure Engineering Software Engineer interview:
  • Phython
  • About python
  • Importace of python
  • White Box Testing
  • Project Management
  • Catagies of python
  • Features of python
  • Overview of python
Interview preparation tips for other job seekers - Project , presentations ,demos,speeches, software and hardware skills.

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Coding Test 

It was basic code syntax check test.

Round 2 - One-on-one 

(1 Question)

  • Q1. All regular technical questions about your skillset which is matching their requirement. This was with a Tech Lead (>13 years experienced)
Round 3 - One-on-one 

(1 Question)

  • Q1. These were all heavy technical questions regarding the required skillset and your own skillset. It was conducted by 2 SSDs (Both >10 year exp.)
Round 4 - One-on-one 

(1 Question)

  • Q1. This was a Manager+HR round. The Manager asked questions regarding way of working (Agile, Scrum, Safe, etc.) and questions around that. The Manager then dropped off and the HR asked questions generic quest...

Interview Preparation Tips

Topics to prepare for Hilti Senior Software Engineer interview:
  • Don't waste your time on this company
Interview preparation tips for other job seekers - Please avoid giving interviews for this company. Highly unethical behaviour on their part. Explanation below.

Despite giving so many rounds of interview (on multiple days), there was no offer given.
After asking the external HR again (after a month) about why there was nothing yet, I was told that the position no longer exists.
This speaks volumes about the company's ethics.
My advice: Avoid wasting your time with this company. They don't have the basic courtesy to even let a candidate know why there's no progress on his/her profile. You are better off going after companies which actually give offer letters soon.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It was an algorithm question which I had to code in 30 minutes
  • Q2. Java/Spring related questions were asked
Round 2 - Case Study 

They asked me about my current project and asked me to design a system similar to that

I applied via Walk-in and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction? Least count of instruments? Previous experience based questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear all the basic concepts mostly concentrate on units, least count, definition, basic concepts of industry like TPM, 5s, jh pillar etc

I appeared for an interview in Oct 2016.

Interview Preparation Tips

College Name: NIT Kurukshetra

I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. They asked me lot of technical questions on java technology and sql
  • Q2. What is oops concepts of java and its type
  • Q3. What is sql aggregation function
  • Ans. 

    SQL aggregation functions perform calculations on multiple rows of a single column of a table.

    • Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.

    • They are used with the SELECT statement to retrieve data from a table.

    • Examples: SELECT COUNT(*) FROM customers; SELECT AVG(price) FROM products;

    • Aggregate functions can also be used with the GROUP BY clause to group data by one or more columns.

  • Answered by AI
  • Q4. What is join and it's types
  • Q5. How to write join queries
  • Ans. 

    Join queries are used to combine data from two or more tables based on a related column.

    • Use the JOIN keyword followed by the name of the table you want to join.

    • Specify the columns you want to select from each table.

    • Use the ON keyword to specify the column(s) that the tables should be joined on.

    • There are different types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.

    • Example: SELECT customers.name, orde...

  • Answered by AI
  • Q6. What is sql and how to use
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language

    • It is used to create, modify, and query databases

    • Common commands include SELECT, INSERT, UPDATE, and DELETE

    • Example: SELECT * FROM customers WHERE age > 18;

  • Answered by AI
  • Q7. What is constructor and how to use and explain it
  • Ans. 

    A constructor is a special method used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can take parameters to set initial values.

    • They can be overloaded to provide multiple ways of initializing objects.

  • Answered by AI
  • Q8. What is class and object and different between method overriding and method overloading
  • Ans. 

    Class and object are fundamental concepts in object-oriented programming. Method overloading and method overriding are two ways to achieve polymorphism.

    • A class is a blueprint or template for creating objects that encapsulate data and behavior.

    • An object is an instance of a class that has its own state and behavior.

    • Method overloading is when multiple methods in a class have the same name but different parameters.

    • Method o...

  • Answered by AI
  • Q9. What is exception handling and how to use
  • Q10. What is multithreading and its method like wait method
  • Q11. What is JSP and servlet and explain it
  • Q12. What is sql sub query and explain it
  • Ans. 

    SQL subquery is a query within another query used to retrieve data from one or more tables.

    • Subqueries are enclosed in parentheses and placed within the WHERE or HAVING clause of the outer query.

    • They can be used to filter, sort, or aggregate data based on the results of the subquery.

    • Subqueries can also be used in the SELECT statement to retrieve a single value or set of values.

    • Example: SELECT * FROM employees WHERE depa...

  • Answered by AI
  • Q13. What is complex query and how to write
  • Ans. 

    A complex query is a query that involves multiple tables, conditions, and/or functions.

    • Start by identifying the tables involved in the query

    • Determine the conditions that need to be met using WHERE clause

    • Use JOIN to combine tables if necessary

    • Use aggregate functions like COUNT, SUM, AVG, etc. to perform calculations

    • Use subqueries to break down complex queries into smaller parts

    • Test the query and refine as necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please you should learn first after that you should give interviews

Skills evaluated in this interview

SMS Group Interview FAQs

How many rounds are there in SMS Group Microsoft Azure Administrator interview?
SMS Group interview process usually has 3 rounds. The most common rounds in the SMS Group interview process are Technical and HR.
What are the top questions asked in SMS Group Microsoft Azure Administrator interview?

Some of the top questions asked at the SMS Group Microsoft Azure Administrator interview -

  1. How can we integrate SAMl or different kind of applications in azure ...read more
  2. Have you worked on SSO, conditional policies and M...read more
  3. Have you worked on microsoft identity manag...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TechnipFMC Interview Questions
4.0
 • 76 Interviews
TÜV SÜD Interview Questions
3.9
 • 76 Interviews
TKIL Interview Questions
4.2
 • 63 Interviews
Hilti Interview Questions
3.4
 • 61 Interviews
Gmmco Interview Questions
4.0
 • 46 Interviews
View all
Senior Manager
69 salaries
unlock blur

₹15 L/yr - ₹24 L/yr

Assistant Manager
68 salaries
unlock blur

₹8.9 L/yr - ₹14.6 L/yr

Deputy Manager
66 salaries
unlock blur

₹10 L/yr - ₹18 L/yr

Manager
51 salaries
unlock blur

₹12.6 L/yr - ₹19.8 L/yr

Senior Engineer
44 salaries
unlock blur

₹6.8 L/yr - ₹12 L/yr

Explore more salaries
Compare SMS Group with

Sigma Electric Manufacturing Corporation

4.0
Compare

TÜV SÜD

3.9
Compare

TKIL

4.2
Compare

Ceasefire Industries

3.3
Compare
write
Share an Interview