Skip to main content

CCNA VOICE Official Guide

CCNA VOICE Official Exam Certification Guide



By : Jeremy Cioara, Michael J. Cavanaugh, Kris A. Krake.
Published by Cisco Press.
Series: Exam Certification Guide.

ISBN-10: 1-58720-207-7;
Published: Nov 7, 2008;
Copyright 2009;
Dimensions 7-3/8 X 9-1/8;
Pages: 576;
Edition: 1st.
CCNA VoICE Certification
The Cisco® CCNA Voice certification confirms that you have the required skill set for specialized job roles in voice technologies such as voice technologies administrator, voice engineer, and voice manager. It validates skills in VoIP technologies such as IP PBX, IP telephony, handset, call control, and voicemail solutions. Candidates also get exposure to the Cisco Unified Communications architecture and design covering mobility, presence, and TelePresence applications.

The CCNA Voice Certification enables employers to validate that their staff possess a strong foundation in voice applications and infrastructure concepts; and are capable of performing baseline installation, operating, and maintenance tasks on Cisco VoIP solutions, particularly the Smart Business Communications System from 8-250 lines.

CCNA Voice Official Exam Certification Guide is a best of breed Cisco exam study guide that focuses specifically on the objectives for the CCNA Voice IIUC 640-460 exam. Senior voice instructors and network engineers Jeremy Cioara, Michael Cavanaugh, and Kris Krake share preparation hints and test-taking tips, helping you identify areas of weakness and improve both your conceptual knowledge and hands-on skills. Material is presented in a concise manner, focusing on increasing your understanding and retention of exam topics.


The official study guide helps you master all the topics on the IIUC exam, including
-Connecting IP phones to the LAN infrastructure
-Cisco Unified CME installation
-Cisco Unified CME IP phone configuration
-Cisco Unified CME voice productivity features
-Gateway and trunk concepts and configuration
-Cisco Unity Express concepts and configuration
-Smart Business Communications System
-Configuring and maintaining the UC500 for voice

http://rapidshare.com/files/166394389/CCNA_Voice.rar

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.