Exam Code : 050-733
Exam Name : SUSE Certified Linux Administrator 12
Vendor Name :
"SUSE"
050-733 Dumps
050-733 Braindumps
050-733 Real Questions
050-733 Practice Test
050-733 Actual Questions
killexams.com
SUSE Certified Linux Administrator 12
https://killexams.com/pass4sure/exam-detail/050-733
Question: 121
You want to install the gvim RPM package that is available on the SUSE Linux Enterprise Server installation media. Which command installs the gvim package, and resolves dependencies as needed?
rpm -i gvim
yast -i gvim
yast -I gvim
rpm -U gvim
Answer: A
References:
http://www.mpipks-dresden.mpg.de/~mueller/docs/susel 0.2/html/opensuse-manual_en/manual/ sec.yast.ncurses_commands.html
Question: 122
What is the type command used for?
type determines the type of a command (shell builtin, alias, file on hard disk).
type is used to determine the type of processor used (32-bit, 64-bit, Power)
type displays the type of terminal (ttyl, tty2) you are logged in to.
type is used to print text to a teletypewriter.
Answer: A
Question: 123
In the bash shell, which command can be used to create a MY_NAME variable containing the value Joe?
MY_NAME=Joe
MY_NAME = Joe
echo Joe > MY_NAME
export MY_NAME = Joe
Answer: A
References:
http://ryanstutorials.net/bash-scripting-tutorial/bash-variables.php
Question: 124
How long does "Long Term Service Pack Support (LTSS) for SLES" extend the span of getting updates for SLES packages belonging to a specific Service pack?
3 years
1 year
5 years
7 years
10 years
Answer: C
References:
https://www.suse.com/products/long-term-service-pack-support/
Question: 125
Which command can be used to set the system time? (Choose two.)
time
timeofday
date
netdate
hctosys
Answer: C,D
Question: 126
Which statement about the primary (default) group of a user is correct?
Theprimary groupmembershipof a useris defined in the/etc/gppasswd file.
Theprimary groupmembershipof a useris defined in the/etc/shadow file.
Theprimary groupmembershipof a useris defined in the/etc/passwd file.
Theprimary groupmembershipof a useris defined in the/etc/group file.
Answer: C
Question: 127
What is the name of the file containing the initramfs?
/sbin/liniixrainfs
/lib/initramfs
/boot/ramfs
/boot/initrd
Zboot/vmram
/sbin/vmram
Answer: D
Question: 128
What is the result of the following command? dd if=/dev/zero of=/dev/hdd bs=512 count=1
Writes zeros in the first 512 bytes of the first hard disk block
Assigns the physical volume zero to the logical volume hdd
Overwrites an existing partition table
Creates a LVM partition of 512 blocks
Backs up the /dev/zero and /dev/hdd files
Answer: A,C
Question: 129
Which protocol is used to send messages by the ping command?
NTP
FTP
TCP
ICMP
HTTP
LDAP
Answer: D
Question: 130
You need to find the files in the /etc directory that contain the word DocumentRoot in a terminal window. Which command will help you find it?
discover DocumentRoot/etc
search-r DocumentRoot/etc/*
find /etc -content DocumentRoot
grep -r DocumentRoot /etc/*
Answer: D