Upload Button Icon Add office photos

Filter interviews by

HP Global e-Business Operations System Administrator Interview Questions and Answers

Updated 19 Apr 2022

7 Interview questions

A System Administrator was asked
Q. How do you rename a directory?
Ans. 

To rename a directory, use the 'mv' command followed by the current directory name and the desired new name.

  • Use the 'mv' command followed by the current directory name and the desired new name

  • Make sure you have the necessary permissions to rename the directory

  • If the directory is located in a different location, provide the full path to the directory

A System Administrator was asked
Q. How do you grant permissions to a directory and file?
Ans. 

To give permission to a directory and file, you can use the chmod command in Linux or the Set-ACL command in Windows.

  • In Linux, use the chmod command followed by the permission code and the directory/file name.

  • In Windows, use the Set-ACL command followed by the directory/file name and the desired permissions.

  • Permission codes in Linux include read (r), write (w), and execute (x) for owner, group, and others.

  • In Windo...

System Administrator Interview Questions Asked at Other Companies

asked in Wipro
Q1. 2. What is Cloud Technology. What is Microsoft Intune. If we can ... read more
asked in Wipro
Q2. What is Apple Push Notification service (APNS)? Suppose I didn't ... read more
asked in Wipro
Q3. A user has received a zip file in Outlook, which is a managed app ... read more
asked in Wipro
Q4. If this job required you to learn a new programming language, wha ... read more
asked in Infosys
Q5. How do you create a Repository file or YUM client configuration?
A System Administrator was asked
Q. How many run levels are there in Linux?
Ans. 

There are 7 run levels in Linux.

  • Run levels are numbered from 0 to 6 in Linux.

  • Each run level has a specific purpose and defines the state of the system.

  • Run level 0 is used for system shutdown, while run level 6 is used for system reboot.

  • Run level 1 is known as the single-user mode, used for system maintenance and troubleshooting.

  • Run levels 2 to 5 are multi-user modes with different configurations.

  • Run level 3 is typ...

A System Administrator was asked
Q. Where are user passwords located in Linux?
Ans. 

The user's password in Linux is stored in the /etc/shadow file.

  • The /etc/shadow file contains the encrypted passwords for all the users on the system.

  • Each line in the /etc/shadow file represents a user and their password information.

  • The password field in the /etc/shadow file contains the encrypted password.

  • The password is stored in a hashed format to enhance security.

  • Only the root user or users with sufficient priv...

A System Administrator was asked
Q. How do you assign an IP address and view the current IP address?
Ans. 

To give and see IP address, use the command 'ipconfig' on Windows or 'ifconfig' on Linux/Mac.

  • On Windows, open Command Prompt and type 'ipconfig'. Look for 'IPv4 Address' under the network adapter you're interested in.

  • On Linux/Mac, open Terminal and type 'ifconfig'. Look for 'inet' or 'inet addr' under the network adapter you want to check.

  • Alternatively, you can use the 'hostname -I' command on Linux/Mac to quickly...

A System Administrator was asked
Q. What are the port numbers for Telnet and SSHD?
Ans. 

The port number of telnet is 23 and the port number of sshd is 22.

  • The port number of telnet is 23.

  • The port number of sshd (Secure Shell Daemon) is 22.

A System Administrator was asked
Q. How do you add a user and create a directory in Linux?
Ans. 

To add a user and create a directory in Linux, you can use the 'useradd' command to create the user and 'mkdir' command to create the directory.

  • Use the 'useradd' command followed by the username to create a new user. For example: 'useradd john'

  • To create a directory, use the 'mkdir' command followed by the directory name. For example: 'mkdir /home/john'

  • You can also specify additional options with the 'useradd' comm...

Are these interview questions helpful?

HP Global e-Business Operations System Administrator Interview Experiences

1 interview found

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. How many run level in Linux?
  • Ans. 

    There are 7 run levels in Linux.

    • Run levels are numbered from 0 to 6 in Linux.

    • Each run level has a specific purpose and defines the state of the system.

    • Run level 0 is used for system shutdown, while run level 6 is used for system reboot.

    • Run level 1 is known as the single-user mode, used for system maintenance and troubleshooting.

    • Run levels 2 to 5 are multi-user modes with different configurations.

    • Run level 3 is typicall...

  • Answered by AI
  • Q2. How to add user and create directory in Linux?
  • Ans. 

    To add a user and create a directory in Linux, you can use the 'useradd' command to create the user and 'mkdir' command to create the directory.

    • Use the 'useradd' command followed by the username to create a new user. For example: 'useradd john'

    • To create a directory, use the 'mkdir' command followed by the directory name. For example: 'mkdir /home/john'

    • You can also specify additional options with the 'useradd' command, ...

  • Answered by AI
  • Q3. How to give permission to directory and file?
  • Ans. 

    To give permission to a directory and file, you can use the chmod command in Linux or the Set-ACL command in Windows.

    • In Linux, use the chmod command followed by the permission code and the directory/file name.

    • In Windows, use the Set-ACL command followed by the directory/file name and the desired permissions.

    • Permission codes in Linux include read (r), write (w), and execute (x) for owner, group, and others.

    • In Windows, p...

  • Answered by AI
  • Q4. How to rename directory?
  • Ans. 

    To rename a directory, use the 'mv' command followed by the current directory name and the desired new name.

    • Use the 'mv' command followed by the current directory name and the desired new name

    • Make sure you have the necessary permissions to rename the directory

    • If the directory is located in a different location, provide the full path to the directory

  • Answered by AI
  • Q5. How to give ip and see ip address
  • Ans. 

    To give and see IP address, use the command 'ipconfig' on Windows or 'ifconfig' on Linux/Mac.

    • On Windows, open Command Prompt and type 'ipconfig'. Look for 'IPv4 Address' under the network adapter you're interested in.

    • On Linux/Mac, open Terminal and type 'ifconfig'. Look for 'inet' or 'inet addr' under the network adapter you want to check.

    • Alternatively, you can use the 'hostname -I' command on Linux/Mac to quickly see ...

  • Answered by AI
  • Q6. Where is locate user's password in linux
  • Ans. 

    The user's password in Linux is stored in the /etc/shadow file.

    • The /etc/shadow file contains the encrypted passwords for all the users on the system.

    • Each line in the /etc/shadow file represents a user and their password information.

    • The password field in the /etc/shadow file contains the encrypted password.

    • The password is stored in a hashed format to enhance security.

    • Only the root user or users with sufficient privilege...

  • Answered by AI
  • Q7. What is port number of telne,sshd
  • Ans. 

    The port number of telnet is 23 and the port number of sshd is 22.

    • The port number of telnet is 23.

    • The port number of sshd (Secure Shell Daemon) is 22.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Topics to prepare for HP Global e-Business Operations System Administrator interview:
  • Lerning material
Interview preparation tips for other job seekers - I want to do hard work , and with this company there was no pressure during interview.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about HP Global e-Business Operations?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. To develop a product catalogue in core Java using Maven.
  • Ans. 

    Develop a product catalogue in core Java using Maven for efficient project management and dependency handling.

    • Set up a Maven project: Use 'mvn archetype:generate' to create a new project structure.

    • Define dependencies: Add necessary libraries in 'pom.xml', e.g., 'javax.persistence' for ORM.

    • Create entity classes: Define product attributes like 'id', 'name', 'description', and 'price'.

    • Implement CRUD operations: Use JPA or...

  • Answered by AI

Skills evaluated in this interview

System Administrator Interview Questions Asked at Other Companies

asked in Wipro
Q1. 2. What is Cloud Technology. What is Microsoft Intune. If we can ... read more
asked in Wipro
Q2. What is Apple Push Notification service (APNS)? Suppose I didn't ... read more
asked in Wipro
Q3. A user has received a zip file in Outlook, which is a managed app ... read more
asked in Wipro
Q4. If this job required you to learn a new programming language, wha ... read more
asked in Infosys
Q5. How do you create a Repository file or YUM client configuration?

Interview Questionnaire 

1 Question

  • Q1. Manual and SQL based questions... practical questins,like writing queries test cases etc.

I applied via Walk-in and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on derivatives, equity and stock market.

Interview Preparation Tips

Interview preparation tips for other job seekers - They look for confident, good English and basic subject knowledge candidate.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself.
  • Q2. Do you believe in Team Work or Individual work.
  • Q3. Tell me about previous experience & unforgettable movement in previous company .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive about your previous companies experience.

Interview Questionnaire 

3 Questions

  • Q1. Work experience
  • Q2. Advance excel
  • Q3. Puzzles

I applied via Naukri.com and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. About yourself
  • Q2. About family background
  • Q3. About technical questions accounting and all
  • Q4. Ask accounting adjustments
  • Ans. 

    Accounting adjustments are necessary changes made to financial statements to ensure accuracy and compliance with accounting standards.

    • Adjustments can include accruals, deferrals, and estimates.

    • For example, adjusting for unpaid expenses at year-end (accrual).

    • Deferring revenue recognition until services are rendered (deferral).

    • Estimating bad debts to reflect potential uncollectible accounts.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay alert on questions what they ask and act accordingly,

Only answee what they ask, answer should be in English only.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. About experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Normal

I applied via Referral and was interviewed before Mar 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Human anatomy questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s good and some basics of anatomy is enough to crack the interview
Good luck

Interview Questionnaire 

1 Question

  • Q1. What do you know about company Education and other question Fluent in english is must

Interview Preparation Tips

Round: Test
Experience: Normal typing test and some aptitude question

HP Global e-Business Operations Interview FAQs

How many rounds are there in HP Global e-Business Operations System Administrator interview?
HP Global e-Business Operations interview process usually has 2 rounds. The most common rounds in the HP Global e-Business Operations interview process are One-on-one Round and HR.
What are the top questions asked in HP Global e-Business Operations System Administrator interview?

Some of the top questions asked at the HP Global e-Business Operations System Administrator interview -

  1. How to add user and create directory in Lin...read more
  2. How to give permission to directory and fi...read more
  3. How to give ip and see ip addr...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 2k Interviews
WNS Interview Questions
3.3
 • 1.1k Interviews
Omega Healthcare Interview Questions
3.7
 • 477 Interviews
R1 RCM Interview Questions
3.8
 • 318 Interviews
Alldigi Tech Interview Questions
4.0
 • 217 Interviews
IntouchCX Interview Questions
2.8
 • 211 Interviews
Conduent Interview Questions
3.4
 • 210 Interviews
TaskUs Interview Questions
3.2
 • 190 Interviews
Foundever Interview Questions
3.5
 • 162 Interviews
View all
Software Engineer
16 salaries
unlock blur

₹7 L/yr - ₹27 L/yr

Senior Process Associate
12 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Team Lead
12 salaries
unlock blur

₹4 L/yr - ₹13.1 L/yr

Process Associate
8 salaries
unlock blur

₹1.7 L/yr - ₹4 L/yr

Technical Support Engineer
8 salaries
unlock blur

₹2.6 L/yr - ₹4.4 L/yr

Explore more salaries
Compare HP Global e-Business Operations with

Teleperformance

3.9
Compare

Concentrix Corporation

3.7
Compare

WNS

3.3
Compare

Omega Healthcare

3.7
Compare
write
Share an Interview