2014年3月31日星期一

Guide de formation plus récente de RedHat RH-302

Généralement, les experts n'arrêtent pas de rechercher les Q&As plus proches que test Certification. Les documentations offertes par les experts de Pass4Test peuvent vous aider à passer le test Certification. Les réponses de nos Q&As ont une précision 100%. C'est facile à obtenir le Certificat de RedHat après d'utiliser la Q&A de Pass4Test. Vous aurez une space plus grande dans l'industrie IT.

Dans cette société de plus en plus intense, nous vous proposons à choisir une façon de se former plus efficace : moins de temps et d'argent dépensé. Pass4Test peut vous offrir une bonne solution avec une plus grande space à développer.

Le test Certification RedHat RH-302 est une chance précieuse à augmenter vos connaissances de technologie informatique dans l'industrie IT. Il attire beaucoup de professionls à participer ce test. Pass4Test peut vous offrir les outils de formation particuliers à propos de test RedHat RH-302. Vous réaliserez plus tôt votre rêve avec la Q&A écrite par l'équipe professionnelle de Pass4Test. Pass4Test se contribue à vous donner un coup de main pour réussir le test RedHat RH-302.

Votre vie changera beaucoup après d'obtenir le Certificat de RedHat RH-302. Tout va améliorer, la vie, le boulot, etc. Après tout, RedHat RH-302 est un test très important dans la série de test Certification RedHat. Mais c'est pas facile à réussir le test RedHat RH-302.

Les produits de Pass4Test a une bonne qualité, et la fréquence de la mise à jour est bien impressionnée. Si vous avez déjà choisi la Q&A de Pass4Test, vous n'aurez pas le problème à réussir le test RedHat RH-302.

Code d'Examen: RH-302
Nom d'Examen: RedHat (Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs))
Questions et réponses: 330 Q&As

RH-302 Démo gratuit à télécharger: http://www.pass4test.fr/RH-302.html

NO.1 mount /dev/hda? /mnt/neo
4. Your System is going use as a router for 172.24.0.0/16 and 172.25.0.0/16. Enable the
IP Forwarding.
Answer and Explanation:
1. echo "1" >/proc/sys/net/ipv4/ip_forward
2. vi /etc/sysctl.conf
net.ipv4.ip_forward=1
/proc is the virtual filesystem, containing the information about the running kernel. To change the
parameter of running kernel you should modify on /proc. From Next reboot the system, kernel will take the
value from /etc/sysctl.conf.
5. Some users home directory is shared from your system. Using showmount -e localhost command, the
shared directory is not shown. Make access the shared users home directory.
Answer and Explanation:
1. Verify the File whether Shared or not ? : cat /etc/exports
2. Start the nfs service: service nfs start
3. Start the portmap service: service portmap start
4. Make automatically start the nfs service on next reboot: chkconfig nfs on
5. Make automatically start the portmap service on next reboot: chkconfig portmap on
6. Verify either sharing or not: showmount -e localhost
7. Check that default firewall is running on system ? if running flush the iptables using iptables -F and stop
the iptables service.
6. neo user tried by:
dd if=/dev/zero of=/home/neo/somefile bs=1024 count=70
files created successfully. Again neo tried to create file having 70K using following command:
dd if=/dev/zero of=/home/neo/somefile bs=1024 count=70
But he is unable to create the file. Make the user can create the file less then 70K.
Answer and Explanation:
Very Tricky from redhat. Actually is giving scenario to you to implement quota to neo user. You should
apply the quota to neo user on /home that neo user shouldn't occupied space more than 70K.
1. vi /etc/fstab
LABEL=/home /home ext3 defaults,usrquota 0 0
To enable the quota on filesystem you should mount the filesystem with usrquota for user quota and
grpquota for group quota.
2. touch /home/aquota.user ->Creating blank quota database file.
3. mount -o remount /home-> Remounting the /home with updated mount options.
You can verify that /home is mounted with usrquota options or not using mount command.
4. quotacheck -u /home ->Initialization the quota on /home
5. edquota -u neo /home-> Quota Policy editor
See the snapshot
Disk quotas for user neo (uid 500):
Filesystem blocks soft hard inodes soft hard
/dev/mapper/vo-myvol 2 30 70 1 0 0
Can you set the hard limit 70 and soft limit as you think like 30.
Verify using the repquota /home command.
7. One Logical Volume is created named as myvol under vo volume group and is mounted. The Initial
Size of that Logical Volume is 124MB. Make successfully that the size of Logical Volume 245MB without
losing any data. The size of logical volume 240MB to 255MB will be acceptable.
Answer and Explanation:
1. First check the size of Logical Volume: lvdisplay /dev/vo/myvol
2. Increase the Size of Logical Volume: lvextend -L+121M /dev/vo/myvol
3. Make Available the size on online: resize2fs /dev/vo/myvol
4. Verify the Size of Logical Volume: lvdisplay /dev/vo/myvol
5. Verify that the size comes in online or not: df -h
We can extend the size of logical Volume using the lvextend command. As well as to decrease the size of
Logical Volume, use the lvresize command. In LVM v2 we can extend the size of Logical Volume without
unmount as well as we can bring the actual size of Logical Volume on online using ext2online command.
8. Quota is implemented on /data but not working properly. Find out the Problem and implement the quota
to user1 to have a soft limit 60 inodes (files) and hard limit of 70 inodes (files).
Answer and Explanation:
Quotas are used to limit a user's or a group of users' ability to consume disk space. This prevents a small
group of users from monopolizing disk capacity and potentially interfering with other users or the entire
system. Disk quotas are commonly used by ISPs, by Web hosting companies, on FTP sites, and on
corporate file servers to ensure continued availability of their systems.
Without quotas, one or more users can upload files on an FTP server to the point of filling a filesystem.
Once the affected partition is full, other users are effectively denied upload access to the disk. This is also
a reason to mount different filesystem directories on different partitions. For example, if you only had
partitions for your root (/) directory and swap space, someone uploading to your computer could fill up all
of the space in your root directory (/). Without at least a little free space in the root directory (/), your
system could become unstable or even crash.
You have two ways to set quotas for users. You can limit users by inodes or by kilobytesized disk blocks.
Every Linux file requires an inode. Therefore, you can limit users by the number of files or by absolute
space. You can set up different quotas for different filesystems. For example, you can set different quotas
for users on the /home and /tmp directories if they are mounted on their own partitions.
Limits on disk blocks restrict the amount of disk space available to a user on your system.
Older versions of Red Hat Linux included LinuxConf, which included a graphical tool to configure quotas.
As of this writing, Red Hat no longer has a graphical quota configuration tool. Today, you can configure
quotas on RHEL only through the command line interface.
1. vi /etc/fstab /dev/hda11 /data ext3 defaults,usrquota 1 2
2. Either Reboot the System or remount the partition.
Mount -o remount /dev/hda11 /data
3. touch /data/aquota.user
4. quotacheck -ufm /data
5. quotaon -u /data
6. edquota -u user1 /data and Specified the Soft limit and hard limit on opened file.
To verify either quota is working or not:
Soft limit specify the limit to generate warnings to users and hard limit can't cross by the user. Use the
quota command or repquota command to monitor the quota information.
9. One Logical Volume named lv1 is created under vg0. The Initial Size of that Logical Volume is 100MB.
Now you required the size 500MB. Make successfully the size of that Logical Volume 500M without losing
any data. As well as size should be increased online.
Answer and Explanation:
The LVM system organizes hard disks into Logical Volume (LV) groups. Essentially,physical hard disk
partitions (or possibly RAID arrays) are set up in a bunch of equalRH302 sized chunks known as Physical
Extents (PE). As there are several other concepts associated with the LVM system, let's start with some
basic definitions:
. Physical Volume (PV) is the standard partition that you add to the LVM mix.
Normally, a physical volume is a standard primary or logical partition. It can also be a RAID array.
. Physical Extent (PE) is a chunk of disk space. Every PV is divided into a number of equal sized PEs.
Every PE in a LV group is the same size. Different LV groups can have different sized PEs.
. Logical Extent (LE) is also a chunk of disk space. Every LE is mapped to a specific PE.
. Logical Volume (LV) is composed of a group of LEs. You can mount a filesystem such as /home and /var
on an LV.
. Volume Group (VG) is composed of a group of LVs. It is the organizational group for LVM. Most of the
commands that you'll use apply to a specific VG.
1. Verify the size of Logical Volume: lvdisplay /dev/vg0/lv1
2. Verify the Size on mounted directory: df -h or df -h mounted directory name
3. Use : lvextend -L+400M /dev/vg0/lv1
4. resize2fs /dev/vg0/lv1 to bring extended size online.
5. Again Verify using lvdisplay and df -h command.
10. Create one partitions having size 100MB and mount it on /data.
Answer and Explanation:
1. Use fdisk /dev/hda ->To create new partition.
2. Type n-> For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M ->You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
Or
mke2fs -j /dev/hda? To create ext3 filesystem.
10. vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2
11. Verify by mounting on current Sessions also:
mount /dev/hda? /data
11. You are new System Administrator and from now you are going to handle the system and your main
task is Network monitoring, Backup and Restore. But you don't know the root password. Change the root
password to redhat and login in default Runlevel.
Answer and Explanation:
When you Boot the System, it starts on default Runlevel specified in /etc/inittab:
Id:?:initdefault:
When System Successfully boot, it will ask for username and password. But you don't know the root's
password. To change the root password you need to boot the system into single user mode. You can pass
the kernel arguments from the boot loader.
1. Restart the System.
2. You will get the boot loader GRUB screen.
3. Press a and type 1 or s for single mode
ro root=LABEL=/ rhgb queit s
4. System will boot on Single User mode.
5. Use passwd command to change.
6. Press ctrl+d
12. There are more then 400 Computers in your Office. You are appointed as a System Administrator. But
you don't have Router. So, you are going to use your One Linux Server as a Router. How will you enable
IP packets forward?
Answer and Explanation:
1. /proc is the virtual filesystem, we use /proc to modify the kernel parameters at running time.
# echo "1" >/proc/sys/net/ipv4/ip_forward
2. /etc/sysctl.conf when System Reboot on next time, /etc/rc.d/rc.sysinit scripts reads the file
/etc/sysctl.conf.-> To enable the IP forwarding on next reboot also you need to set the parameter.
net.ipv4.ip_forward=1
Here 0 means disable, 1 means enable.
13. You Completely Install the Redhat Enterprise Linux 5 on your System. While start the system, it's
giving error to load X window System. How will you fix that problem and make boot successfully run X
Window System.
Answer and Explanation:
Think while Problems occurred on booting System on Runlevel 5 (X Window)
1. /tmp is full or not
2. Quota is already reached
3. Video card or resolution or monitor is misconfigured.
4. xfs service is running or not.
Do These:
1. df -h /tmp /tmp is full remove the unnecessary file
2. quota username if quota is already reached remove unnecessary file from home directory.
3. Boot the System in runlevel 3. you can pass the Kernel Argument from boot loader.
4. Use command: system-config-display It will display a dialog to configure the monitor, Video card,
resolution etc.
5. Set the Default Runlevel 5 in /etc/inittab
id:5:initdefault:
6. Reboot the System you will get the GUI login Screen.
14. There are two different networks, 192.168.0.0/24 and 192.168.1.0/24. Your System is in
192.168.0.0/24 Network. One RHEL 5 Installed System is going to use as a Router. All required
configuration is already done on Linux Server. Where 192.168.0.254 and 192.168.1.254 IP Address
are assigned on that Server. How will make successfully ping to 192.168.1.0/24 Network's Host?
Answer and Explanation:
1. vi /etc/sysconfig/network
GATEWAY=192.168.0.254
OR
vi /etc/sysconf/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.0.?
NETMASK=255.255.255.0
GATEWAY=192.168.0.254
2. service network restart
Explanation: Gateway defines the way to exit the packets. According to System working as a router for
two networks have IP Address 192.168.0.254 and 192.168.1.254.
To get the hosts on 192.168.1.0/24 should go through 192.168.0.254.
15. Make a swap partition having 100MB. Make Automatically Usable at System Boot Time.
Answer and Explanation:
1. Use fdisk /dev/hda ->To create new partition.
2. Type n-> For New partition
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M ->You can Specify either Last cylinder of Size here.
6. Press P to verify the partitions lists and remember the partitions name. Default System ID is 83 that
means Linux Native.
7. Type t to change the System ID of partition.
8. Type Partition Number
9. Type 82 that means Linux Swap.
10. Press w to write on partitions table.
11. Either Reboot or use partprobe command.
12. mkswap /dev/hda? ->To create Swap File system on partition.
13. swapon /dev/hda? ->To enable the Swap space from partition.
14. free -m ->Verify Either Swap is enabled or not.
15. vi /etc/fstab
/dev/hda? swap swap defaults 0 0
16. Reboot the System and verify that swap is automatically enabled or not.
16. You are a System administrator. Using Log files very easy to monitor the system.
Now there are 50 servers running as Mail, Web, Proxy, DNS services etc. You want to centralize the logs
from all servers into on LOG Server. How will you configure the LOG Server to accept logs from remote
host ?
Answer and Explanation:
By Default system accept the logs only generated from local host. To accept the Log from other host
configure:
1. vi /etc/sysconfig/syslog
SYSLOGD_OPTIONS="-m 0 -r"
Where
-m 0 disables 'MARK' messages.
-r enables logging from remote machines
-x disables DNS lookups on messages recieved with -r
2. service syslog restart
17. You are giving the debug RHCT exam. The examiner told you that the password of root is redhat.
When you tried to login displays the error message and redisplayed the login screen. You changed the
root password, again unable to login as a root.
How will you make Successfully Login as a root.
Answer and Explanation:
When root unable to login into the system think:
1. Is password correct?
2. Is account expired?
3. Is terminal Blocked?
Do these Steps:
. Boot the System on Single user mode.
. Change the password
. Check the account expire date by using chage -l root command.
If account is expired, set net expire date: chage -E "NEVER" root
1. Check the file /etc/securetty Which file blocked to root login from certain terminal.
2. If terminal is deleted or commented write new or uncomment.
3. Reboot the system and login as a root.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.2 Use mkfs -t ext3 /dev/hda? Where ? is your partition number

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.3 Either Reboot or use partprobe command.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.4 You are giving RHCT Exam and in your Exam paper there is a written, make successfully ping to
192.168.0.254.
Answer and Explanation:
In Network problem thinks to check:
1. IP Configuration: use ifconfig command either IP is assigned to interface or not?
2. Default Gateway is set or not?
3. Hostname is set or not?
4. Routing problem is there?
5. Device Driver Module is loaded or not?
6. Device is activated or not?
Check In this way:
1. use ifconfig command and identify which IP is assigned or not.
2. cat /etc/sysconfig/network What, What is written here. Actually here are these parameters.
NETWORKING=yes or no
GATEWAY=x.x.x.x
HOSTNAME=?
NISDOMAIN=?
- Correct the file
3. Use vi /etc/sysconfig/network-scirpts/ifcfg-eth0 and check the proper options
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=x.x.x.x
NETMAKS=x.x.x.x
GATEWAY=x.x.x.x
4. Use service network restart or start command

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.5 Write:

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.6 /dev/hda? /mnt/neo ext3 defaults 1 2

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.7 Create the partition having 100MB size and mount it on /mnt/neo
Answer and Explanation:
1. Use fdisk /dev/hda-> To create new partition.
2. Type n-> For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.8 The System you are using is for NFS (Network File Services). Some important data are shared from
your system. Make automatically start the nfs and portmap services at boot time.
Answer and Explanation:
We can control the services for current session and for next boot time also. For current Session, we use
service servicename start or restart or stop or status. For automatically on next reboot time:
1. chkconfig servicename on or off
eg: chkconfig nfs on
chkconfig portmap on
or
ntsysv
Select the nfs and portmap services.
2. Reboot the system and identify whether services are running or not.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.9 vi /etc/fstab

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.10 Set the Hostname station?.example.com where ? is your Host IP Address.
Answer and Explanation:
1. hostname station?.example.com This will set the host name only for current session. To set hostname
permanently.
2. vi /etc/sysconfig/network
HOSTNAME=station?.example.com
3. service network restart

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.11 Verify by mounting on current Sessions also:

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.12 mkdir /mnt/neo

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.13 It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.14 Use the passwd command
2. Dig Server1.example.com, Resolve to successfully through DNS Where DNS server is 172.24.254.254
Answer and Explanation:
#vi /etc/resolv.conf
nameserver 172.24.254.254
#dig server1.example.com
#host server1.example.com
DNS is the Domain Name System, which maintains a database that can help your computer translate
domain names such as www.Redhat.com to IP addresses such as 216.148.218.197. As no individual
DNS server is large enough to keep a database for the entire Internet, they can refer requests to other
DNS servers.
DNS is based on the named daemon, which is built on the BIND (Berkeley Internet Name Domain)
package developed through the Internet Software Consortium Users wants to access by name so DNS
will interpret the name into ip address. You need to specify the Address if DNS server in each and every
client machine. In Redhat Enterprise Linux, you need to specify the DNS server into /etc/resolv.conf file.
After Specifying the DNS server address, you can verify using host, dig and nslookup commands.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.15 mke2fs -j /dev/hda? To create ext3 filesystem.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.16 Change the root Password to redtophat
Answer and Explanation:
1. Boot the system in Single user mode

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.17 Type the Size: +100M-> You can Specify either Last cylinder of Size here.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.18 Press w to write on partitions table.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.19 Press P to verify the partitions lists and remember the partitions name.

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

NO.20 Or

RedHat   RH-302 examen   certification RH-302   certification RH-302   certification RH-302

C'est un bon choix si vous prendre l'outil de formation de Pass4Test. Vous pouvez télécharger tout d'abord le démo gratuit pour prendre un essai. Vous aurez plus confiances sur Pass4Test après l'essai de notre démo. Si malheureusement, vous ne passe pas le test, votre argent sera tout rendu.

Guide de formation plus récente de Polycom 1K0-002

But que Pass4Test n'offre que les produits de qualité est pour vous aider à réussir le test Polycom 1K0-002 100%. Le test simulation offert par Pass4Test est bien proche de test réel. Si vous ne pouvez pas passer le test Polycom 1K0-002, votre argent sera tout rendu.

Le test Polycom 1K0-002 est très important dans l'Industrie IT, tous les professionnels le connaîssent ce fait. D'ailleur, c'est difficile à réussir ce test, toutefois le test Polycom 1K0-002 est une bonne façon à examiner les connaissances professionnelles. Un gens avec le Certificat Polycom 1K0-002 sera apprécié par beaucoup d'entreprises. Pass4Test est un fournisseur très important parce que beaucoup de candidats qui ont déjà réussi le test preuvent que le produit de Pass4Test est effectif. Vous pouvez réussir 100% le test Polycom 1K0-002 avec l'aide de Pass4Test.

Code d'Examen: 1K0-002
Nom d'Examen: Polycom (CVE-2)
Questions et réponses: 263 Q&As

Généralement, les experts n'arrêtent pas de rechercher les Q&As plus proches que test Certification. Les documentations offertes par les experts de Pass4Test peuvent vous aider à passer le test Certification. Les réponses de nos Q&As ont une précision 100%. C'est facile à obtenir le Certificat de Polycom après d'utiliser la Q&A de Pass4Test. Vous aurez une space plus grande dans l'industrie IT.

Pass4Test possède une grande équipe composée des experts IT qui travaillent dur avec leurs riches expériences et connaissances pour produire un bon outil de formation. Selon les anciens test, le test simulation de Pass4Test est bien lié avec le test réel. Pass4Test peut vous assurer à réussir le test. Maintenant vous ajoutez votre outil de formation au panier, et votre rêve réalisera bien tôt.

C'est pas facile à passer le test Certification Polycom 1K0-002, choisir une bonne formation est le premier bas de réussir, donc choisir une bonne resource des informations de test Polycom 1K0-002 est l'assurance du succès. Pass4Test est une assurance comme ça. Une fois que vous choisissez le test Polycom 1K0-002, vous allez passer le test Polycom 1K0-002 avec succès, de plus, un an de service en ligne après vendre est gratuit pour vous.

Choisissez le Pass4Test, choisissez le succès. Le produit offert par Pass4Test vous permet à réussir le test Polycom 1K0-002. C'est necessaire de prendre un test simulation avant participer le test réel. C'est une façon bien effective. Choisir Pass4Test vous permet à réussir 100% le test.

Pass4Test est aussi un site d'offrir la ressource des connaissances pour le test Certification IT. Selon les Feedbacks venus de gens qui ont untilié les produits de Pass4Test, Pass4Test est un site fiable comme l'outil de se former. Les Q&As offertes par Pass4Test sont bien précises. Les experts de Pass4Test mettent à jour nos documentations de formation de temps de temps.

1K0-002 Démo gratuit à télécharger: http://www.pass4test.fr/1K0-002.html

NO.1 Which of the following describes the activity for which a RTCP is used?
A.Transport Task for Communication of Audio and Video over IP
B.Transport Task of Simple Network Management Protocol
C.Network Statistics of Media Channels between Videoconferencing Hardware
D.Network Statistics of Media Channels between Routers
E.Network Statistics of Media Channels between Gatekeepers
Answer: C

certification Polycom   certification 1K0-002   1K0-002   1K0-002   1K0-002 examen

NO.2 E1 framing has a bit structure of how many bits per frame?
Clue Full metallic E1 speed divided by 8KHz Stratum timing.
A.200
B.240
C.256
D.300
Answer: C

Polycom examen   1K0-002 examen   1K0-002   1K0-002 examen   1K0-002

NO.3 Local Area Network Metallic Interfaces are
A.connection oriented, point to point connectivity only.
B.unshared network that serves unlimited endpoints.
C.connectionless oriented connectivity, shared network that serves limited distances.
D.connectionless oriented connectivity, shared network that serves unlimited distances.
E.C and D
F.All of the above
Answer: C

Polycom   1K0-002   1K0-002   1K0-002 examen

NO.4 A telephone call over the Public Switched Telephone Network is what type of quality?
A.Narrow band audio
B.Center band audio
C.Wide band audio
D.CD quality audio
Answer: A

Polycom   1K0-002   certification 1K0-002   certification 1K0-002

NO.5 Pick the best match; Audio "Critical Distance" is a definition that relates to:
A.Distance between the audio amplifier inputs and room microphone
B.Distance between the person speaking and the microphone used
C.Distance between the video display monitor and camera
D.Distance between the walls, floor to ceiling, and doorways
Answer: B

Polycom examen   certification 1K0-002   1K0-002   certification 1K0-002   1K0-002

NO.6 Multiplexers using HSD interfaces are DCE Interfaces that provide which three signals?
A.Transmit Data
B.Receive Data
C.Request to Send
D.Data Carrier Detect (RLSD)
E.TX Clock and TX Data
F.TX Clock and RX Clock
Answer: BDF

certification Polycom   certification 1K0-002   1K0-002   1K0-002   1K0-002

NO.7 High Definition Video is best described as
A.Video Signal that consists of luminance scan interlaced lines.
B.Video Signal made up of 8X8 blocks of pixels.
C.Video signal that represents 720 lines of pixels, progressively scanned.
D.Video Signal made up of 40X40 macroblocks pixels.
Answer: C

certification Polycom   1K0-002   certification 1K0-002   1K0-002 examen   1K0-002

NO.8 Which of the following correctly describes typical audio phantom power?
A.48 volts DC applied to a telephone circuit center pair used to provide power to the telephone set
B.12 volts DC applied to the tip and ring of a TRS connector used to power amplified headphones
C.A DC voltage applied to the center pin of an RCA type connector used to power remote pre-amplifiers
D.A DC voltage applied to pins 2 and 3 of an XLR connector returning through pin 1, used to power
microphones
Answer: D

Polycom   1K0-002   1K0-002   1K0-002 examen

NO.9 Which audio coding uses 8 Kbps?
A.G.711
B.G.722
C.G.729
D.G.728
E.G.722.1
Answer: C

Polycom   1K0-002   1K0-002   1K0-002

NO.10 Which of the following functions can NOT be performed by a microphone mixer?
A. Provide phantom power to microphones.
B. Provide gain to convert mic-level signals to line-level signals.
C. Provide a means to adjust the relative gain of different microphones.
D. Provide a means to adjust the video display brightness.
E. Provide a means to adjust the room acoustics
Answer: DE

Polycom examen   1K0-002   certification 1K0-002   1K0-002   1K0-002 examen

NO.11 Which of the following is the Protocol RAS used by the H.323 Gatekeeper?
A.Registration, Alerting, and Status of H.323 Terminals
B.Registration, Access, and Status of H.323 Terminals
C.Registration, Activation, and Status of H.323 Terminals
D.Registration, Admission, and Status of H.323 Terminals
Answer: D

Polycom   certification 1K0-002   1K0-002 examen

NO.12 Which of the following is Line Coding used for Primary Rate T1?
A.BRTZ-AMI
B.B7S
C.HDB3
D.B8ZS
E.Pulse Stuffing
Answer: D

Polycom examen   1K0-002   1K0-002

NO.13 The term "Full Motion Video" typically refers to a transmission of video at which rate?
A.Video Frames at a rate of less than 10 per second
B.Video Frames at a rate of greater than 100 per second
C.Video Frames at a rate of less than 24 per second
D.Video Frames at a rate of 24 or more per second
Answer: D

Polycom examen   certification 1K0-002   certification 1K0-002   1K0-002   1K0-002   1K0-002

NO.14 When required, improperly matched impedance will cause problems with__________.
A.Audio signal levels
B.feedback frequency filtering
C.room acoustics
D.all of the above
Answer: A

Polycom   certification 1K0-002   certification 1K0-002

NO.15 Which of the following describes audio analog clipping?
A.A distorted signal voltage from a microphone after passing through an amplifier with excessive gain
applied.
B.An accurate signal voltage from a microphone after passing through an amplifier without any gain
applied.
C.Audio amplifiers with too high an impedance.
D.A clean signal passed through an Audio amplifier with excessive AC line voltage.
Answer: A

certification Polycom   1K0-002   certification 1K0-002   certification 1K0-002   1K0-002 examen   1K0-002 examen

NO.16 Which of the following are Call Establishment packets? (Select three of the following options.)
A.Receiver Ready
B.Disconnect Request
C.Release Request
D.Setup
E.Connect Acknowledged
F.Receiver Not Ready
G.Alerting
H.Release Complete
Answer: DEG

Polycom examen   certification 1K0-002   1K0-002   certification 1K0-002

NO.17 Which audio coding standards are described by H.323?
A.G.711, G.721, G.722, and G.723
B.G.711, G.722, G.728, and G.726
C.G.711, G.722, G.728, G.723.1, and G.729
D.G.711, G.722, G.728, and G.723.1
Answer: C

Polycom   1K0-002   1K0-002   certification 1K0-002

NO.18 How is noise measured?
A.Volume
B.Distance
C.Amplitude
D.Impedance
Answer: AC

certification Polycom   certification 1K0-002   1K0-002

NO.19 Which of the following is the channel used to carry the Audio for H.320 Terminals?
A.Channel 6
B.Channel 4
C.Channel 3
D.Channel 2
E.Channel 1
Answer: E

certification Polycom   1K0-002   certification 1K0-002   1K0-002

NO.20 What are two other names for a Frame Relay Network?
A.RS-232
B.V.35
C.Broadband
D.Virtual Private Network
E.802.3 Medium Access Control Network
Answer: CD

certification Polycom   certification 1K0-002   certification 1K0-002   1K0-002 examen   1K0-002

Pass4Test est un site à offrir les Q&As de tout les tests Certification IT. Chez Pass4Test, vous pouvez trouvez de meilleurs matériaux. Nos guides d'étude vous permettent de réussir le test Certification Polycom 1K0-002 sans aucune doute, sinon nous allons rendre votre argent d'acheter la Q&A et la mettre à jour tout de suite, en fait, c'est une situation très rare. Bien que il existe plusieurs façons à améliorer votre concurrence de carrière, Pass4Test est lequel plus efficace : Moins d'argent et moins de temps dépensés, plus sûr à passer le test Certification. De plus, un an de service après vendre est gratuit pour vous.

Dernières Oracle 1Z0-141 examen pratique questions et réponses

Aujourd'hui, il y a pleine de professionnels IT dans cette société. Ces professionnels sont bien populaires mais ils ont à être en face d'une grande compétition. Donc beaucoup de professionnels IT se prouver par les tests de Certification très difficile à réussir. Pass4Test est voilà pour offrir un raccourci au succès de test Certification.

Le Certificat Oracle 1Z0-141 est un passport rêvé par beaucoup de professionnels IT. Le test Oracle 1Z0-141 est une bonne examination pour les connaissances et techniques professionnelles. Il demande beaucoup de travaux et efforts pour passer le test Oracle 1Z0-141. Pass4Test est le site qui peut vous aider à économiser le temps et l'effort pour réussir le test Oracle 1Z0-141 avec plus de possibilités. Si vous êtes intéressé par Pass4Test, vous pouvez télécharger la partie gratuite de Q&A Oracle 1Z0-141 pour prendre un essai.

Si vous êtes intéressé par l'outil formation Oracle 1Z0-141 étudié par Pass4Test, vous pouvez télécharger tout d'abord le démo. Le service de la mise à jour gratuite pendant un an est aussi offert pour vous.

Avec l'aide du Pass4Test, vous allez passer le test de Certification Oracle 1Z0-141 plus facilement. Tout d'abord, vous pouvez choisir un outil de traîner de Oracle 1Z0-141, et télécharger les Q&A. Bien que il y en a beaucoup de Q&A pour les tests de Certification IT, les nôtres peuvent vous donner non seulement plus de chances à s'exercer avant le test réel, mais encore vous feront plus confiant à réussir le test. La haute précision des réponses, la grande couverture des documentations, la mise à jour constamment vous assurent à réussir votre test. Vous dépensez moins de temps à préparer le test, mais vous allez obtenir votre certificat plus tôt.

Un bon choix de l'outil à se former est le point essentiel à passer le test Oracle 1Z0-141, et les documentations à propos de rechercher le test Oracle 1Z0-141 est toujours une part plus importante pendant la préparation de test Certification. Les Q&As offertes par les experts de Pass4Test sont presque même que les tests réels. Pass4Test est un site web particulièrement en apportant les facilités aux gens qui veulent passer le test Certification.

Code d'Examen: 1Z0-141
Nom d'Examen: Oracle (Oracle9i forma Developer:build internet applications)
Questions et réponses: 138 Q&As

Aujoud'hui, dans cette indutrie IT de plus en plus concurrentiel, le Certificat de Oracle 1Z0-141 peut bien prouver que vous avez une bonne concurrence et une space professionnelle plus grande à atteindre. Dans le site Pass4Test, vous pouvez trouver un outil de se former très pratique. Nos IT experts vous offrent les Q&As précises et détaillées pour faciliter votre cours de préparer le test Oracle 1Z0-141 qui vous amenera le succès du test Oracle 1Z0-141, au lieu de traivailler avec peine et sans résultat.

1Z0-141 Démo gratuit à télécharger: http://www.pass4test.fr/1Z0-141.html

NO.1 To centralize some of your processing, you decide to write PL/SQL library modules that contain
procedures that can be called from form triggers or menu items. You need to populate some fields
based on values in other fields. Which code do you use?
A.IF FIND_ITEM('ORDERS.order_total') > 10000 THEN FIND_ITEM('ORDERS.large_order') := 'Y';
MESSAGE('WARNING - large order!'); END IF;
B.IF :ORDERS.order_total > 10000 THEN :ORDERS.large_order := 'Y'; MESSAGE('WARNING - large
order!'); END IF;
C.IF 'ORDERS.order_total' > 10000 THEN 'ORDERS.large_order' := 'Y'; MESSAGE('WARNING - large
order!'); END IF;
D.IF :ORDERS.order_total > 10000 THEN COPY('ORDERS.large_order','Y'); MESSAGE('WARNING -
large order!'); END IF;
E.IF NAME_IN('ORDERS.order_total') > 10000 THEN COPY('Y','ORDERS.large_order');
MESSAGE('WARNING - large order!'); END IF;
Correct:E

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.2 The two-column LOCATION Record Group has 10 rows. At run time, the user wants to mark two
or more LOCATION records for use by another Forms Builder object. The rows will be used to
construct a WHERE clause for a subsequent data block query. Which built-in enable individual
rows to be marked?
A.ADD_GROUP_COLUMN
B.SET_RECORD_PROPERTY
C.GET_GROUP_SELECTION
D.SET_GROUP_SELECTION
E.RESET_GROUP_SELECTION
F.GET_GROUP_RECORD_NUMBER
Correct:D

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.3 You have the Orders form open in Forms Builder. You create an object group in the Orders form
and you try to drag various components in the Object Navigator to the object group. Which two
components will you be unable to place in the object group? (Choose two.)
A.the Orders block of the Orders form
B.the Order_CV canvas of the Orders form
C.the When-New-Item-Instance trigger of the Order_Items.Quantity item in the Orders from
D.the When-New-Form-Instance trigger of the Orders form
E.the Product_Id item in the Order_Items block of the Orders form
Correct:C E

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.4 View the Exhibit. The EMPLOYEES table contains 100 records. You are developing a Human
Resources form that has an Employees block with properties as shown in the exhibit. When you
run the form and execute a query in the Employees block, approximately how many network
round trips will be made to the server before records are displayed in the block?
A.1
B.2
C.10
D.50
E.100
Correct:C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.5 View the Exhibit. You are running a form in debug mode, but you have not set any breakpoints
in the code. You click a button that invokes the code shown in the exhibit. While the code
executes, you decide to examine the variable values in the loop. Which menu items in the Forms
Builder Debug menu would you choose?
A.Stop, Debug Windows > Variables
B.Pause, Debug Windows > Variables
C.Stop, Debug Windows > Form Values
D.Pause, Debug Windows > Form Values
E.Step Into, Debug Windows > Variables
F.Step Into, Debug Windows > Form Values
Correct:B

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.6 Consider the following scenario: In a multiform application, the user started in FormA. 1. From
FormA, the user invoked FormB using CALL_FORM. 2. From FormB, the user invoked FormC
using OPEN_FORM. 3. From FormC, the user invoked FormD using OPEN_FORM. 4. From FormB,
the user invoked FormE using CALL_FORM. There is an additional form in the application, called
FormF. Which statement is true?
A.FormF can be invoked from FormC using CALL_FORM.
B.FormF can be invoked from FormA using OPEN_FORM.
C.FormF can be invoked from FormD using CALL_FORM.
D.FormF can be invoked from FormE using CALL_FORM.
E.FormF can be invoked from FormB using OPEN_FORM.
Correct:D

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.7 LibraryA and LibraryB are in the working directory of the Employees form. Library A is attached
to the Employees form. There is a stored procedure in the database called Raise_Salary which
must be called without any parameters. There is no Raise_Salary procedure in the form or in the
attached library. A When-Button-Pressed trigger in the Employees form contains this code:
raise_salary; Where does Forms search for the Raise_Salary procedure?
A.first in the attached library, then in the database
B.first in the form module, then in the attached library
C.first in the form module, then in the attached library, then in the database
D.first in the form module, then in the attached library, then in other libraries in the working directory, then
in the database
E.in the form module only
F.in the attached library only
G.in the database only
Correct:C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.8 Which two statements about a Non-Query Record Group are true? (Choose two.)
A.The Record Group is associated with a query at run time or at design time.
B.The Record Group can be created and modified only at run time.
C.The Record Group can be created and modified only at design time.
D.The Record Group can be created and modified at design time or at run time.
E.You can modify the structure of this Record Group by adding columns and rows.
F.The Record Group is associated with a query only at design time.
Correct:B E

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.9 You want to create a calculated item in the Control block of the Human Resources form. This
item will contain the total of employee salaries for employees in a particular department. Which
statement is true about how to create the calculated item?
A.You can create it by first creating a text item and then changing the item type.
B.You can create it in the Layout Editor using a special tool that creates a calculated item.
C.You can create it by first creating a display item and then setting appropriate properties in its Calculation
property group.
D.You can create it in the Layout Editor by selecting the Salary item of the Employees block, selecting the
Control block from the block list, clicking the Text Item tool, and drawing a text item on the canvas to
automatically calculate a sum of the selected Salary item.
Correct:C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.10 In a multiform application, one form must invoke another. The form modules are called
Customers and Orders internally, but the compiled files are saved as CUST.FMX and ORD.FMX,
respectively. There is a button in the Customers form with a When-Button-Pressed trigger to
invoke the Orders form. There is a requirement that only one Orders form can be running at a time,
so the trigger must check to see if the form is already open. If it is open, the focus must be sent to
it. If it is not open, it has to be opened. Which of these trigger codes will achieve the required
functionality?
A.IF NOT FIND_FORM('ord') THEN OPEN_FORM('ord'); ELSE GO_FORM('orders'); END IF;
B.IF ID_NULL(FIND_FORM('ord')) THEN OPEN_FORM('orders'); ELSE GO_FORM('ord'); END IF;
C.IF ID_NULL(FIND_FORM('orders')) THEN OPEN_FORM('ord'); ELSE GO_FORM('orders'); END IF;
D.IF NOT FIND_FORM('orders')) THEN OPEN_FORM('orders'); ELSE GO_FORM('ord'); END IF;
Correct:C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.11 You created a query Record Group at design time. Which built-in can you use to execute the
query defined in the Record Group object?
A.ADD_GROUP_ROW
B.POPULATE _GROUP
C.ADD_GROUP_COLUMN
D.SET_GROUP_SELECTION
E.CREATE_GROUP_FROM_QUERY
F.POPULATE _GROUP_WITH_QUERY
Correct:B

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.12 In the Orders form you define five LOVs, and you create one button to be used to display any of
the LOVs. The button is enabled only when the user navigates to a field with an attached LOV. If
the user supplies only part of the required input data, the LOVs use that input as search criteria to
automatically reduce the LOV contents. If the LOVs hold only one value that can possibly match
user-supplied input, then the LOVs auto-complete the input field and are not displayed. Which
built-in and properties should you use to display the LOVs?
A.Use the List_Values(RESTRICT) built-in, and set the Mouse Navigate property value to NO.
B.Use the List_Values(RESTRICT) built-in, and set the Mouse Navigate property value to YES.
C.Use the List_Values(NO_RESTRICT) built-in, and set the Mouse Navigate property value to NO.
D.Use the List_Values(NO_RESTRICT) built-in, and set the Mouse Navigate property value to YES.
E.Use the Show_LOV built-in, and set the Mouse Navigate property value to YES.
F.Use the Show_LOV built-in, and set the Mouse Navigate property value to NO.
Correct:A

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.13 What type of message indicates a Forms message that cannot be suppressed?
A.a Busy message
B.a level 0 message
C.a Working message
D.a level 25 message
E.a level 50 message
F.a message with a level less than 0
G.a message with a level greater than 25
H.a message with a level greater than 50
Correct:G

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.14 You are developing a Human Resources form for HR clerks to insert, update, and delete
records from the EMPLOYEES table. When the user commits records, Forms displays the default
informative message "FRM-40400: Transaction complete: records applied and saved." You want
to replace that with the message "Records inserted: Records updated: Records deleted: ", where
represents the number of records inserted, updated, and deleted. Which triggers must you create
or modify to accomplish this?
A.On-Message only
B.Post-Commit and On-Message
C.Post-Database-Commit and On-Message
D.When-Validate-Record and On-Message
E.Post-Insert, Post-Update, Post-Delete, and On-Message
Correct:E

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.15 Which two statements correctly describe the relationship between a content canvas and a
window? (Choose two.)
A.Only one content canvas can be associated with a window.
B.Only one content canvas at a time can appear in a window.
C.One or more content canvases can be associated with a window.
D.A content canvas can be associated with two or more windows.
E.A content canvas cannot be larger than the window with which it is associated.
F.A maximum of two content canvases can appear in a window at the same time.
Correct:B C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.16 You need to resize the INVENTORY tab canvas. The Viewport Width and Height properties are
200 and 300. You change the values to 150 and 120, respectively. What implication may this have
on your design?
A.Some tab pages may be obscured at run time.
B.By decreasing the Viewport Width property, some tab pages may be deleted.
C.Objects previously within the borders of a tab page may fall outside the tab page border, and you will
get compilation errors.
D.Objects previously within the borders of a tab page may fall outside the tab page border and will be
visible at run time only by navigating to them programmatically.
E.Objects previously within the borders of a tab page may fall outside the tab page border and will be
assigned to the null canvas.
Correct:C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.17 Your company assigns three possible credit ratings to customers: Poor, Good, and Excellent
(represented numerically by 1, 2, and 3). The DBA has just added a RATING column to the
CUSTOMERS table and has asked you to add an item to your form so that credit ratings can be
recorded. To restrict data entry clerks to one of these three values, you decide to create a radio
group for the Rating item. You want to allow for an undetermined (Null) credit rating, and users
should be able to update the credit rating from a value to an undetermined rating. How can you
implement this?
A.Create three radio buttons for each of the credit ratings, and set the Mapping of Other Values for the
radio group to Null.
B.Create three radio buttons for each of the credit ratings, and set the Mapping of Other Values for the
radio group to one of the credit rating values.
C.Create four radio buttons, and leave blank the value for the undetermined credit rating.
D.Choose a different type of input item, because radio groups do not allow entry and update of null values.
Correct:C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.18 The Warehouse.fmb module contains two data blocks. You want to display items from each
data block on separate content canvases. You must ensure that both content canvases are visible
together at run time. Which two statements about content canvases are correct? (Choose two.)
A.A window cannot display more than one content canvas during a run time session.
B.A content canvas can be associated with a window by setting the Window property of the canvas.
C.Two or more content canvases can be displayed by associating each of them with a different window.
D.A content canvas can be associated with a window by setting the Primary Canvas property of the
window.
E.A content canvas can be associated with two or more windows by setting the Primary Canvas property
of the windows.
F.Two or more content canvases can be displayed by setting their viewports to be smaller than the
window with which they are to be associated.
Correct:B C

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.19 View the Exhibit. You are coding a When-New-Form-Instance trigger to populate a hierarchical
tree item called Emp_Tree that should initially appear as shown in the exhibit. Mr. King, the
president of the company, is the only employee who does not have a manager. In the trigger, you
declare a variable called rg_emps that is of the RECORDGROUP data type. You will use this record
group to populate the tree. You use the following code to create the record group: rg_emps :=
Create_Group_From_Query('rg_emps', 'select 1, level, last_name, NULL, to_char(employee_id)
from employees connect by prior employee_id = manager_id start with manager_id is null'); You
then programmatically populate the record group, and then populate the tree with the record
group. You run the form to test it. Will the tree initially appear as shown? If not, why not?
A.Yes, the tree will appear as shown.
B.No. The first element selected in the select statement should be 4 because you want four levels of the
tree to be displayed.
C.No. You should eliminate the last element selected in the select statement, because you do not want to
display the employee ID.
D.No. The "connect by" statement should be "connect by prior manager_id = employee_id".
Correct:A

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

NO.20 View the Exhibit. You are modifying the New_Orders form. You want to change the navigation
order of the Orders block so that Order_Status is between Order_Date and Order_Mode in the
navigation order. You attempt to drag the Order_Status item in the Object Navigator (as shown in
the exhibit), but Forms does not allow you to release the item in the desired position. Why is this
happening, and what can you do to change the navigation order?
A.Because the data block is subclassed, you cannot change the order of items in the object navigator, but
you can change item properties to affect the navigation order.
B.Because the data block is subclassed, you can only drag objects to a lower position in the Object
Navigator, so you can drag Order_Mode and Customer_Id to a position below Order_Status.
C.Because the data block is subclassed, you will have to delete the object and then create it again in the
desired position.
D.Because the item is subclassed, you cannot change any of its properties.
Correct:A

Oracle examen   1Z0-141   1Z0-141 examen   1Z0-141   1Z0-141 examen

Pass4Test peut vous fournir un raccourci à passer le test Oracle 1Z0-141: moins de temps et efforts dépensés. Vous trouverez les bonnes documentations de se former dans le site Pass4Test qui peut vous aider efficacement à réussir le test Oracle 1Z0-141. Si vous voyez les documentations dans les autres sites, c'est pas difficile à trouver qu''elles sont venues de Pass4Test, parce que lesquelles dans Pass4Test sont le plus complété et la mise à jour plus vite.

Le dernier examen Oracle 1Z1-403 gratuit Télécharger

Si vous traviallez dur encore pour préparer le test de Oracle 1Z1-403 et réaliser votre but plus vite, Pass4Test peut vous donner une solution plus pratique. Choisir la Q&As de Pass4Test qui vous assure que c'est pas un rêve à réussir le test Oracle 1Z1-403.

Les experts de Pass4Test ont fait sortir un nouveau guide d'étude de Certification Oracle 1Z1-403, avec ce guide d'étude, réussir ce test a devenu une chose pas difficile. Pass4Test vous permet à réussir 100% le test Oracle 1Z1-403 à la première fois. Les questions et réponses vont apparaître dans le test réel. Pass4Test peut vous donner une Q&A plus complète une fois que vous choisissez nous. D'ailleurs, la mise à jour gratuite pendant un an est aussi disponible pour vous.

Code d'Examen: 1Z1-403
Nom d'Examen: Oracle (Enterprise Linux System Administration)
Questions et réponses: 115 Q&As

1Z1-403 est un test de Oracle Certification, donc réussir 1Z1-403 est le premier pas à mettre le pied sur la Certifiction Oracle. Ça peut expliquer certiainement pourquoi le test Oracle 1Z1-403 devient de plus en plus chaud, et il y a de plus en plus de gens qui veulent participer le test 1Z1-403. Au contraire, il n'y a que pas beaucoup de gens qui pourrait réussir ce test. Dans ce cas, si vous vous réfléchissez étudier avec une bonne Q&A?

Les spécialiste profitant leurs expériences et connaissances font sortir les documentations particulière ciblées au test Oracle 1Z1-403 pour répondre une grande demande des candidats. Maintenant, la Q&A plus nouvelle, la version plus proche de test Oracle 1Z1-403 réel est lancée. C'est possible à réussir 100% avec le produit de Oracle 1Z1-403. Si malheureusement, vous ne passez pas le test, votre argent sera tout rendu. Vous pouvez télécharger le démo gratuit en Internet pour examiner la qualité de Q&A. N'hésitez plus d'ajouter le produit au panier, Pass4Test peut vous aider à réussir le rêve.

Pour l'instant, vous pouvez télécharger le démo gratuit de Q&A Oracle 1Z1-403 dans Pass4Test pour se former avant le test Oracle 1Z1-403.

1Z1-403 Démo gratuit à télécharger: http://www.pass4test.fr/1Z1-403.html

NO.1 Match the following scripts and their applicability:
1. ./.xinitrc a) applies if X is started directly, or if ./.xsession does not exist and X is started viaa display
manager
2) ./.xsession b) applies when X is started directly
3) ./.Xclients c) applies when X is started from a display manager
A. 1-b, 2-a, 3-c
B. 1-b, 2-c, 3-a
C. 1-a, 2-b, 3-c
D. 1-a, 2-c, 2-b
Answer: B

Oracle examen   certification 1Z1-403   1Z1-403

NO.2 The system you logged in is running in runlevel 5. You want to customize X and want to have a
consistent environment regardless of how X is started.
Which step is recommended?
A. Delete the ~/.Xclients file and use the ~/.xinitrc file.
B. Delete ~/.Xclients and ~/.xsession and use the ~/.xinitrc file.
C. Delete ~/.xinitrc and ~/.xsession and use the ~/.Xclients file.
D. Delete ~/.xinitrc and ~/.Xclients and use the ~/.xsession file.
E. Delete the ~/.Xclients file and use both ~/.xinitrc and ~/.xsession files.
Answer: C

certification Oracle   1Z1-403   1Z1-403   1Z1-403   1Z1-403

NO.3 Which two statements correctly define Virtual Network Computing (VNC)? (Choose two.)
A. It is a client/server application.
B. It does not provide any protection to remote X connections.
C. It allows entire desktops to be displayed and controlled remotely.
D. It is used to connect to a remote Linux machine only from a Linux machine.
Answer: AC

Oracle examen   1Z1-403   1Z1-403 examen   certification 1Z1-403

NO.4 To find the value of the DISPLAY environment variable, you issue the following command:
[rooot@server1]#echo $DISPLAY
0
[rooot@server1]#
What do you interpret from the environment variable's value?
A. Graphical applications would make a local UNIX socket connection.
B. Graphical applications would make a remote UNIX socket connection.
C. Graphical applications would make the first network connection to TCP port 6001.
D. Graphical applications would make the second network connection to TCP port 6000.
Answer: A

Oracle examen   1Z1-403   certification 1Z1-403   1Z1-403 examen   1Z1-403   1Z1-403

NO.5 You have trouble in booting the Linux system and want to troubleshoot it. To find the cause, you want to
make the kernel start the bash program in place of init.
What would you do to achieve this objective? (Choose all that apply.)
A. Pass S as the kernel parameter to the grub menu.
B. Pass 1 as the kernel parameter to the grub menu.
C. Pass init=/bin/bash as the kernel parameter to the grub menu.
D. Pass INIT=/sbin/bash as the kernel parameter to the grub menu.
Answer: C

Oracle   1Z1-403   1Z1-403 examen   1Z1-403 examen

NO.6 You are currently working in runlevel 3. The X server is configured correctly and the default runlevel is
set to 5 in the /etc/inittab file. To find the default desktop you issue the following command:
[root@server1]#cat /etc/sysconfig/desktop
[root@server1]#
You find the file empty. What will be the effect when you try to go to the runlevel 5?
A. The system defaults to kdm and launch KDE.
B. The system defaults to xdm and launch GNOME.
C. The system defaults to gdm and launch GNOME
D. The system will fail to log into the graphical mode.
Answer: C

certification Oracle   1Z1-403 examen   1Z1-403   1Z1-403   1Z1-403

NO.7 You are installing Oracle Enterprise Linux on a machine and are at the stage of swap filesystem
creation. You want to ensure that swap contains twice the amount of RAM available in the system but do
not know the total available memory.
You can use the free command but do not have a prompt to execute the command. Which key
combination would take you to a command prompt?
A. [Ctrl]+[Alt]+[F2]
B. [Ctrl]+[Alt]+[F3]
C. [Ctrl]+[Alt]+[F4]
D. [Ctrl]+[Alt]+[F1]
Answer: A

Oracle   1Z1-403   1Z1-403   1Z1-403 examen   1Z1-403 examen

NO.8 You want to configure the display login program to display the face browser of user accounts for
system logon.
Which two display managers support this feature? (Choose two.)
A. gdm
B. kdm
C. twm
D. xdm
Answer: AB

Oracle examen   certification 1Z1-403   certification 1Z1-403

NO.9 You have the default syslogd configuration in your system. You plugged in a USB keydrive into the
system.
Which command would help you to find the bus and the device number of the keydrive?
A. lsusb
B. lsmod
C. insmod
D. cat /proc/self/mounts
Answer: A

Oracle   1Z1-403   1Z1-403   1Z1-403 examen   certification 1Z1-403

NO.10 Identify two true statements about Virtual Network Computing (VNC). (Choose two.)
A. It is a client/server application.
B. It allows entire desktops to be displayed remotely.
C. It does not provide any protection to remote X connections.
D. It allows applications to be run remotely and displayed only locally.
E. It is used to connect to a remote Linux machine only from a Linux machine.
Answer: AB

Oracle examen   certification 1Z1-403   1Z1-403 examen

NO.11 The organization you work for wants to set up a new machine with Oracle Enterprise Linux and has
three requirements:
1. The filesystem should be consistent.
2: The old data should not reappear in the files after an unclean shutdown.
3: The filesystem data should be written to the disk before metadata.
In order to meet these requirements, you have set the ext3 journaling mode as data=writeback.
Which requirements have you met?
A. only 1
B. only 2
C. only 3
D. both 1and 3
E. both 2 and 3
F. both 1 and 2
G. All the three requirements are met.
Answer: A

certification Oracle   1Z1-403   1Z1-403 examen   1Z1-403   1Z1-403   1Z1-403 examen

NO.12 You are in runlevel 5 working at the tty1 terminal on server1. To configure the gdm display manager,
you issue the following command but this results in an error as shown below:
[root@server1]#gdmsetup
(gdmsetup:6326): Gtk-WARNING **: cannot open display:
What could be the reason for the error?
A. The /etc/inittab file is corrupted.
B. The Xserver on the system is not running.
C. The xfs service is not running on the system.
D. The runlevel in the /etc/inittab file is missing.
E. The command only works in a graphical environment.
Answer: E

Oracle   certification 1Z1-403   1Z1-403   certification 1Z1-403   1Z1-403 examen

NO.13 You are installing Oracle Enterprise Linux in the Graphical User Interface(GUI) mode on your machine
and are at the package group selection panel. You do not want to customize the packages to be installed.
Therefore, select the option "install default software packages."
Which three packages would be in the default selection group? (Choose three.)
A. GNOME
B. Webserver
C. System Tools
D. Printer Support
E. Windows File Server (SMB)
Answer: ABE

certification Oracle   1Z1-403   1Z1-403 examen   certification 1Z1-403   1Z1-403   1Z1-403 examen

NO.14 You have written a udev rule as shown below:
KERNEL=="fb[0-9]*", NAME="fb/%n", SYMLINK+="%k", GROUP="video"
KERNEL=="fd[0-9]*", OWNER="john"
Which two statements are true? (Choose two.)
A. The user john would own all the floppy devices.
B. The user john would own all the floppy and frame buffer devices.
C. The video group on the system would own all the floppy devices.
D. The video group on the system could be controlled by john only.
E. The video group on the system would own all the frame buffer devices.
Answer: AE

Oracle examen   certification 1Z1-403   certification 1Z1-403

NO.15 Which two statements are true about an X server? (Choose two.)
A. Multiple X servers can be run on the same host.
B. The first X server on a remote host listens on port 6000.
C. The first X server on a remote host listens on port 6001.
D. Only a single X server can run on a machine at any given point of time.
Answer: AB

Oracle   1Z1-403   1Z1-403   1Z1-403 examen

NO.16 You have bound your system to the Network Information Service (NIS) domain ORACLE and all
client-side configurations are done. The users report a problem that they are not able to log in through
NIS accounts, whereas local users are successfully authenticated, after the system reboots.
As a Linux administrator, you executed the nisdomainname command and you get the output "(none)",
and no traces of yp are found in the /var/log/messages file.
What would you do to resolve this error? (Choose all that apply.)
A. Re-create the NIS domain on the server that runs the NIS domain ORACLE.
B. Restart the ypserv service on the server that runs the NIS domain ORACLE.
C. Restart the network service on the server that runs the NIS domain ORACLE.
D. Use the chkconfig command to set the ypbind service to be on at the desired runlevels.
E. Use the ntsysv command to select the ypbind service to be automatically started with the desired
runlevels.
Answer: DE

Oracle   1Z1-403   1Z1-403   1Z1-403 examen

NO.17 You are installing Oracle Enterprise Linux in the Graphical User Interface (GUI) mode on your
machine. From the package selection screen, you select one of the package groups.
Which two statements are NOT true in this context? (Choose two.)
A. Only the optional packages would be installed.
B. All the optional packages are also installed along with the package group.
C. Both the base packages and all the optional packages would be installed.
D. The selection of a base package does not depend on an optional package.
E. Only the base packages and the auto-selected optional packages would be installed.
Answer: AB

Oracle   1Z1-403   certification 1Z1-403   1Z1-403   1Z1-403 examen

NO.18 Which three statements are true about the Linux swap file system? (Choose three.)
A. The Linux user data cannot be written to the Linux swap space.
B. High-priority swap spaces would be exhausted only after exhausting swap spaces with equal priorities.
C. The Linux kernel code and data are not swappable and are never moved to swap file system from
physical memory.
D. If too much space is allocated for swap, errant programs may run for an extended time and use up
RAM and swap space.
E. When most of the system's real memory is in use, and there is a need for more, some data would be
moved into the swap file system to free real RAM memory for use by applications or for kernel use, such
as for driver buffers, files, or network packets.
Answer: CDE

Oracle examen   1Z1-403   1Z1-403   1Z1-403 examen   1Z1-403

NO.19 You have a /dev/md1 redundant array of independent disks (RAID) array on your system as shown
below:
[root@server1 ~]# cat /proc/mdstat
Personalities : [raid 5]
md1 : active raid5 sdd1[3] sdc1[1] sdb1[0]
594176 blocks level 5, 64k chunk, algorithm 2 [3/2] [UU_]
unused devices:
The /dev/md1 RAID array is mounted on /data. You issued the command:
mdadm --fail /dev/md1 /dev/sdc1 /dev/sdb1
Which statements are true about the RAID array after you issue this command? (Choose all that apply.)
A. The kernel would report a Buffer I/O error on the RAID device /dev/md1.
B. The RAID array would be destroyed but the data could be recovered from the RAID disks.
C. The RAID array would be completely destroyed including the super block of the file system.
D. The RAID array could be reconstructed using new RAID partitions that synchronize with the /dev/sdd1
disk partition.
Answer: AC

Oracle   1Z1-403   certification 1Z1-403   1Z1-403

NO.20 During the installation of Oracle Enterprise Linux, you want to customize the packages to be installed.
You select one of the package groups that has both base and optional packages.
Which statement about the packages is true?
A. Only the optional packages would be installed.
B. All the base packages and the optional packages would be installed.
C. The selection of a base package does not depend on an optional package.
D. Only the base packages and the auto selected optional packages would be installed.
Answer: D

Oracle   certification 1Z1-403   certification 1Z1-403

NO.21 You are downloading a text file from the Web into a directory on an ext2 filesystem. The system crash
after the data blocks are written onto the disk but before the metadata is written.
What is the status of the file after this transaction?
A. The file contents can be seen only using the cat command.
B. The file can be accessed using only the vi editor and does not require to be repaired using fsck.
C. The file cannot be accessed and must be repaired using fsck inorder to access the file contents.
D. The file contents can be accessed using only the emacs text editor and does not require to be repaired
using fsck .
Answer: C

Oracle examen   1Z1-403   1Z1-403 examen   1Z1-403 examen   1Z1-403 examen

NO.22 You want to make Oracle Enterprise Linux coexist with Microsoft Windows on your machine. You
install Oracle Enterprise Linux first with the default boot loader configuration and then install Microsoft
WindowsXP. You reboot the system after installation and the system boots directly into the Windows
operating system without showing the Grand Unified Boot Loader (GRUB) menu.
Which two steps could you have taken to avoid this situation? (Choose two.)
A. Install Oracle Enterprise Linux first with the boot loader on MBR and then install Microsoft WindowsXP.
B. Install Microsoft WindowsXP first and then install Oracle Enterprise Linux with the boot loader on
Master Boot Record (MBR).
C. Install Microsoft WindowsXP first and then install Oracle Enterprise Linux with the boot loader at the
first sector of the /boot partition.
D. Install Oracle Enterprise Linux first with the boot loader at the first sector of the /boot partition and then
install Microsoft WindowsXP.
Answer: BC

Oracle examen   1Z1-403 examen   1Z1-403 examen   certification 1Z1-403   1Z1-403

NO.23 You work for XYZ organization and are setting up a new Linux box. The organization wants the user's
data on the system to be safe even in the event of a crash of the root filesystem.
Which step do you think would help the administrator achieve the organization's objective?
A. Have /opt directory on its own filesystem with the filesystem being ext3.
B. Have /home directory on its own filesystem with the filesystem being ext3.
C. Have /var directory on its own filesystem and all other filesystems under / (root filesystem).
D. Have /usr directory on its own filesystem and all other filesystems under / (root filesystem).
Answer: B

Oracle   1Z1-403   1Z1-403

NO.24 You are logged in to server1 and want to allow remote connections to server1 through X Display
Manager Control Protocol (XDMCP). You change the entry "Enable=false" to "Enable=true" in the
"[xdmcp]" section of the gdm.conf configuration file.
To test the XDMCP configuration, you log in to station1 as smith and try to connect to server1 by using the
following command:
[smith@station1]$ X -query server1.example.com :1
What is the result?
A. A connection to the gdm display manager on server1.example.com would be established using direct
XDMCP.
B. A connection to the xdm display manager on server1.example.com would be established using direct
XDMCP.
C. A connection to the gdm display manager on server1.example.com would be established using indirect
XDMCP.
D. A connection to the xdm display manager on server1.example.com would be established using indirect
XDMCP.
Answer: A

Oracle   1Z1-403   1Z1-403   1Z1-403 examen   certification 1Z1-403

NO.25 You want to install the ieee80211 module on your Linux system. While building the module, you receive
the following error:
Make [2]: *** [ieee 80211-1.2.17/ieee80211_module.o] Error 1
Make [1]: *** [_module_/ieee80211-1.2.17] Error 2
Make [1]: Leaving directory '/usr/src/kernels/2.6.9-42.0.0.0.1.EL-i686'
Make: *** [modules] Error 2
What do you infer from this error?
A. The ieee80211 module conflicts with the current kernel version.
B. The dependency modules for ieee80211 are not installed on the system.
C. The ieee80211 module given is not supported by the machine architecture.
D. The kernel source package, which must be installed to compile external device drivers, is not installed
on the system.
Answer: D

Oracle   1Z1-403   1Z1-403   1Z1-403   certification 1Z1-403

NO.26 The user smith executed the mozilla command, located in /usr/bin and owned by the root user.
Which two statements are true? (Choose two.)
A. When mozilla needs to access certain files, the access would be determined by root's permissions.
B. When started by smith, smith would own the initial mozilla program and all processes started by the
initial process.
C. When mozilla needs to access certain files, the access would be determined by smith's permissions
and not by root's.
D. When started by the user smith, the user smith would own the initial mozilla program and all processes
started by the initial process would be owned by the system user associated with mozilla.
Answer: BC

Oracle   certification 1Z1-403   certification 1Z1-403   1Z1-403 examen   certification 1Z1-403

NO.27 As an administrator, you execute the following command to verify the integrity of mysql:
[root@server1]#rpm -Va mysql
S.5....T c /etc/my.cnf
What attributes of the /etc/my.cnf file have changed?
A. The permissions, user ownership, and file type have changed.
B. The permissions, group ownership, and file type have changed.
C. The user ownership, group ownership, and file type have changed.
D. The MD5 signature, file size, and modification time have changed.
Answer: D

Oracle   certification 1Z1-403   certification 1Z1-403   1Z1-403

NO.28 Being the system administrator for XYZ corporation, you have been given the task of setting up a new
Linux box.
The new machine has to meet the following criteria:
1. There should be a provision for expanding one filesystem without affecting the other filesystems.
2: The user data should be safe in the event of root file system crash.
3: The filesystems should support journaling.
Which three actions must you take to meet all the requirements? (Choose three.)
A. Use ext3 as the filesystem.
B. Use ext2 as the filesystem.
C. Have the /usr/ directory on its own filesystem.
D. Have the /home/ directory on its own filesystem.
E. Separate the directory structure across multiple partitions.
Answer: ADE

Oracle   1Z1-403 examen   1Z1-403 examen   1Z1-403 examen

NO.29 While importing user accounts in bulk along with passwords using the newusers command, you noticed
that user passwords are saved in the /etc/shadow file in the crypt format.
How would you enable the newusers command to use the preferred MD5 format when writing passwords
to the /etc/shadow file?
A. Add the MD5_ENAB=yes line to the /etc/login.defs file.
B. Add the MD5_CRYPT yes line to the /etc/login.defs file.
C. Add the MD5_CRYPT_ENAB yes line to the /etc/login.defs file.
D. Add the MD5_CRYPT_ENAB yes line to the /etc/security/limits.conf file.
Answer: C

Oracle   1Z1-403   1Z1-403   1Z1-403   certification 1Z1-403

NO.30 You have server1 configured as the Virtual Network Computing (VNC) server. There is no firewall
between server1 and station1. You have logged on to station1 as root and want to connect to server1
using VNC. You issue the following command:
[root@station1]# vncviewer server1.2
Which statement is true?
A. server1 provides an encrypted connection to station1.
B. The xinetd service on station1 is not mandatory for the VNC connection.
C. The desktop of server1 is shared with station1 without prompting for a password.
D. station1 is prompted for a password and the desktop of server1 is shared with station1 only when the
correct password is entered.
Answer: D

Oracle   1Z1-403 examen   certification 1Z1-403   1Z1-403   1Z1-403 examen

Pass4Test a une grande équipe composée des experts d'expérience dans l'industrie IT. Leurs connaissances professionnelles et les recherches font une bonne Q&A, qui vous permet à passer le test Oracle 1Z1-403. Dans Pass4Test, vous pouvez trouver une façon plus convenable à se former. Les resources de Pass4Test sont bien fiable. Choisissez Pass4Test, choisissez un raccourci à réussir le test Oracle 1Z1-403.

Le meilleur matériel de formation examen Oracle 1Z0-053

Maintenant, beaucoup de professionnels IT prennent un même point de vue que le test Oracle 1Z0-053 est le tremplin à surmonter la pointe de l'Industrie IT. Beaucoup de professionnels IT mettent les yeux au test Certification Oracle 1Z0-053.

Le produit de Pass4Test que vous choisissez vous met le pied sur la première marche du pic de l'Industrie IT, et vous serez plus proche de votre rêve. Les matériaux offerts par Pass4Test peut non seulement vous aider à réussir le test Oracle 1Z0-053, mais encore vous aider à se renforcer les connaissances professionnelles. Le service de la mise à jour pendant un an est aussi gratuit pour vous.

Pass4Test est un site qui peut réalise le rêve de beaucoup de professionnels. Pass4Test peut vous donner un coup de main pour réussir le test Certification Oracle 1Z0-053 via son guide d'étude. Est-ce que vous vous souciez de test Certification Oracle 1Z0-053? Est-ce que vous êtes en cours de penser à chercher quelques Q&As à vous aider? Pass4Test peut résoudre ces problèmes. Les documentations offertes par Pass4Test peuvent vous provider une préparation avant le test plus efficace. Le test de simulation de Pass4Test est presque le même que le test réel. Étudier avec le guide d'étude de Pass4Test, vous pouvez passer le test avec une haute note.

Pass4Test vous permet à réussir le test Certification sans beaucoup d'argents et de temps dépensés. La Q&A Oracle 1Z0-053 est recherchée par Pass4Test selon les résumés de test réel auparavant, laquelle est bien liée avec le test réel.

Code d'Examen: 1Z0-053
Nom d'Examen: Oracle (Oracle Database 11g: Administration II)
Questions et réponses: 673 Q&As

Le test Certification Oracle 1Z0-053 est une chance précieuse à augmenter vos connaissances de technologie informatique dans l'industrie IT. Il attire beaucoup de professionls à participer ce test. Pass4Test peut vous offrir les outils de formation particuliers à propos de test Oracle 1Z0-053. Vous réaliserez plus tôt votre rêve avec la Q&A écrite par l'équipe professionnelle de Pass4Test. Pass4Test se contribue à vous donner un coup de main pour réussir le test Oracle 1Z0-053.

Vous allez choisir Pass4Test après essayer une partie de Q&A Oracle 1Z0-053 (gratuit à télécharger). Le guide d'étude produit par Pass4Test est une assurance 100% à vous aider à réussir le test Certification Oracle 1Z0-053.

1Z0-053 Démo gratuit à télécharger: http://www.pass4test.fr/1Z0-053.html

NO.1 You are working on a CATDB database that contains an Oracle Database version 11.1 catalog schema
owned by the user RCO11. The INST1 database contains an Oracle Database version 10.1 catalog
schema owned by the user RCAT10.
You want the RMAN to import metadata for database IDs 1423241 and 1423242, registered in RCAT10,
into the recovery catalog owned by RCO11. You also want to deregister them from the catalog after import.
You executed the following commands to achieve this:
RMAN> CONNECT CATALOG rco11/password@catdb
RMAN> IMPORT CATALOG rcat10/oracle@inst1 DBID=1423241,1423242;
What happens if the RCO11 catalog has scripts with the same name as that of the scripts in RCAT10
catalog?
A. The scripts in the RCO11 catalog are overwritten.
B. RMAN renames the local stored scripts in the RCO11 catalog.
C. The RMAN session in which the command is executed aborts.
D. RMAN renames the global scripts that are imported from the RCAT10 catalog.
Answer: D

Oracle   1Z0-053   1Z0-053   1Z0-053

NO.2 The INV_HISTORY table is created using the command:
SQL>CREATE TABLE INV_HISTORY (inv_no NUMBER(3), inv_date DATE, inv_amt NUMBER(10,2))
partition by range (inv_date) interval
(numtoyminterval(1,'month')) (partition p0
values less than (to_date('01-01-2005','dd-mm-yyyy')), partition p1 values less than
(to_date('01-01-2006','dd-mm-yyyy')));
The following data has been inserted into the INV_HISTORY table :
INV_NO INV_DATE INV_AMT 1 30-dec-2004 1000 2 30-dec-2005 2000 3 1-feb-2006 3000 4 1-mar-2006
4000 5 1-apr-2006 5000
You would like to store the data belonging to the year 2006 in a single partition and issue the command:
SQL> ALTER TABLE inv_history MERGE PARTITIONS
FOR(TO_DATE('15-feb-2006','dd-mon-yyyy')), FOR(TO_DATE('15-apr-2006')) INTO PARTITION sys_py;
What would be the outcome of this command?
A. It executes successfully, and the transition point is set to '1-apr-2006'.
B. It executes successfully, and the transition point is set to '15-apr-2006'.
C. It produces an error because the partitions specified for merging are not adjacent.
D. It produces an error because the date values specified in the merge do not match the date values
stored in the table.
Answer: C

Oracle examen   1Z0-053   1Z0-053 examen   1Z0-053

NO.3 A PL/SQL procedure queries only those columns of a redefined table that were unchanged by the
online table redefinition. What happens to the PL/SQL procedure after the online table redefinition?
A. It remains valid.
B. It becomes invalid for all options of online table redefinition but automatically gets revalidated the next
time it is used.
C. It becomes invalid for all options of online table redefinition and is automatically recompiled during
online redefinition of the table.
D. It becomes invalid only if the storage parameters have been modified and it automatically gets
revalidated the next time it is used.
Answer: A

Oracle examen   1Z0-053   1Z0-053   1Z0-053

NO.4 You are in the process of creating a virtual private catalog in your Oracle Database 11g database. The
PROD1, PROD2, and PROD3 Oracle Database 10g databases are registered in the base recovery
catalog. The database user who owns the base recovery catalog is CATOWNER. CATOWNER executes
the following command to grant privileges to a new user VPC1 using Oracle Database 11g RMAN
executables:
RMAN> GRANT CATALOG FOR DATABASE prod1, prod2 TO vpc1;
Then you issue the following commands:
RMAN> CONNECT CATALOG vpc1/oracle@catdb;
RMAN> SQL "EXEC catowner.dbms_rcvcat.create_virtual_catalog;"
What is the outcome of the above commands?
A. They execute and create a virtual catalog for pre-Oracle 11g clients.
B. They produce an error because PROD1 and PROD2 databases belong to the older version.
C. They produce an error because you need to connect as CATOWNER to execute this packaged
procedure.
D. They produce an error because you need to connect to the target database to execute this packaged
procedure.
Answer: A

certification Oracle   1Z0-053 examen   certification 1Z0-053   certification 1Z0-053   1Z0-053 examen   certification 1Z0-053

NO.5 Because of a logical corruption in your production database, you wanted to perform Tablespace Point
in Time Recovery (TSPITR). But before you start the recovery, you queried the
TS_PITR_OBJECTS_TO_BE_DROPPED view and realized that there are a large number of objects that
would be dropped when you start the recovery by using this method. You want to preserve these objects.
Which option must you use to perform TSPITR and preserve the object?
A. Perform Export before TSPITR and Import after TSPITR
B. Move objects to another schema that has the same tablespace assigned
C. Perform Incomplete Recovery before TSPITR with the Log Sequence Number (LSN)
D. Perform Incomplete Recovery before TSPITR with the System Change Number (SCN)
Answer: A

Oracle   certification 1Z0-053   1Z0-053   1Z0-053

NO.6 You plan to have a larger moving window size for the default system-defined moving window baseline
because you want to use the adaptive threshold.
Which statement factors in this consideration while increasing the size of the moving window.?
A. The collection level for the AWR should be set to BASIC.
B. The moving window size must be less than Undo Retention.
C. The moving window size should be greater than the Automatic Workload Repository (AWR) retention
period.
D. The moving window size should be equal to or less than the Automatic Workload Repository (AWR)
retention period.
Answer: D

Oracle   1Z0-053 examen   1Z0-053

NO.7 Examine the section of the Health Check report given below:
DBMS_HM.GET_RUN_REPORT('HM_RUN_1061')
Run Name : HM_RUN_1061 Run Id : 1061 Check Name : Data Block Integrity Check Mode :
REACTIVE Status : COMPLETED Start Time : 2007-05-12 22:11:02.032292 -07:00 End Time :
2007.05-12 22:11:20.835135 -07:00 Error Encountered : 0
Source Incident Id : 7418
Number of Incidents Created :0
Which two statements are true regarding the Health Check report? (Choose two.)
A. Health Check was performed manually.
B. Health Check was performed to check the disk image block corruptions.
C. Health Check was performed to check interblock and intersegment corruption.
D. Health Check was performed to verify the integrity of database files and report failures.
E. Health Check was performed by the Health Monitor automatically in response to a critical error.
Answer: AB

Oracle   1Z0-053   1Z0-053   1Z0-053   1Z0-053 examen

NO.8 View the Exhibit and examine the resource consumption details for the current plan in use by the
database instance.
Which two statements are true based on the output? (Choose two.)
Exhibit:
A. An attempt to start a new session by the user belonging to DSS_QUERIES fails with an error
B. A user belonging to DSS_QUERIES can log in to a new session but the session will be queued
C. The CPU_WAIT_TIME column indicates the total time that sessions in the consumer group waited for
the CPU due to resource management
D. The CPU_WAIT_TIME column indicates the total time that sessions in the consumer group waited for
the CPU due to resource management, I/O waits, and latch or enqueue contention
Answer: BC

Oracle examen   certification 1Z0-053   1Z0-053 examen   1Z0-053 examen

NO.9 You performed the RMAN database backup having a backupset key number 231 with the KEEP
FOREVER option.
After some days, you want to change the status of the database backup and you issued the following
command:
RMAN>CHANGE BACKUPSET 231 NOKEEP;
What is the implication of this command?
A. The backup is deleted.
B. The backup is marked unavailable.
C. The backup overrides the backup retention policy.
D. the backup becomes eligible for deletion according to the existing retention policy
Answer: D

Oracle   1Z0-053   1Z0-053

NO.10 View the Exhibit to examine the metrics with a threshold. Which statement is true regarding the
Number of Transactions (per second) metric?
A. Oracle uses statistical relevance to determine when an adaptive threshold has been breached for the
metric.
B. The statistics for the metric values observed over the baseline time period are not examined to
determine threshold values.
C. Oracle determines when an adaptive threshold has been breached based on the maximum value
captured by the baseline.
D. The total concurrent number of threshold violations, which must occur before an alert is raised for the
metric, has been set to zero.
Answer: A

Oracle   certification 1Z0-053   1Z0-053   1Z0-053

NO.11 You need to configure fine-grained access control to external network resources from within your
database. You create an access control list (ACL) using the DBMS_NETWORK_ACL_ADMIN package.
Which statement is true regarding the ACL created?
A. It is a list of remote database links stored in the XML file that are available to the users of the database.
B. It is a list of users and network privileges stored in the XML file according to which a group of users can
connect to one or more hosts.
C. It is a list of users and network privileges stored in the data dictionary according to which a group of
users can connect to one or more hosts.
D. It is the list of the host names or the IP addresses stored in the data dictionary that can connect to your
database through PL/SQL network utility packages such as UTL_TCP.
Answer: B

Oracle   1Z0-053 examen   1Z0-053   1Z0-053

NO.12 Which three components does the Scheduler use for managing tasks within the Oracle environment?
(Choose three.)
A. a job
B. a program
C. a schedule
D. a PL/SQL procedure
Answer: ABC

Oracle   1Z0-053   1Z0-053 examen   1Z0-053

NO.13 Which two statements are true regarding hot patching? (Choose two.)
A. It requires relinking of the Oracle binary.
B. It does not require database instance shutdown.
C. It can detect conflicts between two online patches.
D. It is available for installing all patches on all platforms.
E. It works only in a single database instance environment.
Answer: BC

Oracle examen   1Z0-053 examen   certification 1Z0-053   1Z0-053 examen

NO.14 Consider the following scenario for your database:
-Backup optimization is enabled in RMAN. The recovery window is set to 7 days in RMAN. The most
recent backup to disk for the TOOLS tablespace was taken on November 3, 2007.
The TOOLS tablespace is read-only since November 4, 2007.
On November 23, 2007, you issue the RMAN command to back up the database to disk. Which statement
is true regarding the backup of the TOOLS tablespace?
A. The RMAN backup fails because the TOOLS tablespace is read-only
B. The RMAN skips the backup of the tablespace because backup optimization is enabled
C. The RMAN makes backup because optimization can be enabled only for backups to disk
D. The RMAN makes the backup because no backup of the tablespace exists within the seven day
window
Answer: D

Oracle   1Z0-053 examen   certification 1Z0-053   1Z0-053   certification 1Z0-053

NO.15 You create a new Automatic Database Diagnostic Monitor (ADDM) task:
instance_analysis_mode_task. To view the ADDM report, you use the following command:
SQL> SELECT dbms_addm.get_report('my_instance_analysis_mode_task') FROM dual;
You want to suppress ADDM output relating to Segment Advisor actions on user SCOTT's segments.
What would you do to achieve this?
A. Add a finding directive for the ADDM task.
B. Add a segment directive for the ADDM task.
C. Add a parameter directive for the ADDM task.
D. Disable the Segment Advisor from the Automatic Maintenance Task.
Answer: B

Oracle examen   1Z0-053 examen   certification 1Z0-053   1Z0-053 examen   1Z0-053   1Z0-053

NO.16 Your database is in ARCHIVELOG mode. You have two online redo log groups, each of which contains
one redo member. When you attempt to start the database, you receive the following errors:
ORA-00313: open failed for members of log group 1 of thread 1
ORA-00312: online log 1 thread 1: 'D:\REDO01.LOG'
You discover that the online redo log file of the current redo group is corrupted.
Which statement should you use to resolve this issue?
A. ALTER DATABASE DROP LOGFILE GROUP 1;
B. ALTER DATABASE CLEAR LOGFILE GROUP 1;
C. ALTER DATABASE CLEAR UNARCHIVED LOGFILE GROUP 1;
D. ALTER DATABASE DROP LOGFILE MEMBER 'D:\REDO01.LOG';
Answer: C

Oracle   certification 1Z0-053   1Z0-053

NO.17 View the Exhibit that sets the threshold for the Current Open Cursors Count metric. Why is the
Significance Level threshold type not available in the threshold setting?
A. because AWR baseline is not enabled
B. because Current Open Cursors Count is not a basic metric
C. because the STATISTICS_LEVEL parameter is set to BASIC
D. because the AWR baseline is a system-defined moving window baseline
Answer: B

Oracle examen   certification 1Z0-053   1Z0-053 examen   1Z0-053   1Z0-053

NO.18 Which statement is true regarding online redefinition for the migration of BasicFile LOBs to SecureFile
LOBs?
A. It cannot be done in parallel.
B. It can be done at the table level or partition level.
C. It does not require additional storage because the operation is done online.
D. Local and global indexes are maintained automatically during the operation.
Answer: B

Oracle examen   1Z0-053 examen   1Z0-053   1Z0-053   1Z0-053   1Z0-053 examen

NO.19 While deploying a new application module, the software vendor ships the application software along
with appropriate SQL plan baselines for the new SQLs being introduced. Which two statements describe
the consequences? (Choose two.)
A. The plan baselines can be evolved over time to produce better performance.
B. The newly generated plans are directly placed into the SQL plan baseline without being verified.
C. The new SQL statements initially run with the plans that are known to produce good performance
under standard test configuration.
D. The optimizer does not generate new plans for the SQL statements for which the SQL plan baseline
has been imported.
Answer: AC

Oracle   certification 1Z0-053   1Z0-053   certification 1Z0-053   certification 1Z0-053

NO.20 Which statement describes the information returned by the DBMS_SPACE.SPACE_USAGE procedure
for LOB space usage?
A. It returns space usage of only BasicFile LOB chunks.
B. It returns space usage of only SecureFile LOB chunks.
C. It returns both BasicFile and SecureFile LOB space usage for only nonpartitioned tables.
D. It returns both BasicFile and SecureFile LOB space usage for both partitioned and nonpartitioned
tables.
Answer: B

Oracle   certification 1Z0-053   1Z0-053

La Q&A Oracle 1Z0-053 est étudiée par les experts de Pass4Test qui font tous effort en profitant leurs connaissances professionnelles. La Q&A de Pass4Test est ciblée aux candidats de test IT Certification. Vous voyez peut-être les Q&As similaires dansn les autres site web, mais il n'y a que Pass4Test d'avoir le guide d'étude plus complet. C'est le meilleur choix à s'assurer le succès de test Certification Oracle 1Z0-053.