I want to configure a serial interface on a 7500 with a VIP
card.
What global config command would give me access to a serial
interface on
a 7500?
A.) int 1/0/0
B.) int s 1/0/0
C.) int s 1/1
D.) int s0.1
E.) int s1
Answers were Sorted based on User's Feedback
Answer / dfsdfds
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Retrieve Data Using JQuery...</title>
<script src="JQuery/jquery-1.4.2.js"
type="text/javascript"></script>
<script src="JQuery/jquery-ui-1.8.2.custom.min.js"
type="text/javascript"></script>
<link href="css/jquery-ui-1.8.4.custom.css"
rel="stylesheet" type="text/css" />
<script src="JQuery/jquery-ui-1.8.4.custom.min.js"
type="text/javascript"></script>
<link type="text/css"
href="JQuery/themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript"
src="JQuery/external/jquery.bgiframe-2.1.1.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.core.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.widget.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.mouse.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.button.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.draggable.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.position.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.dialog.js"></script>
<script src="JQuery/service1.js"
type="text/javascript"></script>
<style type="text/css">
#btnGet
{
width: 243px;
}
#btnAdd
{
width: 174px;
}
#btnDelete
{
width: 184px;
}
#btnUpdate
{
width: 173px;
}
</style>
</head>
<body>
<div id="stdData">
</div>
<div id="stdAdd" style="display:none; font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtID" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Name : </td>
<td><input type="text" id="txtName" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Course : </td>
<td><input type="text" id="txtCourse" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your USN : </td>
<td><input type="text" id="txtUsn" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnAddData"
value="Submit Data" /></td>
</tr>
</table>
</div>
<div id="stdDelete" style="display:none; font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtDelId" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnDeleteData"
value="Submit Data" /></td>
</tr>
</table>
</div>
<div id="studUpdate" style="display:none; font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtUpdateID" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnUpdateDetails"
value="Submit Data" /></td>
</tr>
</table>
</div>
<div id="updateDetails" style="display:none;
font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtUpId" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Name : </td>
<td><input type="text" id="txtUpName" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Course : </td>
<td><input type="text" id="txtUpCourse" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your USN : </td>
<td><input type="text" id="txtUpUsn" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnUpDetails"
value="Submit Data" /></td>
</tr>
</table>
</div>
<table>
<tr>
<td><input type="button" value=" Please CLICK to
Retrieve Student Data" id="btnGet" /></td>
<td><input type="button" value=" CLICK to Add
Your Data" id="btnAdd" /></td>
<td><input type="button" value=" CLICK to Delete
Your Data" id="btnDelete" /></td>
<td><input type="button" value=" CLICK to Update
Your Data" id="btnUpdate" /></td>
</tr>
</table>
</body>
</html>
/// <reference path="jquery-1.4.1-vsdoc.js" />
$(document).ready(function() {
$('input:button').addClass("btnClass");
fillData();
$('#btnGet').click(function() {
fillData();
});
function fillData() {
$.ajax({
type: "Post",
url: "../Linq/myService.asmx/getStudent",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
//var nMsg = (typeof msg.d) == 'string' ?
eval('(' + msg.d + ')') : msg.d;
var t = "<table width='80%' id='resTab'> <tr>" +
"<td colspan='5'
style='text-align:center'><font size='3'><strong>Your Search
Result......</strong></font></td></tr> <tr><td
style='text-align:left' colspan='5'><hr></td></tr> "
+ " <tr><td
style='text-align:center'>Student ID</td><td
style='text-align:center'>Student Name</td><td
style='text-align:center'>Student Course</td><td
style='text-align:center'>Student USN</td></tr>"
+ " <tr><td style='text-align:left'
colspan='5'><hr><br></td></tr> ";
$.each(msg.d, function(index, item) {
t = t + " <tr><td
style='text-align:center'>" + item.studId + "</td><td
style='text-align:center'>" + item.studName + "</td><td
style='text-align:center'>" + item.studCourse + "</td><td
style='text-align:center'>" + item.studUsn +
"</td><td><input type='button' ID='btn" + item.studId + "'
value='Delete'/></td></tr>";
t = t + " <tr><td
style='text-align:left' colspan='5'><hr></td></tr> ";
});
t = t + " </table> ";
$("#stdData").html(t);
},
error: function(msg) { }
});
}
$("#stdData input[type='button']").click(function() {
//var clId = $(this).attr('value');
//var btnId=$(this).find("input:button").attr('id');
alert("");
});
$('#btnAdd').click(function() {
$("#stdAdd").dialog({
title: "Please Enter Student Data ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
});
$('#btnAddData').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtID').val() + '",
stdName: "' + $('#txtName').val() + '", stdCourse: "' +
$('#txtCourse').val() + '", stdUsn: "' + $('#txtUsn').val()
+ '"}',
url: "../Linq/myService.asmx/insertStudent",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
$('#txtID').val("");
$('#txtName').val("");
$('#txtCourse').val("");
$('#txtUsn').val("");
window.location.href = "useService.htm";
},
error: function(msg) { alert(msg.d); }
});
});
$('#btnDelete').click(function() {
$("#stdDelete").dialog({
title: "Please Enter Student ID ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
});
$('#btnDeleteData').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtDelId').val() + '"}',
url: "../Linq/myService.asmx/deleteStudent",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
$('#txtDelId').val("");
window.location.href = "useService.htm";
},
error: function(msg) { alert(msg.d); }
});
});
$('#btnUpdate').click(function() {
$("#studUpdate").dialog({
title: "Please Enter Student ID ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
});
$('#btnUpdateDetails').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtUpdateID').val() + '"}',
url: "../Linq/myService.asmx/updateStudentData",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
var nMsg = (typeof msg.d) == 'string' ?
eval('(' + msg.d + ')') : msg.d;
$("#updateDetails").dialog({
title: "Update Student Details ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
$('#txtUpId').val(nMsg[0]).attr('readOnly',
'true');
$('#txtUpName').val(nMsg[1]);
$('#txtUpCourse').val(nMsg[2]);
$('#txtUpUsn').val(nMsg[3]);
},
error: function(msg) { alert(msg.d); }
});
});
$('#btnUpDetails').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtUpId').val() + '",
stdName: "' + $('#txtUpName').val() + '", stdCourse: "' +
$('#txtUpCourse').val() + '", stdUsn: "' +
$('#txtUpUsn').val() + '"}',
url: "../Linq/myService.asmx/updateStudentDetails",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
$('#txtUpId').val("");
$('#txtUpName').val("");
$('#txtUpCourse').val("");
$('#txtUpUsn').val("");
window.location.href = "useService.htm";
},
error: function(msg) { alert(msg.d); }
});
});
});
| Is This Answer Correct ? | 0 Yes | 0 No |
I am just getting into this,I want to jump ahead a do the packet tracers in discovery working at a small to medium business or ISP but I am trying to get the last lab putting it all together. Does anyone have anything for this. I know it is ahead of me but I would like to get this so I can look at the beginning and understand it more
Identify 3 UDP characteristics? A.) Reliable communication protocol B.) Applications that use UDP must incorporate reliability C.) Connnection-less oriented D.) Incorporates no handshaking
What does the "IPX maximum-paths 2" command accomplish? A. It enables load sharing on 2 paths if the paths are equal metric paths. B. It sets up routing to go to network 2. C. It is the default for Cisco IPX load sharing. D. It enables load sharing on 2 paths if the paths are unequal metric paths.
What is the standard ISDN term for a native ISDN telephone? A.) ET B.) TE1 C.) TE2 D.) LE E.) TA
What does -1 mean in an extended IPX access-list? A.) Any IP address B.) Deny all C.) Deny host D.) Any host or any network
What command can be used to test IPX connectivity? A.) Ping 2e.000.0045.8923 B.) Ping 192.168.100.1 C.) Ping ipx 2e.0000.0045.8923 D.) Ipx ping 2e.0000.0045.8923
IGRP uses flash updates, poison reverse updates, holddown times, and split horizon. How often does it broadcast its routing table updates? A. 90 seconds B. 10 seconds C. 30 seconds D. 45 seconds
What is the default switching method for the Cisco 5000 series? A.) Cut-through B.) Store-and-splice C.) Latency D.) Store-and-forward
Identify the command that configures the bandwidth to 56K? A.) Router(config-if)# bandwidth 56000 B.) Router(config-if)# bandwidth 56k C.) Router(config)# bandwidth 56 D.) Router(config-if)# bandwidth 56
Explain how many collision domains are in switch?
1.i have to pcs in the network 192.168.1.1 202.55.88.16 2. if that fails shud go through 122.16.1.3 and and if that comes back active it shud go through 202.55.88.16 itself
What is ping utility?