Oracle 1z0-105 Exam Practice Questions (P. 1)
- Full Access (97 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #1
Examine the dtrace command:
dtrace -P syscall
Which statement is true about this command?
dtrace -P syscall
Which statement is true about this command?
- AIt enables all probes available in the syscall provider.
- BIt lists all probes available in the syscall provider.
- CIt returns an error. The command is incomplete. You must specify a probe to enable.
- DIt enables all probes available in the syscall provider, and produces no output.
Correct Answer:
B
Reference: http://docs.oracle.com/cd/E19253-01/819-5488/gbxwv/index.html (Example 2-7, probes by provider)
B
Reference: http://docs.oracle.com/cd/E19253-01/819-5488/gbxwv/index.html (Example 2-7, probes by provider)
send
light_mode
delete
Question #2
Examine this extract from /etc/httpd/conf/httpd.conf for virtual hosts:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /www/docs/site1.example.com
ServerName site1.example.com -
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /www/docs/site2.example.com
ServerName site2.example.com -
</VirtualHost>
Which three statements are true about the configuration extract?
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /www/docs/site1.example.com
ServerName site1.example.com -
</VirtualHost>
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /www/docs/site2.example.com
ServerName site2.example.com -
</VirtualHost>
Which three statements are true about the configuration extract?
- ATo connect to the website, site1.example.com must resolve to a different IP address than site2.example.com.
- Bsite1.example.com and site2.example.com can share the same IP address.
- CThe web server attempts a DHCP discover to assign one IP address per virtual host.
- DIt is possible but not mandatory to have unique IP addresses for each virtual host.
- EThe site1.example.com virtual host shares and error logs with site2.example.com.
Correct Answer:
ACE
ACE
send
light_mode
delete
Question #3
Examine the code fragment from /etc/tgt/targets.conf:
<target iqn.2013-03.com.example.mypc:1>
backing-store /iSCSIsharedDisk/physDisk1.img
write-cache off
</target>
<target iqn.2013-03.com.example.myps:2>
backing-store / iSCSIsharedDisk/physDisk2.img
initiator-address 192.0.2.105
initiator address 192.0.2.106
write-cache off
</target>
<target iqn.2013-03.com.example.mypc:3>
backing-store /iSCSIsharedDisk/physDisk3.img
write-cache off
</target>
Which statement is true?
<target iqn.2013-03.com.example.mypc:1>
backing-store /iSCSIsharedDisk/physDisk1.img
write-cache off
</target>
<target iqn.2013-03.com.example.myps:2>
backing-store / iSCSIsharedDisk/physDisk2.img
initiator-address 192.0.2.105
initiator address 192.0.2.106
write-cache off
</target>
<target iqn.2013-03.com.example.mypc:3>
backing-store /iSCSIsharedDisk/physDisk3.img
write-cache off
</target>
Which statement is true?
- AOnly the target identified by the iqn ending with mypc:2 is visible. This target is visible to the specific clients identified by the initiator address.
- BThe initiator-address syntax in not valid. The address value should be specified as an iqn, not an IP address. This causes an error, and only iqns ending with mypc:1 and mypc:3 are visible.
- CAll targets are visible to prospective clients, but the target iqn ending with mypc:2 is visible exclusively to the specified IP addresses.
- DThe initiator-address syntax is not valid. The address value must be specified as an iqn, not an IP address. The initiator-address parameters are ignored and all targets are visible without restriction.
Correct Answer:
B
B
send
light_mode
delete
Question #4
Which three statements are true about an RPM SPEC file?
- AIt is mandatory for building a binary RPM using rpmbuild.
- BIt is a Shell script that can be used to build a binary RPM.
- CIt contains metadata that will be part of a binary RPM.
- DIt contains metadata and helper scripts that are required during the build process of a binary RPM.
Correct Answer:
ABD
Reference: http://www.thegeekstuff.com/2015/02/rpm-build-package-example/? utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A
+TheGeekStuff+ (The+Geek+Stuff)
ABD
Reference: http://www.thegeekstuff.com/2015/02/rpm-build-package-example/? utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A
+TheGeekStuff+ (The+Geek+Stuff)
send
light_mode
delete
Question #5
Examine the parameters shown using the sysctl command relating to panic situations:
[root@WAYOUT etc]# sysctl a |grep panic |grep v hung
kernel.panic = 0
kernel.panic_on_oops = 0
kernel.softlockup_panic = 0
kernel.unknown_nmi_panic = 0
kernel.panic_on_unrecovered_nmi = 0
kernel.panic_on_io_nmi = 0
kernel.panic_on_oom = 2
[root@WAYOUT etc]# sysctl a |grep hung
kernel.hung_task_panic = 0
kernel.hung_task_chek_count 4194304
kernel.hung_task_timeout_secs = 120
kernel.hung_task_warnings = 10
Which two statements are true about system behavior?
[root@WAYOUT etc]# sysctl a |grep panic |grep v hung
kernel.panic = 0
kernel.panic_on_oops = 0
kernel.softlockup_panic = 0
kernel.unknown_nmi_panic = 0
kernel.panic_on_unrecovered_nmi = 0
kernel.panic_on_io_nmi = 0
kernel.panic_on_oom = 2
[root@WAYOUT etc]# sysctl a |grep hung
kernel.hung_task_panic = 0
kernel.hung_task_chek_count 4194304
kernel.hung_task_timeout_secs = 120
kernel.hung_task_warnings = 10
Which two statements are true about system behavior?
- AThe kernel delays panic for a few seconds if a bug is encountered to allow the klogd kernel logging daemon to log the oops output.
- BThe kernel panics if a kernel thread sleeps in the TASK_UNINTERRUPTABLE state for more than 120 seconds.
- CThe kernel attempts to continue if a bug is encountered.
- DThe kernel always panics if an out-of-memory condition arises.
- EThe kernel tries to kill some memory-consuming processes to avoid a panic if an out-of- memory condition arises.
- FThe kernel panics if a user thread sleeps in the TASK_UNINTERRUPTABLE state for more than 120 seconds.
Correct Answer:
BF
BF
send
light_mode
delete
All Pages