CCIE RS Instruction - For the World Class IT Certification

CCIE RS instruction is supposed for those extremely prospective networking experts and is a wide-ranging learning software. It can be imagined of to quicken your competency to an qualified degree, despite the fact that giving you the abilities and coaching to cross this rigorous exam. CCIE is the easiest method to have the Cisco internetwork Pro Certification.  It's also the very best level of certification, which is provided by Cisco Methods. IT pros managing massive networks and expert in implementing Cisco programs desire to go an in depth test to receive this certification.

The CCIE RS coaching is executed at CCIE coaching universities, which has tutors, lecturers, and boot camps. Inside of the CCIE, one can find 6 tracks, specially, Storage Networking, Voice and Wi-fi, Routing & Switching, Service Provider, and Security. This examination is considered to be seriously tough and excellent one to clear, providing you with technical experience and dedication. This also makes you a member of an exclusive group of pros, makes your resume look grand, and will increase your credibility.

Moving forward in career is the ambition of most IT pros. CCIE RS coaching will provide the platform to supply a bonus in the job market.  Once you begin in search of higher opportunities in or exterior your company, the CCIE certification will provide help to attain your objective simply on this aggressive planet.

You'll have many reasons for taking CCIE RS coaching; getting excessive salary could possibly be considered one of them. Getting this certification will not be a simple work; it takes years, sometimes, to clear the exams. It takes eighteen months and a whole bunch of dollars to clear this examination, which happens to be why there's large marketplace for such licensed gurus. The plus side to it truly is that, with such limited certified professionals and high demand for them, the salaries offered are especially high.

After receiving the CCIE RS coaching, you might be believed of to be an knowledgeable in the networking field. Subsequently, if a tough scenario arises, you might be at all times called in to settle the problem. When you will have this certification, you may be acknowledged worldwide for having high qualification within the networking and technology industry.

Its essential to understand the general means of CCIE RS coaching examination, so that you will understand the form of workout which can be needed. This examination consists of two principal elements, the written, and the lab examination. The written half is of two hours size containing a number of-choice question. You'll be able to sit for the lab examination only if you are successful in the written exam.  The lab examination is an eight-hour one that can take a look at your capacity to put collectively networking and software equipment and your troubleshooting ability.  Three years are furnished for passing the lab examination, after which you desire to reappear for the written test before continuing for the lab test again.

A lot of the candidates showing for the CCIE RS workout examination do not go on the first attempt. Nonetheless, there is fairly a high price of success in the second attempt. To enhance the probabilities of success in this test, you should research the subjects that are exam specific. One essential issue to be kept in thoughts is that, after receiving this certificate, you should recertify each two years.

Consider learning concerning the expertise in every area as listed within the Cisco blueprint. It is actually recommended to have not less than four hundred hours of lab follow applying a simulated gear as a method to succeed inside of the CCIE security lab test. Dedicate a part of your day in mastering every topic. You will find various study materials obtainable available in the market for better understanding of the subjects talked about inside the blueprint of Cisco. They assist you to in making ready yourself by way of the aid of structured software. You'll be able to spend money on a good exercise application, which lets you improve your amount of expertise.

You can go for online schooling packages from reputed corporations, which provide observe assessments and different helpful services to enhance your skills. CCIE safety can be utilized as a ladder in the direction of success. It can be accepted as a recognized certification program in the networking industry worldwide. A CCIE in security will open the gateway towards a shiny career.

working in the routers

The solution to this concern depends on the sort of website traffic distinctions you wish to make, also the edition of IOS you will be working on your routers.

There have to be a thing that defines the various types of visitors which you wish to prioritize. In most cases, the less difficult the distinctions are for making, the better. This is because all of the tests take router resources and introduce processing delays. The commonest rules for distinguishing concerning page views variations make use of the packet's input interface and rather simple IP header detail these types of as TCP port quantities. The next examples demonstrate simple methods to set an IP Precedence worth of speedy (two) for all FTP management site traffic that arrives through the serial0/0 interface, and an IP Precedence of concern (one) for all FTP information targeted visitors. This distinction is feasible due to the fact that FTP management visitors employs TCP port 21, and FTP info makes use of port 20.

The brand new methodology for configuring this employs class maps. Cisco number one launched this attribute in IOS Model twelve.0(five)T. This process foremost defines a class-map that specifies how the router will determine this type of visitors. It then defines a policy-map that really helps make the modifications to your packet's TOS subject:

Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#access-list 101 permit any eq ftp any
Router(config)#access-list 101 permit any any eq ftp
Router(config)#access-list 102 permit any eq ftp-data any
Router(config)#access-list 102 permit any any eq ftp-data
Router(config)#class-map match-all ser00-ftpcontrol
Router(config-cmap)#description branch ftp control traffic
Router(config-cmap)#match input-interface serial0/0
Router(config-cmap)#match access-group 101
Router(config-cmap)#exit
Router(config)#class-map match-all ser00-ftpdata
Router(config-cmap)#description branch ftp data traffic
Router(config-cmap)#match input-interface serial0/0
Router(config-cmap)#match access-group 102
Router(config-cmap)#exit
Router(config)#policy-map serialftppolicy
Router(config-pmap)#description branch ftp traffic policy
Router(config-pmap)#class ser00-ftpcontrol
Router(config-pmap-c)#set ip precedence immediate
Router(config-pmap-c)#exit
Router(config-pmap)#class ser00-ftpdata
Router(config-pmap-c)#set ip precedence priority
Router(config-pmap-c)#exit
Router(config-pmap)#exit
Router(config)#interface serial0/0
Router(config-if)#ip route-cache policy
Router(config-if)#service-policy input serialftppolicy
Router(config-if)#exit
Router(config)#end
Router#

For earlier IOS versions, just where class-maps ended up not to choose from, you could have to utilize policy-based routing to alter the TOS subject inside a packet. Making use of this coverage for the interface tells the router to implement this coverage to check all incoming packets on this interface and rewrite the ones that match the route map:Router#configure terminal

Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#access-list 101 permit any eq ftp any
Router(config)#access-list 101 permit any any eq ftp
Router(config)#access-list 102 permit any eq ftp-data any
Router(config)#access-list 102 permit any any eq ftp-data
Router(config)#route-map serialftp-rtmap permit 10
Router(config-route-map)#match ip address 101
Router(config-route-map)#set ip precedence immediate
Router(config-route-map)#exit
Router(config)#route-map serialftp-rtmap permit 20
Router(config-route-map)#match ip address 102
Router(config-route-map)#set ip precedence priority
Router(config-route-map)#exit
Router(config)#interface serial0/0
Router(config-if)#ip policy route-map serialftp-rtmap
Router(config-if)#ip route-cache policy
Router(config-if)#exit
Router(config)#end
Router#

Prior to you can still tag a packet for extraordinary remedy, you will have to acquire an especially very clear idea of what styles of customers ought particular procedure, together with precisely what sort of amazing procedure they may really want. From the case in point, we've got chose to give a exclusive priority to FTP potential customers obtained on a precise serial interface. We display proven methods to try this utilizing both the outdated and new configuration ways.
This will likely appear to become a fairly artificial illustration. Just after all, why would you care about tagging inbound site visitors that you just have by now received from a low-speed interface? Realistically, one of many most significant concepts for employing QoS within a network is that it's best to always tag the packet as early as you possibly can, preferably at the edges within the network. Then, since it passes throughout the network, each and every router only needs to investigate the tag, and doesn't really need to do any increased classification. In this instance, we might guarantee which the FTP site visitors returning inside the other gouvernement is tagged through the first of all router that receives it. And so the outbound site traffic has by now been tagged, and it is a waste of router sources to reclassify the outbound packets.

A good number of organizations actually consider this idea of marking at the edges just one step further, and remark every last received packet. This assists to guarantee that consumers are not requesting extraordinary QoS privileges they aren't allowed to possess. All the same, you need to be thorough of this given that it will probably every now and then disrupt legit markings. As an example, a real-time software may very well use RSVP to order bandwidth with the network. It is usually vital the packets for this software have the proper Expedited Forwarding (EF) DSCP marking or perhaps the network may not deal with them thoroughly. Nevertheless, additionally you will not choose to permit other non-real-time purposes from this same source possess the exact EF priority degree. So, for anyone who is going to configure your routers to remark all incoming packets in the edges, make certain you know what incoming markings are legitimate.

In that situation, the routers are operating DLSw to bridge SNA traffic by way of an IP network. So the routers themselves really generate the IP packets. This makes an additional challenge for the reason that there exists no incoming interface. Making sure that recipe works by using nearby policy-based routing. The very fact which the router results in the packets also presents it a very important advantage as it doesn't have to look at any DLSw packets that may just occur to go through.

The advantages on the more recent class-map methodology are not evident in this particular example, but one of several initially large strengths appears in order for you to implement the more current DSCP tagging scheme. Since the mature policy-based routing system isn't going to straight help DSCP, you might have to pretend it by setting both the IP Precedence together with the TOS independently as follows.

Router(config)#route-map serialftp-rtmap permit 10
Router(config-route-map)#match ip address 115
Router(config-route-map)#set ip precedence immediate
Router(config-route-map)#set ip tos max-throughput

In this case, the packet will wind up with an IP Precedence value of immediate, or 2 (010 in binary), and TOS of max-throughput, or 4 (0100 in binary).

Doing the same thing with the class-map method is much more direct:

Router(config)#policy-map serialftppolicy
Router(config-pmap)#class serialftpclass
Router(config-pmap-c)#set ip dscp af21

Class-maps can even be valuable later within this chapter after we mention class-based weighted honest queuing and class-based website traffic shaping.
It is necessary to notice that in the course of this whole instance, we've only put a wonderful worth into your packet's TOS or DSCP field. This, by alone, would not have an effect on how the packet is forwarded via the network. To do that, you have to make sure that as every router with the network forwards these marked packets, the interface queues will react appropriately to this information and facts.

As a final point, we should be aware that whilst this recipe demonstrates two advantageous ideas of marking packets, applying Committed Accessibility Charge (Car) qualities. Motor vehicle tends to become even more reliable on larger pace interfaces.

CCIE Lab Examination - Some Valuable Tips and Guidance

CCIE Lab Examination - Some Valuable Tips and Guidance

Utilizing CCIE, specialists have an opportunity to determine on their own in the discipline of networking. Just a few thousand persons are thought to crystal clear the CCIE examination. CCIE labs are considered to impart substantial stage of training ambiance, which functions being a substantial profit for candidates.

CCIE examination entails two assessments, which are a CCIE written check as well as a CCIE lab examination. To be able to endeavor the lab test, that you must obvious the authored test. For everybody who is not in the placement to obvious the authored examination the initial time, you have to check out for the hundred and eighty days for retaking it. As a result of clearing the written check out, it is really preferred for making an strive for that CCIE lab examination within eighteen months. It you happen to be not able to clear the lab examination, then you definitely could re-try within 12 months by having a see to take care of the penned examination end result legitimate.

It's a time prohibit of two hours and is carried out in a range of have a look at centers across the world. The subjects lined in the written exam rely upon the specialization or monitor you end up picking. For provider provider, you may opt for from categories like Cable, DSL, IP Telephony, Dial, Written content content Networking, Optical, WAN switching, and Metro Ethernet. Every authored test is constructed available within the beta style at a price of $50 USD.

The CCIE lab examination is exceptional in naturel, as you'll find it an eight-hour test, which tests the facility belonging to the applicant to configure and troubleshoot networking gear. Cisco has excessive degree of kit in its CCIE labs to be used around the lab exams. The blue print of this lab test is available on its web-site. The lab examination is just not offered in any respect Pearson VUE or Prometric testing centers.

A regular CCIE R&S lab examination contains a two-hour hassle-taking pictures section by which you're presented a collection of tickets for preconfigured networks in the CCIE labs. It's best to have the ability to identify and resolve the faults. You can proceed towards the configuration part right after you end the troubleshooting part.

A sound passing score is critical to try a CCIE lab exam. Cisco uses the help of proctors to guage the candidates during the preliminary rounds in its CCIE Lab Exam located worldwide. Factors are awarded when a criterion is met and grading is completed utilizing some computerized tools. The outcomes of a lab examination are mirrored within forty eight hrs. A move/fail is projected throughout the end result and in case of a fail, the areas where you are lacking behind are talked about so as to put together properly earlier than a re-try.

Cisco stands out in the field of networking by providing a CCIE certification so that you can pursue your education as well as get acknowledged by a reputed organization. The CCIE Labs examination can be utilized as being a platform to challenge your capability in varied tracks provided by Cisco. Attempting a lab exam requires rigorous coaching and great sense of understanding. The CCIE labs variety step one to your higher potential career.

Classifying Traffic of CCIE Exam

As traffic moves through the CCIE firewall, it can be identified or classified according to the matching conditions defined in a class map. You can configure multiple class maps to identify several different classes of traffic. Then a different policy can be applied to each traffic class if necessary.

You can use the following steps to configure a class map for identifying a specific type of traffic. The modular policy framework is available only in PIX 7.0 and later. Therefore, this is the only command syntax shown in these steps.

If you need to match against source and/or destination addresses in the access list, you need to consider any address translations that are occurring. Specify IP addresses with the values they will have after address translation. In other words, the match operation in a class map is handled after any relevant address translations.

Quality of  CCIE service provider is a device's capability to forward packets in an efficient, predictable, and reliable manner. Some types of traffic, such as voice and video applications, require data to be delivered without delay and without jitter (variations in delay).

In releases before PIX 7.0, a firewall could handle traffic only on a "best-effort" basis, in which packets were inspected and forwarded in the order in which they were received. Beginning with PIX 7.0, a firewall can classify packets and place them in a priority queue. This interface queue is serviced ahead of any other queue so that any priority packets are sent first.

You can use class maps to match against two types of QoS parameters: IP Precedence and Differentiated Services Code Point (DSCP). These values are included in every CCIE voice IP packet header. They indicate the QoS level that is needed for each packet's delivery. IP Precedence is included in the type of service (ToS) byte.

Configuring AAA to Manage Administrative Users

You can use external AAA servers to manage users who connect to the Cisco CCIE firewall for administrative purposes. Usernames and passwords are created or deleted on one or more centralized AAA servers. The firewall can query the servers when users connect and need to be authenticated. Firewall com-mand authorization can also be used when various users must be limited to specific privilege levels and sets of commands. A firewall can also generate user accounting information that is collected by the external servers.
You can use the configuration steps covered in the following sections to set up AAA for admin-istrative user management.
Enabling AAA User Authenticatio Follow these steps to configure administrative user authentication with AAA servers:
1.  Authenticate with a AAA server group:
Firewall(config)# aaa authentication telnet console server_tag [LOCAL]

The AAA CCIE  service provider group named server_tag is used to handle authentication requests. The server group must be configured as a separate step, as described in section 5-3, "Defining AAA CCIE Service Provider for User Management." Each server defined in the group is tried in succession in case some are unreachable or unavailable.
If all the servers in the group are down or the firewall can't reach any of them because of networking issues, the user authentication fails. This means that you can effectively be locked out of the firewall, unable to make any configuration changes or execute any commands.
As a fallback measure, you can add the LOCAL keyword to make the firewall use local authentication after trying the AAA server group. Even if the network is down, the local user database always is available as a way to authenticate with and connect to the firewall. You should define some administrative users on the firewall with the username command. You don't need to duplicate the entire set of users defined on the AAA servers. Just define enough usernames to allow you and your staff to connect.
2.  (Optional) Authenticate users for enable mode:
Firewall(config)# aaa authentication enable console server_tag [LOCAL]

By default, privilege level 15 is defined with the enable password configuration command. Any user who can successfully authenticate with the firewall can also use the enable command to move to level 15, regardless of the privilege level set for the username. As well, all users share the same password for privilege level 15.
You can configure enable authentication so that each user must enter an independent enable password to reach a higher privilege level. With a AAA CCIE service provider group, you can define a unique enable password for each user.
After a user is authenticated with his or her enable password, the privilege level is changed to the level configured for the username. In other words, the privileged EXEC level is set on a per-user basis; not every user automatically arrives at level 15.

QoS Components

As discussed in Chapter 1, QoS is comprised of various components. This chapter discusses the following QoS components in detail:
Congestion Management   Congestion Avoidance  Traffic Conditioning  Link Efficiency
Each QoS component plays an important role in building an overall QoS strategy for your network, and each component offers unique characteristics that add value to your strategy.
In addition to discussing the various components, this chapter introduces you to some Cisco implementations of these components. After discussing the concepts in general terms, this chapter provides configuration examples and details how to verify your configurations using show commands.
Simply defined, congestion exists when an interface is offered more traffic for transmission than it is capable of transmitting. Congestion is usual in several common network design scenarios:
LAN-to-WAN connections— When traffic is flowing from a LAN, where bandwidth is typically at least 10 Mbps, to a WAN, where bandwidth is typically less than 10 Mbps, the possibility of congestion is very real.
Aggregation— When several links are aggregated and their traffic transmitted over a single link, the possibility exists that a situation may cause congestion. If ten 10-Mbps links were being aggregated into a Gigabit Ethernet connection, congestion would not be possible, because the single link's bandwidth would exceed that of the aggregated links. However, it is more common to see 24 or even 48 100-Mbps ports aggregated into a single Gigabit Ethernet uplink. In this situation, the sum of traffic from the aggregated links has the potential to exceed the capacity of the gigabit port.
Speed mismatch— It is also possible to have congestion when traffic flows downstream, from higher-speed aggregation links to lower-speed access links. For example, traffic coming from the core of the network, through a Gigabit Ethernet link, to a PC that is connected by a 100-Mbps connection may experience congestion. In this example, the congestion point would occur at the 100-Mbps Ethernet port, as traffic tries to egress that port toward the PC.

Take CCIE training at cathayschool,it will give you the chance to pass the exam at your first attemp.Do not miss any chance and visit our website now!

reprint from blogcathayschool.com

TestKing Cisco CCIE Service Provider Preparation

Thousands try and fail their exams every month using the mass media Cisco CCIE Service Provider book and CCIE Service Provider class route. The problem with Cisco CCIE Service Provider classes however is the time commitment and tight schedule that are required, much like very expensive Cisco CCIE Service Provider boot camps. Test King saves students and individuals seeking legitimate Cisco CCIE Service Provider certification training by creating modular preparation packages that can be combined into a full Cisco CCIE Service Provider cert training experience. This format keeps the training affordable and flexible to the professional's schedule.

Using many of the same training techniques and solid foundation found in a Cisco CCIE Service Provider bootcamp, TestKing allows your schedule to be free and train when it is convenient to you. This method is unique to our Cisco CCIE Service Provider course and simply cannot be duplicated in typical Cisco CCIE Service Provider classes.

Test King helps you go beyond the Cisco CCIE Service Provider exam details and position you to pass your CCIE Service Provider exam papers with confidence knowing you are best prepared to answer any applied Cisco CCIE Service Provider material using your foundational skills as a fully trained IT professional. Complete training is the only and best solution to ensure that your future and career are secured based on solid learning and understanding of even the most complicated Cisco CCIE Service Provider advanced topics. We accomplish this using a combination of Cisco Certified Internetwork Expert (Service Provider) lab questions and thorough Cisco CCIE Service Provider online tests to monitor success and evaluate progress.

CCIE Service Provider Hardware Specification

Internetwork Expert’s CCIE Service Provider Lab Workbook Volume II uses the
same hardware specification that is used in the actual CCIE lab exam. This
includes seven routers with Ethernet, FastEthernet, GigabitEthernet, ATM, and
Serial interfaces. The routers run a combination of 12.2S, 12.3T, and 12.4 IOS.
In addition to the seven routers, two Catalyst 3550 series switches running the
enhanced multilayer software image (EMI) are also included.
As per the actual CCIE lab hardware specification IEWB-SP-VOL2 also includes
various external devices that are not within the control of the candidate. These
devices include a Frame Relay switch, an ATM switch, and three backbone
routers to inject routes and facilitate in the testing of configurations.
The physical topology of IEWB-SP-VOL2 remains the same throughout the entire
workbook. Therefore once your lab has been physically cabled to meet the
workbook’s specification there is no need to change the cabling in order to
complete each lab.

Tested by multiple times before publishing

Note:This pdf demo do not include the question's picture.
Exam : Cisco 350-026
Title : CCIE SP Content Networking ENU
1. How does RADIUS implement AAA?
A. Authentication, Authorization and Accounting are in separate exchanges, yet on the same UDP connection. The
entire connection
is encrypted.
B. Authentication, Authorization and Accounting are in separate exchanges and each occurs on a different UDP
connection. Only the
authentication connection is encrypted.
C. Authentication, Authorization and Accounting are in separate exchanges and each occurs on a different UDP
connection. Only the
password in the authentication connection is encrypted.
D. Authentication, Authorization and Accounting are in separate exchanges, yet on the same UDP connection. Only
passwords are
encrypted.
E. Authentication and Authorization is combined in one exchange. Accounting happens in a separate exchange.
Authentication and
Authorization data are carried on a UDP connection. The user password is encrypted. Accounting data is carried
unencrypted
over another UDP connection.
Answer: E
2. The website www.foo.com is having problems. The PC you are troubleshooting from does not have a web browser
or sniffer software installed. Which method is the next best way to verify that the website will return the web page with
content:
A. tracert www.foo.com 80
B. ping www.foo.com
C. telnet www.foo.com 80
GET / HTTP/1.0
D. telnet www.foo.com 80
E. telnet www.foo.com 80
HEAD / HTTP/1.0
Answer: C
3. To maintain schema-consistency in an LDAP Directory Information Tree (DIT), the LDAP standard specifies that:
A. The client first downloads the DIT schema from the server and then makes sure every request it sends conforms to
the schema;
The server therefore doesn't have to check DIT for consistency
B. The operator periodically scans the DIT to check that the schema is not violated, and manually corrects any
inconsistencies caused by clients
C. The server periodically scans the DIT to check that the schema is not violated, and sends a notification to the
operator when it finds an inconsistency caused by clients
D. The server periodically converts the DIT to an SQL database; Schema-checking is done by the SQL engine and
then the database is converted back to a DIT
E. The server checks every client operation for schema consistency, and ignores requests that would result in a DIT
inconsistency
Answer: E
4. ATM cells are received across a link on a:
A. Known PVC or SVC value
B. Known VCI or VPI value
C. Known PVC or VCI value
D. Known SVC or VPI value
Answer: B
5. What is the usual procedure taken if an unrecognized non-mandatory ISDN IE is received by a network?
A. Final handle the call
B. Final handle the call if 2 such IE is received
C. Ignore only if the IE received is not CS0, otherwise final handle the call
D. Send a Facility msg to the user notifying the user of sending unknown IEs but don't final handle
E. Ignore the IEs
Answer: E
6. Click the Exhibit button to view the topology.
In this diagram, Host G is attempting to send a packet to Host A through Router E. All routers are running EIGRP,
and Router E has installed the following route in its routing table:
10.1.1.0/24 via router F
What will occur when Router E receives packets from Host G that are destined for Host A?
A. E cannot have a route to 10.1.1.0/24 through F; so it will always choose the path through C.
B. This is a routing loop; E will forward the traffic to F, and F will send the traffic back to E.
C. Router E will forward the traffic to Router F.
D. Router E will forward the traffic to Router F and send a 'host not reachable this direction' ICMP packet to Host G.
E. Router E will forward the traffic to Router F and send an ICMP redirect to Host G.
Answer: E
7. In box-to-box redundancy on the CSS, to configure an ip circuit (VLAN) as a redundant circuit, what command is
used?
A. Redundant-circuit
B. Redundant-type-circuit
C. Redundancy
D. Redundancy-type-circuit
E. None of the above
Answer: C
8. MPLS traffic engineering routing information is carried by:
A. BGP MEDs
B. MP-BGP
C. OSPF Opaque LSAs or IS-IS TLVs
D. RTP or RTCP packets
Answer: C
9. Click the Exhibit to view the topology.
In this network, Host A is trying to reach Host D. There is no routing protocol running, but Router B and C have the
following static routes configured:
Router B: ip route 10.1.3.0 255.255.255.0 ethernet 1
Router C: ip route 10.1.1.0 255.255.255.0 ethernet 1
A. This will not work because Router B has no idea of how to forward traffic to the 10.1.3.0/24 network.
B. This will work because Router B will recognize that Router C is on the 10.1.2.0/24 network through a router
discovery protocol and will forward traffic for 10.1.3.0/24 to Router C.
C. This will not work because a broadcast interface in a static route command cannot be specified.
D. This will work because Router B will ARP for Host D's IP address on the 10.1.2.0/24 network and Router C will
answer.
Answer: D
10. Click the Exhibit button to view the topology.
The diagram shows an L2 switched campus. Switch X is the STP root and switch Y is the standby root. How many of
the links in the diagram will be placed in blocking mode by STP?
A. 6
B. 7
C. 12
D. 13
E. 18
F. 19
Answer: E