Skip to main content

CCNA Practice Exam - Cisco Certified Network Associate 640-802

About CCNA™ certification: CCNA - Cisco Certified Network Associate is an entry level certification and the most popular Cisco certification. Getting CCNA certified ensures that the candidate has enough knowledge to plan, configure, and operate simple routed WAN and switched LAN networks using Cisco products. CCNP - Cisco Certified Networking Professional is the next level of certification offered in the Cisco product implementation track. No pre-qualification is necessary to take CCNA exam.  640-802 is the only exam necessary to pass for obtaining CCNA certification. The exam covers topics on Extending Switched Networks with VLANS, Determining IP Routes, Managing IP traffic with Access Lists and extended Access Lists, Establishing Point-to-Point connections, OSPF, and Establishing Frame Relay Connections. You can also obtain CCNA certification by passing two exam track consisting of CCNA ICND1 (640-822), and CCNA ICND2 (640-816).

Cisco® CCNA Certification Exam Details*:



Exam #
640-802 (Cisco Certified Network Associate)
Number of questions
50-60
Time allowed
90 minutes
Passing score
849/1000**
Register for exam at
VUE (www.vue.com/cisco)
Exam objectives
http://www.cisco.com/web/learning/le3/current_exams/640-802.html
Books Recommended
Download Practice tests 
View practice questions
Buy practice tests
 Questions types Cisco Career Certification exams include the following test formats:
  • Multiple-choice single answer
  • Multiple-choice multiple answer
  • Drag-and-drop
  • Fill-in-the-blank
  • Testlet
  • Simlet
  • Simulations
Exam Objectives
  1. Describe how a network works
  2. Configure, verify and troubleshoot a switch with VLANs and interswitch communications
  3. Implement an IP addressing scheme and IP Services to meet network requirements in a medium-size Enterprise branch office network.
  4. Configure, verify, and troubleshoot basic router operation and routing on Cisco devices
  5. Explain and select the appropriate administrative tasks required for a WLAN
  6. Identify security threats to a network and describe general methods to mitigate those threats
  7. Implement, verify, and troubleshoot NAT and ACLs in a medium-size Enterprise branch office network.
  8. Implement and verify WAN links
* It is recommended that you verify with the official Web site for current and exact information.

Comments

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.