Searching for "st"

Q:

What Is Your Experience with Computerized Payroll Systems or Software?

Answer

Payroll systems accurately maintain data related to payroll processing. Familiarity with formal payroll systems and computerized software ensure the candidate has experience with current payroll technology.

Report Error

View answer Workspace Report Error Discuss

Q:

How Would You Assist an Employee Whose Tax Withholdings Are Inaccurate?

Answer

This question illustrates whether the applicant has experience changing employee income tax withholding amounts. The applicant should be able to describe the necessary forms to use and the process for changing the information in the payroll system.

Report Error

View answer Workspace Report Error Discuss

Q:

How can I retrieve values from one database server and store them in other database server using PHP?

Answer

we can always fetch from one database and rewrite to another. Here is a nice solution of it.$db1 = mysql_connect("host","user","pwd")
mysql_select_db("db1", $db1);
$res1 = mysql_query("query",$db1);$db2 = mysql_connect("host","user","pwd")
mysql_select_db("db2", $db2);
$res2 = mysql_query("query",$db2);At this point you can only fetch records from you previous ResultSet, i.e $res1 – But you cannot execute new query in $db1, even if you supply the link as because the link was overwritten by the new db.so at this point the following script will fail
$res3 = mysql_query("query",$db1); //this will failSo how to solve that?

take a look below.
$db1 = mysql_connect("host","user","pwd")
mysql_select_db("db1", $db1);
$res1 = mysql_query("query",$db1);

$db2 = mysql_connect("host","user","pwd", true)
mysql_select_db("db2", $db2);
$res2 = mysql_query("query",$db2);

So mysql_connect has another optional boolean parameter which indicates whether a link will be created or not, as we connect to the
$db2 with this optional parameter set to 'true', so both link will remain live.

Now the following query will execute successfully.
$res3 = mysql_query("query",$db1);

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

Q:

Refer to the exhibit. Which statement describes DLCI 17?

A: DLCI 17 describes the ISDN circuit between R2 and R3.
B: DLCI 17 describes a PVC on R2. It cannot be used on R3 or R1.
C: DLCI 17 is the Layer 2 address used by R2 to describe a PVCto R3.
D: DLCI 17 describes the dial-up circuit from R2 and R3 to the service provider.

Answer

Answer : C


Explanation:


Virtual circuits (VC)s are identified by DLCIs. DLCI values typically are assigned by the Frame Relay service provider. Frame Relay DLCIs have local significance.  A DLCI identifies a VC to the equipment at an endpoint. A DLCI has no significance beyond the single link. Two devices connected by a VC may use a different DLCI value to refer to the same connection.


Virtual circuits (VC)s are identified by DLCIs. DLCI values typically are assigned by the Frame Relay service provider. Frame Relay DLCIs have local significance.  A DLCI identifies a VC to the equipment at an endpoint. A DLCI has no significance beyond the single link. Two devices connected by a VC may use a different DLCI value to refer to the same connection. - See more at: https://www.orbitco-ccna-pastquestions.com/CCNA-Past-Questions%3A-WAN.php#sthash.nWKdjylM.dpuf
Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

Q:

Which two descriptions are correct about characteristics of IPv6 unicast addressing? (Choose two)

A. Global addresses start with 2000::/3.
B. Link-local addresses start with FF00::/10.
C. Link-local addresses start with FE00:/12.
D. There is only one loopback address and it is ::1.

Answer

Answer : A , D


Explanation:


An IPv6 Unicast address identifies a single network interface. The Internet Protocol delivers packets sent to a unicast address to that specific interface.

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

Q:

The router address 192.168.10.250 is the default gateway for both the Web Server 2 and Host 1. What is the correct subnet mask for this network?

A. 255.255.255.0
B. 255.255.255.192
C. 255.255.255.250
D. 255.255.255.252

Answer

Answer : A

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

Q:

What must be configured on the network in order for users on the Internet to view web pages located on Web Server 2?

A. On router R2, configure a default static route to the 192.168.10.0 network
B. On router r2, configure DNS to resolve the URL assigned to Web Server 2 to the 192.168.10.20 address
C. On router R1, configure NAT to translate an address on the 209.165.100.0/24 network to 192.168.10.20
D. On router R1, configure DHCP to assign a registered IP address on the 209.165.100.0/24 network to Web Server 2

Answer

Answer : C

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

Q:

An administrator issues the command

A. The PC host PC1 has connectivity with a local host
B. The PC host PC1 has connectivity with a Layer 3 device
C. The PC host PC1 has a default gateway correctly configured
D. The PC host PC1 has connectivity up to Layer 5 of the OSI model
E. The PC host PC1 has the TCP/IP protocol stack correctly installed

Answer

Answer : E


Explanation:


The “ping 127.0.0.1″ command is used to troubleshoot the local network card and the TCP/IP stack to make sure is working correctly. If an ICMP echo reply is received, that shows there are connectivity to a particular host in the network.


 

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA