Monthly Archives: March 2014

  • 2014 Latest LPI Exam 117-201 Stimulators Free Download(31-40)

    QUESTION 31
    What command can be used on an existing (formatted) partition, to configure the interval between disk checks when mounting partitions?

    A.    mke2fs
    B.    e2fsck
    C.    e2fsckconfig
    D.    config2fs
    E.    tune2fs

    Answer: E

    QUESTION 32
    Performing a DNS lookup with dig results in this answer:
    ;; question SECTION:
    ;5.123.168.192.in-addr.arpa. IN PTR
    ;; ANSWER SECTION:
    5.123.168.192.in-addr.arpa. 600 IN PTR linuserv.example.net.123.168.192.in-addr.arpa.
    ;;AUTHORITY SECTION:
    123.168.192.in-addr.arpa. 600 IN NS linuserv.example.net.
    ;; ADDITIONAL SECTION:
    linuserv.example.net. 600 IN A 192.168.123.5
    What might be wrong in the zone definition?

    A.    Nothing. All seems to be good.
    B.    There’s no “.” after linuserv.example.net in the PTR record in the forward lookup zone file.
    C.    There’s no “.” after linuserv in the PTR record in the forward lookup zone file.
    D.    There’s no “.” after linuserv.example.net in the PTR record in the reverse lookup zone file.
    E.    The “.” in the NS definition in reverse lookup zone has to be removed.

    Answer: D

    QUESTION 33
    Which of the following commands will securely copy the directory ./fyf/ to /var/tmp/ on the remote host deltaur using the remote user account kevin?

    A.    rsync -a -e ssh kevin@deltaur:/var/tmp/ fyf/
    B.    rsync -a -u kevin -e ssh fyf/ deltaur:/var/tmp/
    C.    rsync -a -u kevin -e ssh deltaur:/var/tmp/ fyf/
    D.    rsync -a -e ssh fyf/ kevin@deltaur:/var/tmp/

    Answer: D

    QUESTION 34
    Journalling doesn’t appear to be working on an ext3 file-system. When booting, the following line appears:
    VFS: Mounted root (ext2 filesystem) read only.
    What could be causing the problem?

    A.    An old version of e2fsprogs is installed.
    B.    The kernel does not contain ext3 support.
    C.    The file-system is specified as ext2 in/etc/fstab.
    D.    The system was not shut down cleanly.

    Answer: B

    QUESTION 35
    Your routing configuration relies on eth0 being a 3com card that requires the 3c59x module. What line must be added to modules configuration file, to ensure that eth0 always uses this module?

    A.    eth0=3c59x
    B.    alias eth0=3c59x
    C.    alias eth0 3c59x
    D.    set eth0 3c59x
    E.    set eth0=3c59x

    Answer: C

    QUESTION 36
    What backup arrangement should be used for an intranet web server the contents of which is updated fairly regularly by different staff?

    A.    Daily incremental backups with a weekly full backup tape sent off- site
    B.    Monthly full backups with the tape sent off-site
    C.    Daily full backups with all tapes sent off-site
    D.    Weekly full backups with all tapes sent off-site
    E.    Daily full backups with one tape sent off-site per week

    Answer: A

    QUESTION 37
    During which stage of the boot process would this message be seen?
    Ide0: BM-DMA at 0xff00-0xff07, BIOS settings: hda:DMA, hdb:DMA

    A.    Boot loader start and hand off to kernel
    B.    Kernel loading
    C.    Hardware initialization and setup
    D.    Daemon initialization and setup

    Answer: C

    QUESTION 38
    Which of the following commands can be used to access the content of a ramdisk file (/boot/initrd) used by the kernel at boot time?

    A.    mount /boot/initrd /mnt/ -0 loop; cat /mnt
    B.    mkintird -d /boot/initrd; mount /boot/initrd /mnt/ -o loop
    C.    cp /boot/initrd /tmp/initrd.gz; mount /tmp/initrd /mnt/ -o loop
    D.    cp /boot/initrd /tmp/initrd.gz; gunzip initrd.gz; mount /tmp/initrd /mnt/ -o loop
    E.    cp /boot/initrd /tmp/initrd.gz; gunzip initrd.gz; mount /tmp/initrd /mnt/

    Answer: D

    QUESTION 39
    A BIND server should be upgraded to use TSIG. Which configuration parameters should be added, if the server should use the algorithm hmac-md5 and the key skrKc4DoTzi/tAkllPi7JZA== ?

    A.    TSIG server.example.com.
    algorithm hmac-md5;
    secret “skrKc4DoTzi/tAkllPi7JZA==”;
    };
    B.    key server.example.com. {
    algorithm hmac-md5;
    secret skrKc4DoTzi/tAkllPi7JZA==;
    };
    C.    key server.example.com. {
    algorithm hmac-md5;
    secret “skrKc4DoTzi/tAkllPi7JZA==”;
    };
    D.    key server.example.com. {
    algorithm=hmac-md5;
    secret=”skrKc4DoTzi/tAkllPi7JZA==”;
    };
    E.    key server.example.com. {
    algorithm hmac-md5
    secret “skrKc4DoTzi/tAkI1Pi7JZA==”
    };

    Answer: C

    QUESTION 40
    Which of the following sentences is true for the shown BIND9 configuration?
    options {
    directory “/var/named”;
    allow-query { any; };
    allow-recursion {127.0.0.1; 10.0.0.0/24; };
    forwarders {192.168.0.4; };
    forward first;
    };
    zone”.” {
    type hint;
    file “named.ca”;
    };

    A.    Any host, from any network, may use this server as its main DNS server.
    B.    If the server doesn’t know the answer to a query, it sends a recursive query to 192.168.0.4.
    C.    If the server doesn’t know the answer to a query, it sends a query to a root DNS server.
    D.    Hosts in the network 10.0.0.0/24 will be able to ask for zone transfers.
    E.    If the server doesn’t know the answer to a query, it sends a recursive query to 192.168.0.4 and, if this fails, it returns a failure.

    Answer: B

    If you want to pass the LPI 117-201 sucessfully, recommend to read latest Exam 117-201 full version.

    http://www.lead2pass.com/117-201.html

  • 2014 Latest LPI Exam 117-201 Stimulators Free Download(21-30)

    QUESTION 21
    How can DMA be enabled for the device /dev/hda?

    A.    echo “1” >/proc/ide/hda/dma
    B.    sysctl -w dev.ide.dma=1
    C.    dma add /dev/hda
    D.    hdparm -d 1 /dev/hda
    E.    insmod dma dev=/dev/hda

    Answer: D

    QUESTION 22
    To restore the kernel source to the previous, unpatched, version, which of the following commands could be used?

    A.    patch –restore
    B.    patch –remove
    C.    patch -U
    D.    patch –undo
    E.    patch -R

    Answer: E

    QUESTION 23
    If the current directory is /root and the kernel source is located in /usr/src/linux, which of the following commands should be used to apply the patch /tmp/foopatch?

    A.    cat /tmp/foopatch | patch -p0
    B.    cd/usr/src/linux; cat/tmp/foopatch | patch -p0
    C.    cd/usr/src/linux; cat/tmp/foopatch | patch
    D.    cd/usr/src/linux; patch -p1 </tmp/foopatch
    E.    cd/usr/src/linux; patch -p1 >/tmp/foopatch

    Answer: D

    QUESTION 24
    A 2.6.9-ac1 kernel would be

    A.    an alpha kernel.
    B.    someone’s patch to a stable kernel.
    C.    a stable kernel.
    D.    an unstable kernel.
    E.    someone’s patch to an unstable kernel.

    Answer: B

    QUESTION 25
    What command should be used to find out what PCI devices can be seen, without querying the kernel?

    A.    lspci -v
    B.    lspci -s
    C.    lspci -x
    D.    lspci -b
    E.    lspci -p

    Answer: D

    QUESTION 26
    Considering that a 2.4 series Linux kernel is being used, which kernel module must be loaded to enable CD burning with an IDE CD writer?

    A.    ide-cd
    B.    ide-cdrw
    C.    ide-cdb
    D.    ide-scsi
    E.    None of the above

    Answer: D

    QUESTION 27
    What command must be used to create an ext3 filesystem?

    A.    mke2fs
    B.    mkext2fs
    C.    mke3fs
    D.    mkext3fs
    E.    mkjfs

    Answer: A

    QUESTION 28
    The Linux kernel is loaded successfully by the boot loader. However, straight after the kernel mounts the root filesystem, the boot process stops and an error message regarding init is shown. Which of the following actions is the best one to be used in order to identify and fix the problem?

    A.    The administrator reboots the system with a recovery disk and checks the root file system for errors with fsck.
    B.    The administrator reboots the system with a recovery disk and restores from a backup.
    C.    The administrator reboots the system and tells the kernel, through the boot loader prompt, to use /bin/bash as the initial process.
    D.    The administrator reboots the system with a recovery disk and installs a new kernel.
    E.    The administrator reboots the system and tells init, through the boot loader prompt, to use a different runlevel.

    Answer: C

    QUESTION 29
    A machine is running in single user mode and, as such, not all file-systems are accessible. What command must be run to make all of the other file-systems listed in /etc/fstab accessible?

    A.    mount –all
    B.    mountfs –all
    C.    mountfs -a
    D.    mount -a

    Answer: D

    QUESTION 30
    What command is used to force a file-system check, when rebooting?

    A.    reboot-f
    B.    shutdown -f now
    C.    shutdown -c -r now
    D.    fsck -r
    E.    shutdown -F -r now

    Answer: E

    If you want to pass the LPI 117-201 sucessfully, recommend to read latest Exam 117-201 full version.

    http://www.lead2pass.com/117-201.html

  • 2014 Latest LPI Exam 117-201 Stimulators Free Download(11-20)

    QUESTION 11
    User Joseph has successfully extracted and compiled a program from source code. Installing the binaries produces errors. What is the most likely reason?

    A.    The source code was compiled for a different CPU
    B.    The permissions set in the /usr/bin directory are wrong
    C.    The binaries require root privileges to be installed
    D.    The wrong prefix was used during configuration of the source code

    Answer: C

    QUESTION 12
    You have finished updating and resolving dependencies for some source code. What command should you run before recompiling the code into binary form?

    A.    make clean
    B.    make all
    C.    make dep
    D.    make install

    Answer: A

    QUESTION 13
    How can you manually add an entry to your system’s ARP cache?

    A.    Directly edit /etc/arp-cache
    B.    Run add-arp hostname FF:FF:FF:FF:FF:FF
    C.    Run ping -a hostname
    D.    Run arp -s hostname FF:FF:FF:FF:FF:FF
    E.    Edit arp.conf and restart arpd

    Answer: D

    QUESTION 14
    You find that a host (192.168.1.4) being used on one of your client’s networks has been compromised with a backdoor program listening on port 31337. Your client requests a list of originating IP addresses connecting to that port. Using a Linux workstation as traffic analyzer, which of the following commands would gather the data requested by the client?

    A.    tcpdump host 192.168.1.4 and port 31337 -w out
    B.    nmap host 192.168.1.4:31337
    C.    arpwatch -n 192.168.1.4/32 -p 31337 > capture
    D.    pcap -d 192.168.1.4:31337
    E.    ipwatch –syn 192.168.1.4 -p 31337 –1og=out

    Answer: A

    QUESTION 15
    Which tool can be used to control the runtime behavior of udev?

    A.    udev
    B.    udevctl
    C.    udevadm
    D.    udevconfig
    E.    udevclient

    Answer: C

    (more…)

  • 2014 Latest LPI Exam 117-201 Stimulators Free Download(1-10)

    QUESTION 1
    What command must be used to create an ext3 file-system?

    A.    mkext3fs
    B.    mkjfs
    C.    mke3fs
    D.    mke2fs
    E.    mkext2fs

    Answer: D

    QUESTION 2
    What needs to be done to enable 32 bit I/O transfer mode for (E)IDE disks, on a system running a 2.4 series Linux kernel?

    A.    The Linux kernel must be recompiled.
    B.    The sysctl utility must be used.
    C.    The hdparm utility must be used.
    D.    This feature isn’t supported in 2.4 series kernels.
    E.    This feature is enabled by default in 2.4 series kernels

    Answer: C

    QUESTION 3
    DNSSEC is used for?

    A.    Encrypted DNS queries between nameservers.
    B.    Cryptographic authentication of DNS zones.
    C.    Secondary DNS queries for local zones.
    D.    Defining a secure DNS section.
    E.    Querying a secure DNS section.

    Answer: B

    QUESTION 4
    Which of these commands allows you to use shared libraries that are in /usr/local/lib?

    A.    export LD_PRELOAD=/usr/local/lib
    B.    export LD_LIBRARY_PATH=/usr/local/lib
    C.    ldconfig /usr/local/lib
    D.    ldd /usr/local/lib

    Answer: C

    QUESTION 5
    Which TWO archiving formats are used to create an initramfs image?

    A.    gzip
    B.    tar
    C.    rar
    D.    cpio
    E.    bzip2

    Answer: AD

    QUESTION 6
    After unpacking the source code for a Linux kernel, what is the first make command that should be run which will delete any current configuration and all generated files? This command will ensure that no inappropriate files were left in the kernel archive by the maintainer.

    A.    make depend
    B.    make distclean
    C.    make config
    D.    make clean
    E.    make mrproper

    Answer: B

    QUESTION 7
    Which script, in the linux/scripts directory, can be used to add up grades or updated code to the 2.6.xx kernel source code?

    A.    patch
    B.    patch-kernel
    C.    kernel-update
    D.    upgrade-kernel
    E.    upgrade

    Answer: B

    QUESTION 8
    What tool can you use to print shared library dependencies?

    A.    ldconfig
    B.    ldd
    C.    libdep
    D.    libpath
    E.    ldev

    Answer: B

    QUESTION 9
    Which of the following commands will copy one disk partition /dev/sda3 to /dev/sdb3?

    A.    dd if=/dev/sdb3 of =/dev/sda3 bs=4096 conv=notrunc
    B.    dd if=/dev/sda3 of=/dev/sdb3 bs=4096 conv=notrunc
    C.    dd –input /dev/sda3 –output /dev/sdb3 bs=4096 conv=notrunc
    D.    dd –input /dev/sdb3 –output /dev/sda3 bs=4096 conv=notrunc

    Answer: B

    QUESTION 10
    After unpacking source code, what file is used by configure to create a final Makefile?

    A.    configure.in
    B.    configure.ac
    C.    Makefile.in
    D.    Makefile.tmpl

    Answer: C

    If you want to pass the LPI 117-201 sucessfully, recommend to read latest Exam 117-201 full version.

    http://www.lead2pass.com/117-201.html

  • 2014 Latest Citrix 1Y0-200 Dumps Free Download (111-120)

    QUESTION 111
    Which two actions should a Citrix Administrator take prior to deleting desktop OS machines from a machine catalog? (Choose two.)

    A.    Turn off the desktop OS machines.
    B.    Place the desktop OS machines in maintenance mode.
    C.    Remove the desktop OS machines from the hypervisor.
    D.    Delete the Active Directory account for the desktop OS machines.
    E.     Enable maintenance mode on the hypervisor hosting the desktop OS machines.

    Answer: AB

    QUESTION 112
    After a recent upgrade, a user is attempting to launch Microsoft Word 2010 from Receiver for Web and receives the following error:
    Cannot start app ‘Microsoft Word 2010’.
    What are two potential reasons for this error? (Choose two.)

    A.    The application is disabled.
    B.    The server OS machine is NOT registered.
    C.    The server OS machine is in maintenance mode.
    D.    The user does NOT have permission to access the application.

    Answer: BC

    QUESTION 113
    A Citrix Administrator needs to change the port used for communication between StoreFront and the Delivery Controller. Which configuration in the StoreFront Management Console should the administrator modify to meet this goal?

    A.    Stores
    B.    Beacons
    C.    Gateways
    D.    Authentication

    Answer: A

    QUESTION 114
    Which two tools could a Citrix Administrator use to gather information on why users are receiving licensing errors when connecting to virtual desktops? (Choose two.)

    A.    License node in Citrix Studio
    B.    License Manager in XenCenter
    C.    Historical Trend Reports in Citrix Director
    D.    Dashboard in License Administration Console

    Answer: AD

    QUESTION 115
    Which action should a Citrix Administrator take when using Provisioning Services to provision additional Windows Server 2012 server OS machines in a machine catalog?

    A.    Create a vDisk for the OS.
    B.    Add the OS to the vDisk store.
    C.    Create a site for virtual machines.
    D.    Add the virtual machines to the device collection.

    Answer: D

    QUESTION 116
    Which two tools could a Citrix Administrator use to determine which virtual desktops have NOT registered with the Delivery Controller? (Choose two.)

    A.    Citrix Studio
    B.    Citrix Director
    C.    Citrix XenCenter
    D.    Provisioning Services Console

    Answer: AB

    QUESTION 117
    Which two methods could a Citrix Administrator use to determine whether any user connections failed in the past 60 minutes? (Choose two.)

    A.    Check the Windows Event Viewer.
    B.    View Windows Performance Monitor.
    C.    View Citrix Director Historical Trends.
    D.    Monitor the Citrix Director HDX channels.
    E.     Check the Citrix Director Dashboard panels.

    Answer: C

    QUESTION 118
    According to Citrix best practices, which storage type should an Citrix administrator use to set up a XenDesktop environment using XenServer?

    A.    NFS
    B.    CIFS
    C.    NTFS
    D.    Clustered Shared Volume

    Answer: A

    QUESTION 119
    A Citrix Administrator creates a backup schedule that will back up all of the available vDisks. Which three critical file types must to be added to the backup schedule? (Choose three.)

    A.    BAK
    B.    PVP
    C.    VHD
    D.    LOK
    E.     AVHD

    Answer: BC

    QUESTION 120
    Scenario: A Citrix Administrator needs to use Provisioning Services to create a vDisk from a target device that has the latest hotfixes and security updates applied. The master target device is a Windows 7 virtual machine running on XenServer. What should the administrator do to create a new vDisk from the target device?

    A.    Run the Imaging Wizard on the target device.
    B.    Run the ‘Add personal vDisk storage’ wizard in Citrix Studio.
    C.    Run the target device software to capture the target device hard drive.
    D.    Use the ‘Export’ option in XenServer to create a vDisk from the target device.

    Answer: A

    If you want to pass the Citrix 1Y0-200 exam sucessfully, recommend to read latest Citrix 1Y0-200 Dumps full version.

    http://www.lead2pass.com/1y0-200.html

  • 2014 Latest Citrix 1Y0-200 Dumps Free Download (101-110)

    QUESTION 101
    A Citrix Administrator creates a session printer for the Engineering group; however, engineers report that random characters are printed when they print. Which policy settings could be causing the issue?

    A.    Printer assignments
    B.    Universal driver preference
    C.    Wait for printers to be created
    D.    Auto-create generic universal printer

    Answer: B

    QUESTION 102
    Users accessing applications hosted on a specific server OS machine are unable to connect to printers from within their sessions. What could be the cause of this issue?

    A.    The Universal Print Server is NOT installed.
    B.    The universal printer driver policy is disabled.
    C.    The auto-create client printer policy is enabled.
    D.    The Citrix Print Manager Service is NOT running.

    Answer: D

    QUESTION 103
    Which two terms are needed for an administrator to create a catalog for existing machines in a XenDesktop environment? (Choose two.)

    A.    Virtual machines available in the datacenter
    B.    Active Directory computer accounts for the machines
    C.    Device collections configured to load the vDisk over the network
    D.    A PrtMs.on.ng services deployment with a vDisk imaged from the master target device

    Answer: AB

    QUESTION 104
    Scenario: An iPad user is connected to the internal wireless network. The user is attempting to use Microsoft Word 2010. This user can see other hosted applications on the iPad but CANNOT see Microsoft Word. Other users have access to Microsoft Word on their iPads. What is preventing the user from seeing Microsoft Word 2010 on their iPad?

    A.    The application is NOT enabled.
    B.    NetScaler is NOT configured in StoreFront.
    C.    The user is NOT assigned to the application.
    D.    The server OS machine is in maintenance mode.

    Answer: C

    QUESTION 105
    Scenario: A user attempts to launch their virtual desktop, “Win7 Desktop,” from within Receiver for Web. The virtual desktop fails to launch, and the user receives a notification stating:
    Cannot start desktop “Win7 Desktop”.
    Which two methods could a Citrix Administrator use to resolve the issue? (Choose two.)

    A.    Close Receiver for Web and then reopen it.
    B.    Restart the virtual desktop using Citrix Director.
    C.    Install a new SSL Certificate on the StoreFront server.
    D.    Right-click the desktop icon within Receiver for Web and select ‘Restart’.

    Answer: BD

    QUESTION 106
    Scenario: A user is unable to access their remote PC. The user has tried to restart the machine but is unable to do so. Why is the user unable to restart the remote PC?

    A.    The user is still logged in at their remote PC.
    B.    A user CANNOT remotely restart a remote PC.
    C.    The Citrix Delivery Service is NOT running on the remote PC.
    D.    Citrix Studio has NOT been configured to manage the remote PC.

    Answer: B

    QUESTION 107
    Scenario: A company has two delivery groups with two server OS machines in each delivery group. One delivery group is for Microsoft Office 2007 server OS machines, and one delivery group is for Microsoft Office 2010 server OS machines. Microsoft Office 2010 users are reporting performance issues, including latency and slowness in general. Which two tools could a Citrix Administrator use to troubleshoot this issue? (Choose two.)

    A.    Citrix Director
    B.    Citrix Quick Launch
    C.    Performance Monitor
    D.    Microsoft Event Viewer

    Answer: AC

    QUESTION 108
    Scenario: A CPU-intensive email application is added to a server OS machine. Several users report poor application performance, including high latency and slowness in general. The Help Desk logs show that this issue occurs at varying times of the day and has been reported from multiple remote offices. Which two utilities should a Citrix Administrator use to troubleshoot the issue? (Choose two.)

    A.    Citrix Studio
    B.    CDFControl
    C.    Citrix Director
    D.    Performance Monitor

    Answer: CD

    QUESTION 109
    After a Citrix Administrator creates a bonded network on XenServer, provisioned desktops fail to start up from the network. What could be a cause of this issue?

    A.    UDP 69 is closed.
    B.    The MTU is incorrectly configured.
    C.    The connection to the CIFS share is broken.
    D.    The status of the bonded network shows as ‘Disconnected’.

    Answer: D

    QUESTION 110
    The Export Provisioning File option in the StoreFront Management Console contains __________. (Choose the correct phrase to complete the sentence.)

    A.    the information required to rebuild a store
    B.    connection details for the Delivery Controller
    C.    connection details for the hosting infrastructure
    D.    connection details for stores, including any Access Gateway deployments and beacons configured
    for the stores

    Answer: D

    If you want to pass the Citrix 1Y0-200 exam sucessfully, recommend to read latest Citrix 1Y0-200 Dumps full version.

    http://www.lead2pass.com/1y0-200.html

  • 2014 Latest Citrix 1Y0-200 Dumps Free Download (91-100)

    QUESTION 91
    A Citrix Administrator could upgrade Citrix Receiver using the __________ or the __________. (Choose the two correct options to complete the sentence.)

    A.    Receiver for Web
    B.    Virtual Delivery Agent
    C.    Citrix Receiver updater
    D.    Command-line Interface

    Answer: CD

    QUESTION 92
    Scenario: A user informs a Citrix Administrator that audio quality has degraded on their virtual desktop that uses personal vDisk. Audio was functioning correctly the previous day. Which action should the administrator take to investigate this issue?

    A.    Check the Receiver log on the client device.
    B.    Check the audio redirection setting in a Citrix policy.
    C.    Review the event log on the user’s desktop for errors.
    D.    Open session details for the user in Citrix Director.

    Answer: D

    QUESTION 93
    Scenario: An error is displayed in Citrix Director when a Citrix Administrator attempts to shadow a user connected to a desktop hosted on a server OS machine. Shadowing does NOT start. What is the likely cause of this error?

    A.    Remote Assistance is NOT enabled on the server OS machine.
    B.    Citrix Receiver is NOT installed on the administrator’s workstation.
    C.    The administrator does NOT have the Help Desk role in Citrix Studio.
    D.    Remote Desktop is NOT configured on the administrator’s workstation.

    Answer: A

    QUESTION 94
    Scenario: A user’s virtual desktop session running on XenServer is unresponsive and the user is unable to access any applications. Prior to the session becoming unresponsive, the user was working on a very large financial report and did NOT save it. A Citrix Administrator examines the session and determines that Microsoft Excel has frozen the session. Which tool could the administrator use to end the Excel process without ending the session?

    A.    Citrix Director
    B.    Citrix XenCenter
    C.    Citrix StoreFront
    D.    Task Manager on the Delivery Controller

    Answer: A

    QUESTION 95
    If an administrator does NOT create a highly available SQL environment for a XenDesktop deployment, what will happen when the database goes down?

    A.    New connections CANNOT be brokered, but existing connections are maintained
    B.    New connections can be brokered, but existing desktop connections are dropped
    C.    Existing connections are maintained, and new connections are still brokered to end users
    D.    Existing connections to desktops are dropped, and new connections CANNOT be brokered

    Answer: A

    QUESTION 96
    An administrator needs to set up a XenDesktop environment that will utilize standard images from Provisioning services and host 500 desktops. The desktops will be hosted on blade servers with two solid state drives (SSDs) in each blade server running Microsoft Hyper-V.
    Which type of storage should the administrator use for write-cache drives in this environment?

    A.    NAS
    B.    SAN
    C.    RAM of the target
    D.    Local drive of the target device

    Answer: C

    QUESTION 97
    A Citrix Administrator opens Citrix Studio and is unable to make any changes. What is a likely cause of this issue?

    A.    The XenDesktop database is down.
    B.    The Configuration Logging database is unavailable.
    C.    The administrator is assigned the Desktop Catalog role.
    D.    A firewall is blocking traffic over port 1433 from the administrator’s device.

    Answer: B

    QUESTION 98
    Which action could a Citrix Administrator take to provide management with a daily report of changes in the environment?

    A.    Download the system report in the HDX panel.
    B.    Create an HTML report in configuration logging.
    C.    Export the event logs from all the Delivery Controllers.
    D.    Provide access to the historical trends in Citrix Director.

    Answer: B

    QUESTION 99
    A Citrix Administrator needs to monitor session performance as well as which applications users are accessing. Which Citrix tool should the administrator use for monitoring?

    A.    Studio
    B.    Director
    C.    StoreFront
    D.    XenCenter

    Answer: B

    QUESTION 100
    Scenario: A Citrix Administrator needs to set up a Citrix License Server in the environment. The administrator needs to ensure that all the required ports are opened to access the License Administration Console from the management VLAN. Which port must the administrator ensure is open to access the License Administration Console from this VLAN?

    A.    80
    B.    443
    C.    7279
    D.    8082
    E.     27000

    Answer: D

    If you want to pass the Citrix 1Y0-200 exam sucessfully, recommend to read latest Citrix 1Y0-200 Dumps full version.

    http://www.lead2pass.com/1y0-200.html

  • 2014 Latest Citrix 1Y0-200 Dumps Free Download (81-90)

    QUESTION 81
    Which action should a Citrix Administrator take to identify the source IP addresses of external users who have accessed hosted desktops and applications in a XenDesktop site through NetScaler?

    A.    Configure the Auditing Syslog in the Configuration tab.
    B.    Download the current trace files from the Diagnostics tab.
    C.    Monitor the ‘Current ICA connections’ in the Configuration tab.
    D.    Generate a ‘Current AAA sessions’ report on the Reporting tab.

    Answer: A

    QUESTION 82
    Scenario: A Citrix Administrator creates a delivery group with 20 server OS machines. The machine catalog was provisioned with Machine Creation Services. When viewing the delivery group in Citrix Studio, none of the server OS machines report as registered. What are two potential causes of this issue? (Choose two.)

    A.    The Citrix License Server is NOT started.
    B.    The Virtual Delivery Agent is missing on the master image.
    C.    The server OS machines do NOT have RDS licenses installed.
    D.    The server OS machines are unable to resolve the FQDN of the Delivery Controller.

    Answer: BD

    QUESTION 83
    Scenario: A Citrix Administrator is planning to roll out a Windows 8 image to different device collections. Each department has its own device collection inside of the Provisioning Server. After restarting, a user reports that they are still receiving a Windows 7 desktop upon logon. The other users are receiving Windows 8 desktops, as expected. What should the administrator check to ensure that all users receive the Windows 8 desktop?

    A.    PXE
    B.    vDisk mode
    C.    vDisk assignment
    D.    TFTP boot options

    Answer: C

    QUESTION 84
    Scenario: A Citrix Administrator needs to set up a new provisioning environment. The administrator builds and configures two Provisioning Servers to support 200 target devices. All of the target devices are configured to start up using vDisks that are caching in device HD. Network Engineering mandates that the administrator configure the TFTP service and DHCP scope to assign IP addresses to all the target devices. When the administrator tries to start any target devices, the machines hang and show the error in the attached exhibit.

    clip_image002
    Click the Exhibit button to view the error message.
    Which action could the administrator take to resolve this issue?

    A.    Enable DHCP options 66 and 67.
    B.    Assign a vDisk to the target devices.
    C.    Set the firewall to allow UDP 67 and 68.
    D.    Configure the correct VLAN ID for the target devices.

    Answer: D

    QUESTION 85
    Scenario: A Citrix Administrator needs to manage a lab environment that is being configured to use Receiver for Web. During testing, the administrator finds that a test user is unable to log on to the Receiver for Web, although the username and password are correct. What could be preventing the user from logging on to the Receiver for Web?

    A.    One of the two domain controllers is offline.
    B.    An incorrect domain is configured in the trusted domains.
    C.    The StoreFront website is using an incorrect Delivery Controller.
    D.    One of the configured Delivery Controllers is in maintenance mode.

    Answer: B

    QUESTION 86
    Scenario: A Citrix Administrator is starting up five new server OS machines on a new VLAN using Machine Creation Services. Once the images start up, the servers do NOT register with the Virtual Delivery Agent and do NOT have access to the network. Which component should the administrator check to make sure the Virtual Delivery Agent registers with the controller?

    A.    DNS
    B.    WINS
    C.    DHCP
    D.    NetBIOS

    Answer: C

    QUESTION 87
    In which scenario should a Citrix Administrator configure additional NetScaler session policies in an existing environment?

    A.    Users need VPN access.
    B.    User devices need to be scanned.
    C.    Multiple XenDesktop sites are in use in the environment.
    D.    Multiple authentication methods are used in the environment.

    Answer: B

    QUESTION 88
    Scenario: A Citrix Administrator installs XenServer. The administrator provisions one server OS machine to deliver hosted desktops and applications. After conducting tests, the administrator concludes that performance is poor and that application installation is taking longer than expected.
    The virtual machine takes a long time to install.
    Click the Exhibit button to view the XenServer performance information.

    clip_image002[4]

    clip_image002[6]
    Which component, based on the attached exhibit, could be impacting performance?

    A.    CPU
    B.    Disk I/O
    C.    Memory
    D.    Network

    Answer: B

    QUESTION 89
    Scenario: A Citri
    x Administrator needs to configure StoreFront so that users can access a XenDesktop 7 site and a XenDesktop 5.6 site. Currently, the StoreFront deployment is configured to provide access to the XenDesktop 7 site. Which action must the administrator take to allow users to access both environments from the StoreFront deployment?

    A.    Export the provisioning file for the store.
    B.    Configure the store for ‘Legacy Support’.
    C.    Add the XenDesktop 5.6 Delivery Controllers to the store.
    D.    Configure the Secure Ticket Authority for the XenDesktop 5.6 farm.

    Answer: C

    QUESTION 90
    A Citrix Administrator needs to deploy StoreFront services to thin clients which are running the Online plug-in. Which option should the administrator configure so that the thin clients can connect to the StoreFront servers?

    A.    Export Provisioning File
    B.    Integrate with Citrix Online
    C.    Configure Legacy Support
    D.    Manage Delivery Controllers

    Answer: C

    If you want to pass the Citrix 1Y0-200 exam sucessfully, recommend to read latest Citrix 1Y0-200 Dumps full version.

    http://www.lead2pass.com/1y0-200.html

  • 2014 Latest Citrix 1Y0-200 Dumps Free Download (71-80)

    QUESTION 71
    Which virtual machine resource should a Citrix Administrator modify to allow an end user to run multiple single-threaded applications concurrently?

    A.    NIC
    B.    vCPUs
    C.    Memory
    D.    GPU pass-through

    Answer: C

    QUESTION 72
    A virtual machine has 4 GB of memory and is running a multi-threaded application. What could a Citrix Administrator modify on the virtual machine to decrease application startup time?

    A.    NIC
    B.    vCPUs
    C.    Memory
    D.    GPU pass through

    Answer: B

    QUESTION 73
    Scenario: A Citrix Administrator of a XenDesktop environment needs to create virtual machines, associate Provisioning Server target devices to those machines, assign a standard image vDisk and then add all virtual desktops to a PVS-PVD catalog. A custom template exists. Which wizard will enable the administrator to meet the requirements of the scenario using the least amount of steps?

    A.    Imaging Wizard
    B.    Auto-Add Wizard
    C.    XenDesktop Setup Wizard
    D.    Streamed VM Setup Wizard

    Answer: C

    QUESTION 74
    Scenario: Users in an environment are assigned static desktops with personal vDisks. A Citrix Administrator needs to give a particular user more disk space to install an application. Which two actions should the administrator take to give the user more disk space? (Choose two.)

    A.    Set EnableDynamicResizeofAppContainer to 1.
    B.    Set the virtual hard disk drive to grow dynamically.
    C.    Add a second personal vDisk to double disk space.
    D.    Configure MinimumVHDSizeMB to the desired size.

    Answer: AD

    QUESTION 75
    While performing a database backup, the Citrix Administrator needs to locate the database connection. Which command could the administrator use to check for the database connection?

    A.    GET-AcctService
    B.    GET-AcctDBSchema
    C.    GET-BrokerServiceStatus
    D.    GET-BrokerDBConnection

    Answer: D

    QUESTION 76
    Scenario: A call center is open 24 hours a day, 7 days a week. The employees at the call center report lengthy reconnection times after being disconnected. In order to decrease reconnection times for the employees, a Citrix Administrator must change __________, __________ and __________. (Choose the three correct phrases to complete the sentence.)

    A.    the location of the user profiles
    B.    folder redirection for the home drive
    C.    the peak hours to the whole day for weekdays
    D.    the peak hours to the whole day for the weekends
    E.     ‘When disconnected during peak hours’ to no action

    Answer: CD

    QUESTION 77
    Scenario: A Citrix Administrator updates an existing production vDisk. After promoting the vDisk to production, users report that they are unable to launch Microsoft Word, which is installed locally in the vDisk. Which two steps should the administrator take to resolve the issue as soon as possible? (Choose two.)

    A.    Delete the latest version of the vDisk.
    B.    Revert to the previous version of the vDisk.
    C.    Select ‘Newest released’ from the drop-down menu.
    D.    Restart the target devices associated with the vDisk.
    E.     Select the previous version from the drop-down menu.

    Answer: D

    QUESTION 78
    A Citrix Administrator is managing vDisk replication in Provisioning Services and wants to ensure that all of the versions are replicated to the available member servers. Which three steps should the administrator take to complete this task? (Choose three.)

    A.    Run inventory on the vDisk.
    B.    Replicate the following file formats: VHD, LOK and AVHD.
    C.    Confirm network connectivity among all the member servers.
    D.    Verify that all member servers’ vDisks are marked with blue checkmarks.
    E.     Ensure that the streaming service account has access to replicated vDisk files.

    Answer: CD

    QUESTION 79
    What should a Citrix Administrator implement to improve logon times that are being affected by profile size?

    A.    Logon Scripts
    B.    Offline profiles
    C.    Roaming profiles
    D.    Folder redirection

    Answer: D

    QUESTION 80
    Scenario: A user reports that a financial application is performing poorly. A Citrix Administrator has accessed the server OS machine load evaluator index report from Citrix Director. The administrator reviews the data for the last three months and notices that on the last three days of the month the CPU utilization is trending at 97% while memory utilization is 48%. Based on this information, which two measures could the administrator take to improve performance of the finance application? (Choose two.)

    A.    Add a vCPU to the virtual servers.
    B.    Provision additional virtual servers.
    C.    Add additional RAM to the virtual servers.
    D.    Move the virtual servers to a higher-performance storage subsystem.

    Answer: AB

    If you want to pass the Citrix 1Y0-200 exam sucessfully, recommend to read latest Citrix 1Y0-200 Dumps full version.

    http://www.lead2pass.com/1y0-200.html

  • 2014 Latest Citrix 1Y0-200 Dumps Free Download (61-70)

    QUESTION 61
    Scenario: A Citrix Administrator creates a new master image to be used with Machine Creation Services. When the administrator creates a new machine catalog from this master image, the newly created virtual desktops are unable to join the domain. What is preventing the newly created virtual desktops from properly joining the domain?

    A.    The administrator did NOT run sysprep on the master image.
    B.    The new machines were NOT able to resolve the FQDN of the Delivery Controllers.
    C.    The new machines were NOT able to contact the Active Directory domain controller.
    D.    The master image was NOT a member of the domain before the new machines were created.

    Answer: D

    QUESTION 62
    Scenario: A database server outage occurs on the server that hosts the Provisioning Services database. The database has offline database support enabled. After the database is restored, __________ and __________. (Choose the two correct phrases to complete the sentence.)

    A.    all logs will be available as needed
    B.    the stores will have to be reconfigured
    C.    status changes to device collections will appear
    D.    auditing will show only previously recorded administrative actions

    Answer: CD

    QUESTION 63
    Scenario: Thin clients with locally attached USB HP printers are used in the labs on a university campus. A Citrix Administrator configures the thin clients to connect to server OS machines. The IT director does NOT want to overload the server OS machines with non-native printer drivers. The IT director also wants to control the number of printers in each user’s session. Which two actions should the administrator take to meet the requirements of the scenario? (Choose two.)

    A.    Enable printer properties retention.
    B.    Configure Client LPT port redirection.
    C.    Configure the printer policy to ‘Use Universal Printing Only’.
    D.    Enable the ‘Auto-create local (non-network) client printers only’ setting.

    Answer: CD

    QUESTION 64
    Scenario: A Citrix Administrator must provide the IT manager with access to Citrix Studio to audit the infrastructure. The administrator wants to prevent the IT manager from editing configurations in Studio. Which administrator role should the administrator provide for the IT manager?

    A.    Help Desk Administrator
    B.    Read Only Administrator
    C.    Delivery Group Administrator
    D.    Machine Catalog Administrator

    Answer: D

    QUESTION 65
    Which configuration option should a Citrix Administrator use to keep disconnected sessions open while Citrix Receiver attempts to reconnect automatically?

    A.    High Availability
    B.    Load Balancing
    C.    Session Reliability
    D.    Secure Ticket Authority

    Answer: D

    QUESTION 66
    Scenario: A Citrix Administrator wants to change Provisioning Services from PXE to TFTP. During the migration on a newly created VLAN, the administrator receives the following error:
    Boot device not found.
    Which two DHCP server options should the administrator set so that the virtual machines can start up from the vDisk? (Choose two.)

    A.    60
    B.    66
    C.    67
    D.    69

    Answer: AD

    QUESTION 67
    A Citrix Administrator notices that several virtual desktops in Citrix Studio are unregistered. Click the Exhibit button to view a screenshot of the XenCenter Console.

    clip_image002
    Based on the information in the screenshot, why are the virtual desktops unregistered?

    A.    XenServer is NOT a pool member.
    B.    XenServer is in maintenance mode.
    C.    The virtual machines are NOT running.
    D.    The virtual machines have been suspended.

    Answer: B

    QUESTION 68
    Which two administrator roles must be assigned to a Citrix Administrator to allow the administrator to manage host connections and virtual desktops only? (Choose two.)

    A.    Full
    B.    Host
    C.    Delivery Group
    D.    Machine Catalog

    Answer: BD

    QUESTION 69
    Scenario: A Citrix Administrator creates a policy in the Group Policy Management Console and sets the Session Reliability port to 2600 for an Organizational Unit containing server OS machines. The administrator tests the configuration and determines that the Session Reliability port is still set to 2598. Which two steps should the administrator take to ensure that the new setting is applied? (Choose two.)

    A.    Run rsop.msc.
    B.    Run gpresult /R.
    C.    Run gpupdate /force.
    D.    Restart the server OS machines.

    Answer: CD

    QUESTION 70
    Scenario: A manager uses an iPad to launch applications using Citrix Receiver from outside the domain. When the manager launches applications the following error is displayed:
    Citrix Receiver could not establish connection with remote host. Please contact your administrator for assistance.
    Which component could be causing this issue on the iPad?

    A.    The SSL certificate
    B.    The version of Receiver
    C.    The NetScaler session policy configuration
    D.    The connection performance over 3G Internet access

    Answer: C

    If you want to pass the Citrix 1Y0-200 exam sucessfully, recommend to read latest Citrix 1Y0-200 Dumps full version.

    http://www.lead2pass.com/1y0-200.html

  • Pages:  1 2 3
Posts navigation