Upload Button Icon Add office photos

Orange Business

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Orange Business Engineer Server Management Interview Questions and Answers

Updated 10 Jul 2024

Orange Business Engineer Server Management Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to upgrade the vcenter server?
  • Ans. 

    To upgrade the vCenter server, you can use the vSphere Update Manager or the vCenter Server Appliance Management Interface.

    • Use vSphere Update Manager to upgrade the vCenter server

    • Download the latest version of vCenter server from VMware website

    • Follow the upgrade wizard in vSphere Update Manager to complete the upgrade process

    • Alternatively, use the vCenter Server Appliance Management Interface for upgrading the vCenter

  • Answered by AI
  • Q2. How many types of baseline in VMware?
  • Ans. 

    There are two types of baselines in VMware: Host Baseline and VM Baseline.

    • Host Baseline: Used to compare the current version of ESXi hosts with a desired version.

    • VM Baseline: Used to compare the current version of virtual machines with a desired version.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. They asked lot of technical questions during my technical round. Overall performance was good, so I cleared with hopes of learning with project work. However, they didn't gave me technical work ever till 4...
  • Q2. How can we get the number of active users with E3 license using script.
  • Ans. 

    To get the number of active users with E3 license, you can use PowerShell script.

    • Use the Get-MsolUser cmdlet to retrieve all users with E3 license

    • Filter the results to get only the active users

    • Count the number of users in the filtered results

  • Answered by AI
  • Q3. HR round was good.
  • Q4. It asked about past experience.

Interview Preparation Tips

General Tips: They asked lot of technical questions during my technical round. Overall performance was good, so I cleared with lot of expectations to learn with project work. They asked most of the people to minitor queues and assign ticket. Normally, level 1 is fresher in every other company. Here, in Orange, they need 3-4 years of experience at level 1 which is level 2 in other companies.
However, they didn't gave me technical work ever till 4 months of employment. The work is very slow at any path in Orange. Hence, I resigned and switch to better IT MNC. They gave false commitment like providing exposure to various cloud technologies. Still it depends on your project.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Time Management
Duration: 1-3 Months

Skills evaluated in this interview

Engineer Server Management Interview Questions Asked at Other Companies

Q1. How can we get the number of active users with E3 license using s ... read more
Q2. How many types of baseline in VMware?
Q3. How to upgrade the vcenter server?

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

This was an online coding round where we had 2 questions to solve under 75 minutes. I found both the questions to be of Easy to Medium level of difficulty.

  • Q1. 

    Line Reflection Problem Statement

    You are given several sets of points on a 2D plane, each set represented as a list of coordinates. Your task is to determine if there exists a line parallel to the Y-axis...

  • Ans. 

    The task is to determine if there exists a line parallel to the Y-axis that reflects given points symmetrically.

    • Iterate through each test case and check if a vertical reflection line exists for the given points

    • Calculate the midpoint of the x-coordinates and check if it reflects the points symmetrically

    • Consider edge cases where points are on the reflection line or have the same x-coordinate

  • Answered by AI
  • Q2. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Iterate through the matrix and perform depth-first search (DFS) to find connected 1s.

    • Mark visited cells to avoid redundant traversal.

    • Increment island count whenever a new island is encountered.

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 coding questions followed by some questions from DBMS.

  • Q1. 

    Largest Rectangle in Histogram Problem Statement

    You are given an array/list HEIGHTS of length N, where each element represents the height of a histogram bar. The width of each bar is considered to be 1.

    ...
  • Ans. 

    Find the area of the largest rectangle that can be formed within the bounds of a given histogram.

    • Iterate through the histogram bars and calculate the area of the largest rectangle that can be formed using each bar as the height.

    • Use a stack to keep track of the indices of the bars in non-decreasing order of height.

    • Pop elements from the stack and calculate the area until a smaller height bar is encountered.

    • Update the max...

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • If an opening parenthesis is encountered, push it onto the stack.

    • If a closing parenthesis is encountered, check if it matches the top of the stack. If it does, pop the stack, else the string is not balanced.

    • At the end, if the stack is e...

  • Answered by AI
  • Q3. Can you explain the concept of ACID properties in DBMS?
  • Ans. 

    ACID properties in DBMS ensure data integrity and consistency in transactions.

    • Atomicity: All operations in a transaction are completed successfully or none at all.

    • Consistency: Data is always in a valid state before and after a transaction.

    • Isolation: Transactions are isolated from each other to prevent interference.

    • Durability: Once a transaction is committed, changes are permanent and survive system failures.

    • Example: If...

  • Answered by AI
  • Q4. Can you explain the different levels of data abstraction in a DBMS?
  • Ans. 

    Levels of data abstraction in a DBMS refer to the different views of data provided to users and applications.

    • Physical level: Deals with how data is stored on the storage media. Example: data blocks, pages, indexes.

    • Logical level: Focuses on how data is represented to users. Example: tables, views, constraints.

    • View level: Provides a customized view of the database for specific users or applications. Example: queries, rep

  • Answered by AI
Round 3 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Standard DS/Algo round with 2 coding questions followed by 2 interesting puzzles.

  • Q1. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle by exploring all possible paths.

    • Use Depth First Search (DFS) algorithm to traverse the graph and detect cycles.

    • Maintain a visited set to keep track of visited vertices and a parent pointer to avoid visiting the same vertex twice.

    • If a visited vertex is encountered that is not the parent of the current vertex, a cycle is present.

    • Consider edge cases like disconnected graphs a

  • Answered by AI
  • Q2. 

    Maximum 1s in a Row Problem

    Given a matrix ARR with dimensions N * M, consisting only of 0s and 1s where each row is sorted, determine the index of the row that contains the highest number of 1s. If multi...

  • Ans. 

    Find the row with the maximum number of 1s in a sorted matrix.

    • Iterate through each row of the matrix and count the number of 1s in each row

    • Keep track of the row index with the maximum number of 1s

    • Return the index of the row with the highest count of 1s

  • Answered by AI
  • Q3. You have two wires of different lengths, each taking different amounts of time to burn completely. How can you use these wires to measure a specific duration of time?
  • Ans. 

    By lighting both wires at the same time, the shorter wire will burn out first, allowing you to measure a specific duration of time.

    • Light both wires at the same time

    • Measure the time it takes for the shorter wire to burn out completely

    • The remaining length of the longer wire will indicate the specific duration of time

  • Answered by AI
  • Q4. You have 3 ants located at the corners of a triangle. The challenge is to determine the movement pattern of the ants if they all start moving towards each other. What will be the outcome?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASapient Corporation interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, OS, Aptitude, OOPSTime required to prepare for the interview - 4 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 AmbitionBox and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Generally the aptitude maintain quick calculations and time reduce.

Round 2 - Coding Test 

Coding built over technical skills

Round 3 - HR 

(1 Question)

  • Q1. General knowledge and some technical questions been asked

Interview Preparation Tips

Topics to prepare for DXC Technology Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - Create an position which you want to reach and move towards an other opportunity will be waiting for our future.

Interview Preparation Tips

Round: Resume Shortlist
Experience: 4 years og experience

Interview Preparation Tips

Round: Resume Shortlist
Experience: This round they want to know about why do you want to leave your job?
current ctc
expected ctc
how many experience do you have on particular technology?
Tips: this round is simple you have to tell all the details of your profile and if they want this profile candidate they shortlisted you..
they want positive response, so be positive.

Interview Preparation Tips

Round: Test
Experience: In the first round there was an online test. Questions were from aptitude, general English and a simple code( very simple if you have programming skills).
Tips: It was purely a knowledge based round so everything depends on your preparation level and a bit confidence.

Round: Technical Interview
Experience: In technical round interview the process was like this...
I entered in room and greeted interviewer and he asked me to sit down. I handed over my resume to him. His first question was tell me about yourself. Then my projects. After that he came on programming, He asked me very basic concept about C++. Questions were like what is polymorphism, What is encapsulation. He also asked program of fibonacci series. After all these question he again looked at my resume and asked me 'why your CGPA is low?' I said that when i was in my first year i had interest in electronics but later when i encountered with programming i decided to have my career in this field so i could not concentrate on my core subjects.
Tips: C++ is '''''must''''' for Virtusa if you are from electronics . I didn't know data structure but c++ was on my fingers. Answer question with confidence.

Round: HR Interview
Experience: HR interview was really cool. Interview asked me about myself, my family, real life applications of my project. After that he came on real stuff. He asked question like why do you want to join virtusa? I said virtusa is this .. virtusa is this.....and many more..and in last i said this is i want to join virtusa. Next question was ' what do think about dowry?'. At first i was surprised to hear this question but i realized that interview only want to check my ability to speak on random topic. I answered the question by criticizing dowry and he was pleased to hear my answer. After one or two general HR question like location preference , he told me that your interview is over please wait outside for result. It was really nice to meet you . Thank you.
Tips: Never stop speaking in HR interview. They only check your ability to speak on random topics and their general HR question. I was continuously speaking ...please do not bother about grammar while speaking ...just speak with confidence(relevant).

General Tips: prepare c , c++ and ability to speak in front of interviewer.
Skills: Basic Coding, Aptitude, 1)communication
College Name: NIT Jalandhar

Interview Preparation Tips

Round: Test
Experience: Quite easy..It contains mcq and one programming question. MCQ covers databases,sql,software testing,c++
Tips: You can easily pass the test,no need to worry

Round: Interview
Experience: Questions are among databases and java,they will ask u fav subj and asks questions in that
Tips: Through with ur fav subject..be confident, simple anad basic questions,try to solve secreening test question using java language

Round: Interview
Experience: Its better to say technical only,the hr also asks about test pattren.programming question.then normal HR questions
Tips: It better to do some research about the company,overall it's easy and cake walk for those who are strong in java and databases

General Tips: CSE guys can easily clear that test and interview..without any hesitattion
Skills: Java,databases, SQL, C, General Aptitude
College Name: NIT Warangal
Motivation: Virtusa is emerging company
Funny Moments: In interview they asked about my girl friend,her name andwhen ur are going to marry. answer them in a funny way with smile in your face

I appeared for an interview in Mar 2017.

Interview Questionnaire 

4 Questions

  • Q1. Tell us about yourself
  • Ans. 

    I am a highly motivated individual with a passion for learning and a strong work ethic.

    • I have a Bachelor's degree in Computer Science

    • I have completed several internships in software development

    • I am proficient in Java, Python, and C++

    • I am a quick learner and enjoy taking on new challenges

  • Answered by AI
  • Q2. What do you intend to do in this internship
  • Ans. 

    I intend to gain practical experience in my field of study and contribute to the company's success.

    • Learn about the company's operations and culture

    • Assist with projects and tasks assigned by my supervisor

    • Collaborate with team members and offer innovative ideas

    • Improve my skills and knowledge in my field of study

  • Answered by AI
  • Q3. What are your strengths
  • Ans. 

    My strengths include adaptability, problem-solving, and communication.

    • Adaptability: I am able to quickly adjust to new situations and environments.

    • Problem-solving: I enjoy finding creative solutions to complex problems.

    • Communication: I am able to effectively convey ideas and information to others.

  • Answered by AI
  • Q4. What are your plans for the future
  • Ans. 

    I plan to continue learning and growing in my field while also exploring new opportunities for personal and professional development.

    • Pursue advanced education or certifications

    • Seek out mentorship and networking opportunities

    • Explore different industries and roles to broaden my skillset

    • Set specific goals and regularly evaluate progress

    • Remain adaptable and open to new challenges

  • Answered by AI

Interview Preparation Tips

Round: Aptitude Round
Experience: The company came to our college campus offering an internship at their Tokyo center. The students were shortlisted based on their academic performance.
The written aptitude test lasted for one hour and consisted of general questions on mathematics, logical reasoning, verbal ability along with a few basic programming questions.
Tips: The mathematics section was easy with simple questions on percents, profit and loss etc. analytical and logical reasoning was a bit tricky. Do brush up on basic concepts especially OOPs for the technical section.

Round: Technical Interview
Experience: This was a completely technical round. The main topics asked consisted of data structures, databases and algorithms. I was also asked in depth about my project topic.
Tips: know all the details about your project that you may have done earlier.
If you have done any internship before, then do explain about your role, responsibilities and technical skills that you have gained through it.
Keep brushing up on basics of data structures and databases.

Round: HR Interview
Experience: This was a HR interview. The HR head along with the Japanese RnD team(through video conferencing)interviewed me.
Tips: Do not panic and be true to yourself. Answer clearly and honestly.

College Name: MIT College Of Engineering

Interview Preparation Tips

Round: Test
Experience: Technical sections had questions from almost all the sections through AMCAT(C, C++, DBMS, DS, OS)(level :moderate)Quantitative aptitude’s questions were good.. All were almost of R. S. Aggarwal level though few exceptions were there tooLogical reasoning and verbal ability was good.. Some questions were tough.

Round: HR Interview
Experience: Overall enjoyed. But not selected because of my less market knowledge.

College Name: NA

Orange Business Interview FAQs

How many rounds are there in Orange Business Engineer Server Management interview?
Orange Business interview process usually has 1 rounds. The most common rounds in the Orange Business interview process are Technical.
How to prepare for Orange Business Engineer Server Management 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 Orange Business. The most common topics and skills that interviewers at Orange Business expect are Change Management, DNS, Windows, DHCP and Server Management.
What are the top questions asked in Orange Business Engineer Server Management interview?

Some of the top questions asked at the Orange Business Engineer Server Management interview -

  1. How can we get the number of active users with E3 license using scri...read more
  2. How to upgrade the vcenter serv...read more
  3. How many types of baseline in VMwa...read more

Tell us how to improve this page.

Orange Business Engineer Server Management Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
NTT Data Interview Questions
3.8
 • 631 Interviews
Publicis Sapient Interview Questions
3.5
 • 623 Interviews
GlobalLogic Interview Questions
3.6
 • 599 Interviews
UST Interview Questions
3.8
 • 523 Interviews
CGI Group Interview Questions
4.0
 • 497 Interviews
View all
Orange Business Engineer Server Management Salary
based on 16 salaries
₹4.7 L/yr - ₹9.5 L/yr
35% more than the average Engineer Server Management Salary in India
View more details

Orange Business Engineer Server Management Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

3.2

Skill development

4.8

Work-life balance

3.0

Salary

4.9

Job security

4.0

Company culture

2.9

Promotions

3.9

Work satisfaction

Explore 5 Reviews and Ratings
Network Engineer
363 salaries
unlock blur

₹2 L/yr - ₹9.5 L/yr

Technical Consultant
335 salaries
unlock blur

₹2.2 L/yr - ₹10 L/yr

Senior Technical Consultant
270 salaries
unlock blur

₹5.7 L/yr - ₹23 L/yr

Software Engineer
232 salaries
unlock blur

₹4 L/yr - ₹16.4 L/yr

Senior Software Engineer
205 salaries
unlock blur

₹10.1 L/yr - ₹31 L/yr

Explore more salaries
Compare Orange Business with

Virtusa Consulting Services

3.7
Compare

Nagarro

4.0
Compare

Sopra Steria

3.8
Compare

Sutherland Global Services

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