Certification Questions

Q:

How does DHCP client ensure that no other computer has its assigned IP address?

A) Acknowledge receipt of a TCP segment B) Ping to its own address to see if a response is detected
C) Broadcast a Proxy ARP D) Broadcast a gratuitous ARP
 
Answer & Explanation Answer: D) Broadcast a gratuitous ARP

Explanation:

To stop possible address conflicts , a DHCP client will use gratuitous ARP (broadcast an ARP request for its own IP address) to see if another host responds.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 2780
Q:

What is the full IPv6 address represented by FF02::130F:5?

Answer

FF02:0000:0000:0000:0000:0000:130F:0005

Report Error

View answer Workspace Report Error Discuss

Subject: CCNP

0 2780
Q:

If you wanted administrators to see a message when logging into the router, which command would you use?

A) message banner motd B) banner message motd
C) banner motd D) message motd
 
Answer & Explanation Answer: C) banner motd

Explanation:

The typical banner is a message of the day (MOTD) and is set by using the global configuration mode command banner motd.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 2779
Q:

Which of the following is the best description of the operation of split horizon?

A) Information about a route should not be sent back in the direction from which the original update came B) It splits the traffic when you have a large bus (horizon) physical network
C) It holds the regular updates from broadcasting to a downed link D) It prevents regular update messages from reinstating a route that has gone down
 
Answer & Explanation Answer: A) Information about a route should not be sent back in the direction from which the original update came

Explanation:

A split horizon will not advertise a route back to the same router it learned the route from.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 2776
Q:

The SQL keyword BETWEEN is used:

A) for ranges B) as a wildcard
C) to limit the columns displayed D) All the above
 
Answer & Explanation Answer: A) for ranges

Explanation:

In SQL, BETWEEN Keyword is used for ranges like Number Ranges, Date Ranges, etc...

Report Error

View Answer Report Error Discuss

0 2763
Q:

Partial deliveries are controlled by an indicator thet you set in the:

A. Sold to master record.

B. Delivery schedule line category.

C. Delivery document type.

D. Customer material information record.

Answer

Answer : A , D

Report Error

View answer Workspace Report Error Discuss

Subject: SAP SD

0 2763
Q:

What is the purpose of specifying a planning horizon?

A.  Only materials manifesting a planning-relevant change within the planning horizon are taken into account in the MRP run (where NETPL is used).
B.  To specify whether forecasts are included in the material requirement calculation.

C. To specify that only externally procured (and not internally procured) items are included in the net change MRP run.

D. To specify whether a NETCH (net change in complete horizon) or a NETPL (net change in planning horizon) will take place in the next MRP run.

Answer

Answer : A

Report Error

View answer Workspace Report Error Discuss

Subject: SAP MM

3 2763
Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an
application. The application connects to a Microsoft SQL Server 2008 database. The database includes a table named dbo.


Documents that contains a column with large binary dat a. You are creating the Data Access Layer (DAL). You add the following code segment to query the dbo.Documents table. (Line numbers are included for reference only.)


01public void LoadDocuments(DbConnection cnx)
02{
03var cmd = cnx.CreateCommand();
04cmd.CommandText = "SELECT * FROM dbo.Documents";
05...
06cnx.Open();
07
08ReadDocument(reader); }


You need to ensure that data can be read as a stream. Which code segment should you insert at line 07?

A) var reader = cmd.ExecuteReader(CommandBehavior.Default); B) var reader = cmd.ExecuteReader(CommandBehavior.SchemaOnly);
C) var reader = cmd.ExecuteReader(CommandBehavior.KeyInfo); D) var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess);
 
Answer & Explanation Answer: D) var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess);

Explanation:
Report Error

View Answer Report Error Discuss

0 2761