Premium Employer

i

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

Norwin Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Norwin Technologies Vmware Administrator Interview Questions and Answers

Updated 14 Feb 2024

Norwin Technologies Vmware Administrator Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About Protocols, pools, clones, incidents faced, technologies, usual issues facing in live environment, etc.,

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice interview about the technical questions. I really enjoyed that.

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Question on Storage , VMware Part.
  • Q2. Based on the point mentioned in your Resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was Awesome for the Client Dell EMC, Pune Location.

Vmware Administrator Interview Questions Asked at Other Companies

asked in Rackspace
Q1. What is All path down & permanent device loss? How to trouble ... read more
Q2. What is fsmo role at windows server.what is diff between public p ... read more
asked in Rackspace
Q3. Troubleshoot ESXi in a not responding & disconnected state?
asked in Rackspace
Q4. DRS Affinity/ Anti-affinity rule? Used case of must and should?
asked in Coforge
Q5. What will happen if we add another esxi within a cluster?

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Fsmo roles
  • Q2. Office 365

I applied via LinkedIn and was interviewed before Nov 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 - Aptitude Test 

There are basic aptitude questions for freshers level

Round 3 - Technical 

(2 Questions)

  • Q1. Oops concepts, basics of sql
  • Q2. Basics of programming language

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through basics interview questions for freshers level

I applied via Referral and was interviewed before Aug 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 - Aptitude Test 

General topics like mathe, English, social etc

Interview Preparation Tips

Topics to prepare for IT By Design Software Engineer interview:
  • Python
  • general
Interview preparation tips for other job seekers - It is best choice to our life . If I can join in this company. I can learn more things by gaining work experience.
Round 1 - Group Discussion 

It represents the eligibility of person and thinking process ,view of thoughts

Round 2 - One-on-one 

(1 Question)

  • Q1. We cannot judge people to atonce chance
Round 3 - Coding Test 

Skills ,fast typing , experienced ,new ideas

Round 4 - Technical 

(1 Question)

  • Q1. All the knowledge of technical work and word
Round 5 - Case Study 

Deeply study case and make a point to make attractive

Interview Preparation Tips

Interview preparation tips for other job seekers - Every chance have a successful of key.will appreciate all chance to way of your dreams .move a first steps towards your dreams
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. 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 tips
Round 2 - Coding Test 

Easy level questions on string, linked list and array

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between TCP and UDP
  • Ans. 

    TCP is a connection-oriented protocol while UDP is connectionless.

    • TCP provides reliable, ordered, and error-checked delivery of data while UDP does not guarantee any of these.

    • TCP is slower but more reliable while UDP is faster but less reliable.

    • TCP is used for applications that require high reliability and accuracy such as email, file transfer, and web browsing while UDP is used for applications that require speed and ...

  • Answered by AI
  • Q2. Nibble swap program in C
  • Ans. 

    A nibble swap program in C

    • Nibble swap means swapping the 4-bit halves of a byte

    • Use bitwise operators to perform the swap

    • Example: unsigned char x = 0xAB; x = ((x & 0x0F) << 4) | ((x & 0xF0) >> 4);

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Reverse Linked List in C
  • Ans. 

    Reverse a linked list in C language.

    • Create three pointers: current, previous, and next.

    • Traverse the linked list and change the direction of the pointers.

    • Return the new head of the reversed linked list.

  • Answered by AI
  • Q2. Write an API call in C
  • Ans. 

    API call in C

    • Include the necessary header files

    • Create a URL string with the required parameters

    • Use the curl library to make the API call

    • Handle the response data appropriately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of programming, operating system and networking

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before May 2022. 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 tips
Round 2 - Coding Test 

Programming on basics of C

Round 3 - Coding Test 

Programming on basics of C

Round 4 - HR 

(1 Question)

  • Q1. Salary details and location preference
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Middleware , dependency injection
Round 3 - Technical 

(1 Question)

  • Q1. Subject and subject behaviour
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Duration:30 min
Question from percentage,ratios ,HCF/LCM etc.,
Logical reasoning, English

Round 3 - Coding Test 

(1 Question)

  • Q1. Reverse a string by making groups of given 'm' characters
  • Ans. 

    Reverse a string by grouping 'm' characters together

    • Iterate through the string in groups of 'm' characters

    • Reverse each group of 'm' characters

    • Concatenate the reversed groups to get the final reversed string

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. General HR questions
  • Q2. What is your family background?
  • Q3. Why should we hire you?

Skills evaluated in this interview

Norwin Technologies Interview FAQs

How many rounds are there in Norwin Technologies Vmware Administrator interview?
Norwin Technologies interview process usually has 1 rounds. The most common rounds in the Norwin Technologies interview process are Technical.
What are the top questions asked in Norwin Technologies Vmware Administrator interview?

Some of the top questions asked at the Norwin Technologies Vmware Administrator interview -

  1. About Protocols, pools, clones, incidents faced, technologies, usual issues fac...read more
  2. Question on Storage , VMware Pa...read more

Tell us how to improve this page.

Norwin Technologies Vmware Administrator Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Norwin Technologies Creating #LeadersofTomorrow

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
JMR Infotech Interview Questions
4.3
 • 29 Interviews
Systems Plus Interview Questions
4.3
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
View all
System Engineer
35 salaries
unlock blur

₹6.2 L/yr - ₹16 L/yr

Talent Acquisition Specialist
27 salaries
unlock blur

₹2.3 L/yr - ₹7.2 L/yr

Monitoring Analyst
24 salaries
unlock blur

₹2.3 L/yr - ₹4.2 L/yr

Technical Recruiter
23 salaries
unlock blur

₹3.6 L/yr - ₹6.4 L/yr

Associate Systems Engineer
23 salaries
unlock blur

₹3.5 L/yr - ₹9 L/yr

Explore more salaries
Compare Norwin Technologies with

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

Saama Technologies

3.7
Compare

Systems Plus

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