vu cs403 Mid Term Subjective Solved Past Paper No.6
vu cs403 Database Management Systems Solved Past Papers
This subjective solved past paper is related to book/course code vu cs403 Database Management Systems which belongs to vu organization. We have 7 past papers available related to the book/course Database Management Systems. This past paper has a total of 10 subjective questions belongs to topic Mid Term to get prepared. NVAEducation wants its users to help them learn in an easy way. For that purpose, you are free to get prepared for exams by learning subjective questions online on NVAEducatio.
NVAEducation also facilitates users to download these solved past papers with an affordable prices. However, users are not enforced to pay for money, rather they can use credits to buy such stuff on NVAEducation. Users can earn credits for doing some little tasks and then you will be able to use that credits to buy solved past papers on NVAEducation.
var a,b,c;
a = 1;
b = 2;
c = a+b;
document.write("The addition of 1 and 2 gives " + c + "<br>" );
}
- Comparison operators
- == for Equal
- != for not equal
- < for Less than
- <= for less than equal
- > for Greater than
- >= for Greater than equal
<head>
<script type="text/javascript">
function sndAlert() {
window.alert("The test is successful!!!");
}
</script>
</head>
<body>
<FORM
NAME="form1">
<INPUT TYPE="Button" name="showAlert" VALUE="ShowAlert"
onclick="sndAlert()">
</FORM>
</body>
</html>
The number is 0
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
<script type="text/javascript">
var no;
for (no=0; no<6 ; no++)
{ document.write("The number is "
+
no +
"<br>" );
}
</script>
</html>
Packet filter firewall
It uses a set of rules to determine whether outgoing or incoming data packets are allowed to pass through the firewall.
Circuit level firewall
It is quite similar to the packet filter firewall. It also works on the basis of a set of rules for filtering packets but operates at the transport layer of the OSI Model so has greater functionality.
Application gateway firewall
It operates at application layer of the OSI Model. It uses strong user authentication to verify identity of a host attempting to connect to the network using application layer protocols such us FTP. In contrast to packet filter firewall, it filters the requests rather than packets entering/leaving the network. It can block any outgoing HTTP or FTP requests.
Code#1
<!--document.write("my name: dua" +"<P>")
document.write("my id: mc090" +"<P>")
document.write("My Uni Name: VU" +"<P>")
//-->
code#1 File save with extension "abc.js"
Code#2
.html coding:
<HTML><HEAD>
</HEAD>
<BODY><H1>My Profile</h1>
<SCRIPT SRC="abc.js"></SCRIPT>
</body>
</html>