显示标签为“SAIR”的博文。显示所有博文
显示标签为“SAIR”的博文。显示所有博文

2014年4月23日星期三

SAIR meilleur examen 3X0-202, questions et réponses

Avec la version plus nouvelle de Q&A SAIR 3X0-202, réussir le test SAIR 3X0-202 n'est plus un rêve très loin pour vous. Pass4Test peut vous aider à réaliser ce rêve. Le test simualtion de Pass4Test est bien proche du test réel. Vous aurez l'assurance à réussir le test avec le guide de Pass4Test. Voilà, le succès est juste près de vous.

Le test simulation offert par Pass4Test est bien proche du test réel. Vous pouvez apprendre tous essences d'un test réel à courte terme avec l'aide de Pass4Test. Pass4Test peut vous assurer le succès 100% de test SAIR 3X0-202.

Pass4Test vous permet à réussir le test Certification sans beaucoup d'argents et de temps dépensés. La Q&A SAIR 3X0-202 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.

Pass4Test est un site à offrir particulièrement la Q&A SAIR 3X0-202, vous pouvez non seulement aprrendre plus de connaissances professionnelles, et encore obtenir le Passport de Certification SAIR 3X0-202, et trouver un meilleur travail plus tard. Les documentations offertes par Pass4Test sont tout étudiés par les experts de Pass4Test en profitant leurs connaissances et expériences, ces Q&As sont impresionnées par une bonne qualité. Il ne faut que choisir Pass4Test, vous pouvez non seulement passer le test SAIR 3X0-202 et même se renforcer vos connaissances professionnelles IT.

Aujourd'hui, c'est une société pleine de gens talentueux, la meilleure façon de suivre et assurer la place dans votre carrière est de s'améliorer sans arrêt. Si vous n'augmentez pas dans votre carrière, vous êtes juste sous-développé parce que les autres sont meilleurs que vous. Pour éviter ce cas, vous devez vous former successivement.

Code d'Examen: 3X0-202
Nom d'Examen: SAIR (Apache Webserver (Level 2))
Questions et réponses: 90 Q&As

3X0-202 Démo gratuit à télécharger: http://www.pass4test.fr/3X0-202.html

NO.1 Which of the following is a requirement for IP-based virtual hosting?
A. Separate network devices, each with its own I address.
B. Separate IP addresses for each virtual host
C. Separate configuration files for each virtual host.
D. Separate IPAlias directives in the httpd.conf file for each virtual host.
Answer: B

SAIR   3X0-202   certification 3X0-202   certification 3X0-202

NO.2 If a user has already defined a log format called "common, "which of the following directives will
ALWAYS make Apache log requests to "/var/log/apache/access_log" using the " common" format?
A. TransferLog /var/log/apache/access_log format=common
B. TransferLog /var/log/apache/access_log common
C. CustomLog /var/log/apache/access_log format=common
D. CustomLog /var/log/apache/access_log common
Answer: D

SAIR examen   certification 3X0-202   certification 3X0-202   3X0-202   3X0-202

NO.3 Which of the following represents a security concern of programming CGI scripts using the C
programming language?
A. C programs must be run with setuid root.
B. If the program receives more data than the amount of memory it has allocated, a buffer overflow can
cause
the program to exit to a shell on the server.
C. Many early C compile lack the ability to dynamically alter file permissions, which results in many C
program running with root permissions.
D. CGI script written in C compile at runtime on the client system, which makes the client vulnerable.
E. If the server and client do not have identical compiler versions, the lesser compiler is used, which may
have
known exploits.
Answer: B

SAIR examen   3X0-202   3X0-202 examen   3X0-202   3X0-202

NO.4 Consider the file "test.html". Which of the following best describes what code does?
<html>
<from>
<INPUT TYPE=" button" VALUE="set cookie"
onClick = "document. Cookie =`first_name=Fred`;">
<INPUT TYPE = "button" VALUE = "display cookie"
onClick = "alert (document.cokkie);">
</from>
</html>
A. When the user clicks on "set cookie," it prompts the user for value. Once the value is entered, it can be
displayed using the "display cookie" button.
B. When the user clicks on "set cookie," the first_name cookie is set to "Fred." The first_name cookie can
be
displayed by clicking the "display cookie" button.
C. When the user first loads "test.html," first_name is automatically set to "Fred." The value of first_name
can
be seen with the "display cookie" button. The first_name cookie can be reset to empty ("") by clicking the
"set
cookie" button.
D. When the user clicks on the "set cookie" button, a new HTML page is loaded that displays the word
"Fred".
When the user clicks on the "display cookie" button, it alerts the user that it has been deleted.
Answer: B

SAIR   3X0-202 examen   3X0-202   certification 3X0-202   3X0-202

NO.5 Ralf, a user, wishes to upgrade his existing version of Apache by including mod_ssl as a loadable
module.
Assuming that the shared object for mod_ssl is libssl. So, that mod_ssl is located in "/prefix/modules/,"
which of the following must be present in his httpd, conf file?
A. LoadModule mod_ssl modules/libssl.so
B. Addmodule mod_ssl modules/libssl.so
C. LoadModule /prefix/modules/libssl.so mod_ssl
D. AddModule /prefix/modules/libssl.so mod_ssl
Answer: A

certification SAIR   certification 3X0-202   certification 3X0-202   3X0-202   3X0-202   3X0-202

NO.6 An administrator needs to set the permissions an Apache Web server to maximize security, while still
allowing for full functionality. Which of the following permissions are most appropriate for Apache
configuration files and Apache executables, respectively?
A. 755, 000
B. 755, 111
C. 511, 755
D. 777, 555
E. 755, 511
Answer: E

SAIR   3X0-202   3X0-202   certification 3X0-202

NO.7 Tom would like to group all of his CGI scripts to /lib/cgi-bin/. In order to do this, he needs to use the
ScriptAlias directive in the httpd.conf file of his Apache server. What modules need to be compiled in
order for this to work? (Choose two.)
A. mod_cgi.c or any module that supports the common gateway interface
B. mod_bin.c
C. mod_negotiation.c or any module that does protocol negotiation
D. mod_alias.c
E. mod_script.c or any module that does script parsing
Answer: A, D

SAIR   3X0-202   3X0-202   3X0-202

NO.8 One security exploit with Apache is to include a command in a script that lets the scripts execute a
command found in one of its variables. For example, a script might contain the who command and
display a list users logged into the server. Which of the following, if included in a CGI script, will run a
command with the appropriate permissions?
A. declare
B. fork
C. export
D. eval
E. eacho
Answer: D

SAIR   3X0-202   3X0-202   certification 3X0-202   3X0-202

NO.9 Which of the following best explains why Apache Web servers are able to handles multiple requests?
A. In addition to port 80, Apache opens ports 8080,8000, and others to handle the additional requests.
B. Apache is able to spawn child processes that handle requests before they die.
C. Apache uses the renice service to load balance between different system daemons.
D. Upon reaching a set number of requests, Apache uses a raw socket to adjust a system's bandwidth to
handle
the additional requests.
Answer: B

SAIR   3X0-202   certification 3X0-202   certification 3X0-202   3X0-202 examen   3X0-202 examen

NO.10 Which of the following can be used send to used to send a cookie to the http client? (Choose two.)
A. XMLScript
B. Static HTM
C. Java Script
D. CGI scripts
E. GIFScript
Answer: C, D

SAIR   3X0-202   3X0-202

NO.11 How does Apache enable CGI scripts? (Choose two.)
A. It links source pages to the appropriate client compiler.
B. It implements suid and makes the script excitable.
C. It defines content types based on the extension.
D. It references directories that contain the scripts.
Answer: C, D

SAIR   3X0-202   3X0-202 examen   certification 3X0-202

NO.12 Which of the following best explains the function of the KeepAlive directive in Apache 1.1?
A. It defines the length of time Apache will wait before spawning additional processes.
B. It constantly checks on the Apache service and reports via syslogd if there is a server problem.
C. It makes a backup by spawning clones of itself in case the server goes down.
D. It defined how long a server process can keep a connection before shutting down.
E. It tells Apache how long to wait before going into the zombie process state.
Answer: D

certification SAIR   certification 3X0-202   3X0-202 examen

NO.13 Liz has completed an Apache installation on her computer. She did not encounter any errors. Which of
the following can she use to see Apache's default index? (Choose two.)
A. http://localserver
B. http://localhost
C. http://index
D. http://192.268.0.0
E. http://127.0.0.1
Answer: B, E

certification SAIR   certification 3X0-202   3X0-202   3X0-202

NO.14 Which of the following scenarios most accurately describes the Apache initialization sequence?
A. Apache spawns one child process each second until MaxSpareServer is satisfied or MaxClients is
reached.
B. Apache spawns one child, then two, then four, and up to 32 processes per seconds until MaxClients is
reached or Minspare Servers is satisfied.
C. Apache spawns one process then continues to double the number of processes spawned each second
indefinitely until MaxClients is reached or MinSpareServers is satisfied.
D. Apache spawns the needed number of child processes dependent on the incoming requests until
MaxClients
is reached or MinSpareServer is satisfied. For example, if three requests come in, Apache would spawn
three
processes, and soon.
Answer: B

certification SAIR   3X0-202 examen   3X0-202   3X0-202 examen

NO.15 Which of the following HTTP headers will direct a browser to www.site.com after
waiting five seconds?
A. Rewrite 5; URL = http://www.site.com/
B. Location 5; URL = http://www.site.com/
C. Refresh 5; URL = http://www.site.com/
D. Reload http://www.site.com/ -t 5
E. Direct -t 5 http://www.site.com/
Answer: C

SAIR examen   3X0-202 examen   3X0-202 examen   3X0-202   3X0-202   3X0-202

NO.16 Which of the following are TRUE regarding contains in httpd.com? (Choose two.)
A. Containers consist of a Paired set of delimiters.
B. If two containers contradict, the first is applied.
C. Containers may only be applied globally.
D. Containers allow individual virtual hosts to have their own settings.
Answer: A, D

certification SAIR   3X0-202   certification 3X0-202   3X0-202 examen

NO.17 Cookies can be used by Apache to create a click stream log of user activity.
However, for the cookies to work, Apache must be compiled with the _______
module, then the ______ directive must be added to the httpd.conf file.
A. mod_usertrack; Cookie Tracking on
B. mod_cookies; Cookies on
C. mod_cookietracking; cookie Tracking on
D. mod_cookielog; Cookielogging on
E. mod_userlog, cookielogging on
Answer: A

SAIR   3X0-202   3X0-202   3X0-202 examen

NO.18 The block of code below is found in the http conf file. Under what conditions would this block of code
execute?
<If Module !PHP/4.0>
...
</If Module>
A. If PHP/4.0 is NOT compiled or loaded into Apache when the block of code is called
B. If PHP/4.0 is NOT compiled or loaded in the module's shared library when the block of code is called
C. If PHP/4.0 is compiled or loaded into Apache when the block of code is called
D. If PHP/4.0 is compiled or loaded in the module's shared library when the block of code is called
Answer: A

SAIR   certification 3X0-202   3X0-202   3X0-202

NO.19 Jake has the text below in his httpd conf file. He does NOT have mod_mime_magic compiled as part
of
the Apache server configuration. Which of the following are TRUE concerning this information? (Choose
two.)
LoadModule vhost_alias_module modules/mod_vhost _alias.so
# LoadModule env_module modules/mod_env.so
# LoadModule agent_log_module modules/mod_log_agent.so
# LoadModule mime_magic_module modules/mod_mime_magic.so
# LoadModule mime_module modules/mod_mime_magic.s
<IFModeule mod_mime_magic.c>
MIOMEMagicFile share/magic
</ifModule>
A. The MIMEMagicFile directive will be processed.
B. The MIMEMagicFile directive will NOT be processed.
C. The server will NOT be able to use hints in share/magic to determine file types.
D. The server will be able to use hints in share/magic to determine file types.
Answer: B, C

SAIR   3X0-202   3X0-202   3X0-202   certification 3X0-202

NO.20 The system administrator has configured Apache to write its log files via the system logging daemon.
When Apache write its log files to syslog, it will run with the permissions of which user?
A. Always as root
B. Always as nobody
C. Always as webuser
D. Always as the owner of the http process
E. Always as the owner of the syslogd process
Answer: B

SAIR   certification 3X0-202   3X0-202   3X0-202 examen

Pass4Test est un site particulier à offrir les guides de formation à propos de test certificat IT. La version plus nouvelle de Q&A SAIR 3X0-202 peut répondre sûrement une grande demande des candidats. Comme tout le monde le connait, le certificat SAIR 3X0-202 est un point important pendant l'interview dans les grandes entreprises IT. Ça peut expliquer un pourquoi ce test est si populaire. En même temps, Pass4Test est connu par tout le monde. Choisir le Pass4Test, choisir le succès. Votre argent sera tout rendu si malheureusement vous ne passe pas le test SAIR 3X0-202.

2014年4月8日星期二

L'avènement de la certification SAIR pratique d'examen 3X0-103 questions et réponses

Le test SAIR 3X0-103 est bien populaire dans l'Industrie IT. Mais ça coûte beaucoup de temps pour bien préparer le test. Le temps est certainemetn la fortune dans cette société. L'outil de formation offert par Pass4Test ne vous demande que 20 heures pour renforcer les connaissances essentales pour le test SAIR 3X0-103. Vous aurez une meilleure préparation bien que ce soit la première fois à participer le test.

La Q&A SAIR 3X0-103 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 SAIR 3X0-103.

L'équipe de Pass4Test rehcerche la Q&A de test certification SAIR 3X0-103 en visant le test SAIR 3X0-103. Cet outil de formation peut vous aider à se préparer bien dans une courte terme. Vous vous renforcerez les connaissances de base et même prendrez tous essences de test Certification. Pass4Test vous assure à réussir le test SAIR 3X0-103 sans aucune doute.

Le programme de formation SAIR 3X0-103 offert par Pass4Test comprend les exercices et les test simulation. Vous voyez aussi les autres sites d'offrir l'outil de formation, mais c'est pas difficile à découvrir une grand écart de la qualité entre Pass4Test et les autres fournisseurs. Celui de Pass4Test est plus complet et convenable pour la préparation dans une courte terme.

Il y a nombreux façons à vous aider à réussir le test SAIR 3X0-103. Le bon choix est l'assurance du succès. Pass4Test peut vous offrir le bon outil de formation, lequel est une documentation de qualité. La Q&A de test SAIR 3X0-103 est recherchée par les experts selon le résumé du test réel. Donc l'outil de formation est de qualité et aussi autorisé, votre succès du test SAIR 3X0-103 peut bien assuré. Nous allons mettre le jour successivement juste pour répondre les demandes de tous candidats.

Code d'Examen: 3X0-103
Nom d'Examen: SAIR (Linux Networking (Level 1) )
Questions et réponses: 159 Q&As

3X0-103 Démo gratuit à télécharger: http://www.pass4test.fr/3X0-103.html

NO.1 Telnet was developed as a continuation of what other communications program developed for
ARPANET? (Select the best answer.)
A. rpc
B. tele
C. login
D. ftp
E. mutt
F. None of the above
Answer: D

SAIR   3X0-103   3X0-103 examen   3X0-103

NO.2 Which of the following can tunneling be used for?
A. It can connect two IPX networks separated by some different network.
B. It can connect two IPv4 networks separated by some different network.
C. It can provide mobile IP support and amateur radio support.
D. It can connect two IPv6 networks separated by some different network.
E. All of the above.
Answer: E

SAIR examen   certification 3X0-103   3X0-103 examen   3X0-103

NO.3 You wish to communicate with hosts on your wide-area network. Which of the following is the exact
sequence of commands used to manually configure an Ethernet interface, assuming driver modules
are not loaded?
A. lsmod, insmod, ifconfig
B. insmod, ifconfig, route
C. lsmod, rmmod, insmod, ifconfig
D. ifconfig, route
Answer: B

SAIR examen   3X0-103   3X0-103   3X0-103 examen

NO.4 Which of the following can you do with the "ping" command? (Choose two.)
A. Determine if a remote host can be contacted.
B. Create and modify (n)x-u NIS network maps.
C. View the MAC address of a given host.
D. Display the route along which an IP packet travels.
Answer: AD

SAIR   3X0-103 examen   3X0-103 examen   3X0-103   3X0-103 examen

NO.5 Which Resource Record allows the redirecting of mail to another host, assuming the correct
accounts exist?
A. TXT
B. PTR
C. SOA
D. MAIL
E. MX
Answer: E

certification SAIR   3X0-103   3X0-103 examen   3X0-103   3X0-103 examen

NO.6 Which of the following are TRUE about buffer size? (Choose two.)
A. A large buffer can lead to wasted system memory.
B. A small buffer can lead to slower data transfer lines.
C. Having a small buffer will free system memory, allocating fewer registers.
D. The larger the buffer, the faster the transfer rate, reducing time arrival jitter.
Answer: AB

SAIR   certification 3X0-103   3X0-103   3X0-103

NO.7 For a Class C network, which of the following denotes a valid host address on the 192.168.3.0
network?
A. 192.168.3.255
B. 192.168.3.1
C. 192.168.3.0
D. 192.168.3.256
Answer: B

SAIR examen   3X0-103   3X0-103 examen   3X0-103 examen

NO.8 A default policy of DENY and ACCEPT may be implemented for a system's ipchains. Which of the
following options will change the default input policy to DENY?
A. ipchains -a input DENY
B. ipchains -a output DENY
C. ipchains -P input DENY
D. ipchains -all input DENY
E. ipchains -input DENY
Answer: C

certification SAIR   certification 3X0-103   3X0-103

NO.9 Assume that a software company has a subnet address 192.168.1.0/255.255.255.0. How many
possible hosts can this subnet support, and what is the network address for the subnet?
A. 64; 192.168.1.255
B. 254; 192.168.1.0
C. 255; 192.168.1.0
D. 256; 192.168.1.255
E. 128; 192.168.1.1
Answer: B

SAIR   3X0-103   certification 3X0-103   3X0-103 examen   3X0-103

NO.10 Which of the following host IP addresses are on networks normally reserved for intranets? (Choose
three.)
A. 10.1.220.1
B. 12.1.2.4
C. 172.16.0.30
D. 192.168.0.18
E. 187.10.30.200
Answer: ACD

SAIR examen   certification 3X0-103   3X0-103 examen

NO.11 Which of the following commands will allow you to view the ARP table when the configured name
server is not functioning? (Choose the best answer.)
A. arp -v
B. arp -a
C. arp -n
D. arp -s
Answer: C

SAIR examen   3X0-103 examen   certification 3X0-103

NO.12 Which of the following statements is TRUE about the subnet mask?
A. Another name for the subnet mask is the subnet address.
B. In the subnet mask, zeros represent the host ID and ones represent the network ID.
C. In the subnet mask, ones represent the host ID and zeros represent the network ID.
D. The subnet mask is used to aid in name resolution for root name servers.
Answer: B

SAIR   3X0-103   3X0-103 examen   certification 3X0-103   3X0-103   3X0-103 examen

NO.13 Typical implementations of ping use the _____ to send echo requests to other hosts.
A. Internet Protocol (IP)
B. Internet Control Message Protocol (ICMP)
C. User Datagram Protocol (UDP)
D. Transport Control Protocol (TCP)
Answer: B

SAIR examen   certification 3X0-103   3X0-103 examen   certification 3X0-103   3X0-103 examen

NO.14 Which of the following is FALSE concerning TCP, IP, and UDP? (Select the best answer.)
A. Transport Control Protocol (TCP) supports unicast addressing.
B. User Datagram Protocol (UDP) supports unicast addressing.
C. TCP supports multicasting.
D. UDP supports multicasting.
E. Internet Protocol (IP) supports multicasting.
Answer: C

SAIR   3X0-103 examen   3X0-103 examen   3X0-103   3X0-103

NO.15 Which of the following is TRUE concerning the Address Resolution Protocol (ARP)?
A. It binds a physical address to a broadcast address.
B. It binds a MAC (Media Access Control) address to a logical address.
C. It binds a logical address to an IP address.
D. It binds a MAC (Media Access Control) address to a physical address.
Answer: B

SAIR   3X0-103 examen   certification 3X0-103   3X0-103

NO.16 Which path accurately depicts a three-way handshake between Network X and Network Y for
establishing a TCP connection? (Select the best answer.)
A. X sends SYN to Y; Y sends SYN to X; X sends ACK to Y
B. X sends SYN to Y; Y sends two SYNs to X; X sends ACK to Y
C. X sends ACK to Y; Y sends SYN to X ; X sends ACK to Y
D. X sends SYN to Y; Y sends ACK to X ; X sends ACK to Y
E. X sends ACK to Y; Y sends SYN and ACK to X; X sends ACK to Y
Answer: D

certification SAIR   3X0-103   certification 3X0-103   3X0-103

NO.17 inetd is responsible for waiting for new network requests and authenticating users based on the
contents of the "inetd.conf" file.
A. TRUE
B. FALSE
Answer: B

certification SAIR   3X0-103 examen   certification 3X0-103   3X0-103

NO.18 If a machine has an IP address of 192.168.1.61 and the netmask is 255.255.255.0, what is its subnet
address?
A. 192.0.0.0
B. 192.168.0.0
C. 192.168.1.0
D. 0.0.0.61
Answer: C

SAIR   certification 3X0-103   3X0-103   certification 3X0-103

NO.19 Because of flow control, UDP will generally lead to network congestion, while TCP helps prevent
congestion.
A. True
B. False
Answer: A

SAIR examen   certification 3X0-103   3X0-103

NO.20 Which of the following subnet masks is usually associated with a Class A IP address?
A. 255.255.0.0
B. 255.255.255.0
C. 255.0.0.0
D. 255.255.255.255
Answer: C

certification SAIR   3X0-103 examen   3X0-103 examen   3X0-103 examen

Bien qu'il ne soit pas facile à réussir le test SAIR 3X0-103, c'est très improtant à choisir un bon outil de se former. Pass4Test a bien préparé les documentatinos et les exercices pour vous aider à réussir 100% le test. Pass4Test peut non seulement d'être une assurance du succès de votre test SAIR 3X0-103, mais encore à vous aider d'économiser votre temps.

2014年1月18日星期六

Dernières SAIR 3X0-103 examen pratique questions et réponses

La partie plus nouvelle de test Certification SAIR 3X0-103 est disponible à télécharger gratuitement dans le site de Pass4Test. Les exercices de Pass4Test sont bien proches de test réel SAIR 3X0-103. En comparaison les Q&As dans les autres sites, vous trouverez que les nôtres sont beaucoup plus complets. Les Q&As de Pass4Test sont tout recherchés par les experts de Pass4Test, y compris le test simulation.

Pass4Test vous promet de vous aider à passer le test SAIR 3X0-103, vous pouvez télécharger maintenant les Q&As partielles de test SAIR 3X0-103 en ligne. Il y a encore la mise à jour gratuite pendant un an pour vous. Si vous malheureusement rater le test, votre argent sera 100% rendu.

Code d'Examen: 3X0-103
Nom d'Examen: SAIR (Linux Networking (Level 1) )
Questions et réponses: 159 Q&As

Si vous traviallez dur encore pour préparer le test de SAIR 3X0-103 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 SAIR 3X0-103.

L'importance de la position de Certificat SAIR 3X0-103 dans l'industrie IT est bien claire pour tout le monde, mais c'est pas facile à obtenir ce Certificat. Il y a beaucoup de Q&As qui manquent une haute précision des réponses. Cependant, Pass4Test peut offrir des matériaux pratiques pour toutes les personnes à participer l'examen de Certification, et il peut aussi offrir à tout moment toutes les informations que vous auriez besoin à réussir l'examen SAIR 3X0-103 par votre première fois.

3X0-103 Démo gratuit à télécharger: http://www.pass4test.fr/3X0-103.html

NO.1 Which of the following subnet masks is usually associated with a Class A IP address?
A. 255.255.0.0
B. 255.255.255.0
C. 255.0.0.0
D. 255.255.255.255
Answer: C

certification SAIR   3X0-103   3X0-103   certification 3X0-103

NO.2 Which of the following is FALSE concerning TCP, IP, and UDP? (Select the best answer.)
A. Transport Control Protocol (TCP) supports unicast addressing.
B. User Datagram Protocol (UDP) supports unicast addressing.
C. TCP supports multicasting.
D. UDP supports multicasting.
E. Internet Protocol (IP) supports multicasting.
Answer: C

SAIR examen   3X0-103 examen   certification 3X0-103   3X0-103   3X0-103

NO.3 Which of the following can you do with the "ping" command? (Choose two.)
A. Determine if a remote host can be contacted.
B. Create and modify (n)x-u NIS network maps.
C. View the MAC address of a given host.
D. Display the route along which an IP packet travels.
Answer: AD

SAIR examen   3X0-103   3X0-103 examen   certification 3X0-103   3X0-103

NO.4 Typical implementations of ping use the _____ to send echo requests to other hosts.
A. Internet Protocol (IP)
B. Internet Control Message Protocol (ICMP)
C. User Datagram Protocol (UDP)
D. Transport Control Protocol (TCP)
Answer: B

SAIR examen   3X0-103 examen   3X0-103 examen   certification 3X0-103   3X0-103

NO.5 Which of the following commands will allow you to view the ARP table when the configured name
server is not functioning? (Choose the best answer.)
A. arp -v
B. arp -a
C. arp -n
D. arp -s
Answer: C

certification SAIR   3X0-103   3X0-103 examen   certification 3X0-103

NO.6 Because of flow control, UDP will generally lead to network congestion, while TCP helps prevent
congestion.
A. True
B. False
Answer: A

SAIR examen   3X0-103 examen   3X0-103   3X0-103   3X0-103

NO.7 inetd is responsible for waiting for new network requests and authenticating users based on the
contents of the "inetd.conf" file.
A. TRUE
B. FALSE
Answer: B

SAIR   3X0-103   3X0-103

NO.8 Which of the following are TRUE about buffer size? (Choose two.)
A. A large buffer can lead to wasted system memory.
B. A small buffer can lead to slower data transfer lines.
C. Having a small buffer will free system memory, allocating fewer registers.
D. The larger the buffer, the faster the transfer rate, reducing time arrival jitter.
Answer: AB

SAIR   certification 3X0-103   certification 3X0-103   3X0-103

NO.9 If a machine has an IP address of 192.168.1.61 and the netmask is 255.255.255.0, what is its subnet
address?
A. 192.0.0.0
B. 192.168.0.0
C. 192.168.1.0
D. 0.0.0.61
Answer: C

certification SAIR   3X0-103   3X0-103   3X0-103 examen   3X0-103 examen

NO.10 You wish to communicate with hosts on your wide-area network. Which of the following is the exact
sequence of commands used to manually configure an Ethernet interface, assuming driver modules
are not loaded?
A. lsmod, insmod, ifconfig
B. insmod, ifconfig, route
C. lsmod, rmmod, insmod, ifconfig
D. ifconfig, route
Answer: B

SAIR examen   certification 3X0-103   3X0-103 examen   certification 3X0-103

NO.11 Which path accurately depicts a three-way handshake between Network X and Network Y for
establishing a TCP connection? (Select the best answer.)
A. X sends SYN to Y; Y sends SYN to X; X sends ACK to Y
B. X sends SYN to Y; Y sends two SYNs to X; X sends ACK to Y
C. X sends ACK to Y; Y sends SYN to X ; X sends ACK to Y
D. X sends SYN to Y; Y sends ACK to X ; X sends ACK to Y
E. X sends ACK to Y; Y sends SYN and ACK to X; X sends ACK to Y
Answer: D

SAIR examen   3X0-103   certification 3X0-103   3X0-103 examen   3X0-103 examen

NO.12 Which of the following host IP addresses are on networks normally reserved for intranets? (Choose
three.)
A. 10.1.220.1
B. 12.1.2.4
C. 172.16.0.30
D. 192.168.0.18
E. 187.10.30.200
Answer: ACD

certification SAIR   3X0-103   3X0-103

NO.13 A default policy of DENY and ACCEPT may be implemented for a system's ipchains. Which of the
following options will change the default input policy to DENY?
A. ipchains -a input DENY
B. ipchains -a output DENY
C. ipchains -P input DENY
D. ipchains -all input DENY
E. ipchains -input DENY
Answer: C

SAIR   3X0-103   3X0-103   3X0-103

NO.14 Which Resource Record allows the redirecting of mail to another host, assuming the correct
accounts exist?
A. TXT
B. PTR
C. SOA
D. MAIL
E. MX
Answer: E

certification SAIR   3X0-103   certification 3X0-103   3X0-103   3X0-103   3X0-103

NO.15 For a Class C network, which of the following denotes a valid host address on the 192.168.3.0
network?
A. 192.168.3.255
B. 192.168.3.1
C. 192.168.3.0
D. 192.168.3.256
Answer: B

SAIR examen   3X0-103   certification 3X0-103   3X0-103

NO.16 Which of the following statements is TRUE about the subnet mask?
A. Another name for the subnet mask is the subnet address.
B. In the subnet mask, zeros represent the host ID and ones represent the network ID.
C. In the subnet mask, ones represent the host ID and zeros represent the network ID.
D. The subnet mask is used to aid in name resolution for root name servers.
Answer: B

SAIR   3X0-103   3X0-103   3X0-103

NO.17 Which of the following is TRUE concerning the Address Resolution Protocol (ARP)?
A. It binds a physical address to a broadcast address.
B. It binds a MAC (Media Access Control) address to a logical address.
C. It binds a logical address to an IP address.
D. It binds a MAC (Media Access Control) address to a physical address.
Answer: B

certification SAIR   3X0-103   certification 3X0-103

NO.18 Telnet was developed as a continuation of what other communications program developed for
ARPANET? (Select the best answer.)
A. rpc
B. tele
C. login
D. ftp
E. mutt
F. None of the above
Answer: D

SAIR examen   3X0-103   3X0-103 examen   certification 3X0-103

NO.19 Which of the following can tunneling be used for?
A. It can connect two IPX networks separated by some different network.
B. It can connect two IPv4 networks separated by some different network.
C. It can provide mobile IP support and amateur radio support.
D. It can connect two IPv6 networks separated by some different network.
E. All of the above.
Answer: E

SAIR   3X0-103   3X0-103

NO.20 Assume that a software company has a subnet address 192.168.1.0/255.255.255.0. How many
possible hosts can this subnet support, and what is the network address for the subnet?
A. 64; 192.168.1.255
B. 254; 192.168.1.0
C. 255; 192.168.1.0
D. 256; 192.168.1.255
E. 128; 192.168.1.1
Answer: B

certification SAIR   3X0-103   3X0-103   3X0-103   3X0-103

Au 21er siècle, il manque encore grand nombreux de gens qualifié de IT. Le test Certificat IT est une bonne façon à examiner les hommes de talent. Ce n'est pas un test facile à réussir. Un bon choix de formation est une assurance pour le succès de test. Le test simulation est bien proche que test réel. Vous pouvez réussir 100%, bien que ce soit la première à participer le test.