Sie sind auf Seite 1von 3

REVISION

1- Using Caeser Cipher, Encrypt the word U N I V E R S I T Y with a key 3

AnswerFrom table then University will be XQLYHUVLWB

2- Using Caeser Cipher, Decrypt the word V F K R R O with a key 3

AnswerFrom table then the word will be SCHOOL

3- Encrypt the following text 010111000101 with the Key 110010101101 then decrypt the
ciphertext. (Use XOR truth table).
Answer Plain Text 010111000101
Key 110010101101
Cipher Text 100101101000
Yield Plain Text 010111000101

4- Show the step syou will use to send a message to your friend using Digital Signature method.
Answer
1- I will apply the hash function to the message to get a Message Digest (MD)
2- Encrypt the MD with the original message using my private key to get a digital signature
3- Send the digital signature.
4- Friend will decrypt the messageusing my public key, he will get MD and the original
message.
5- He will apply the hash function to the original message then get another MD
6- If the two message digests are similar to the original message is valid.
5- Show the steps you will use to send a message to your friend using Digital Envelope method.
HTML Questions
1- Write the HTML tag to insert a link to yahoo website.
Answer <a href="http://www.yahoo.com"> yahoo </a>

2- Write the HTML tag to insert a scrolling word (Suez Canal) left to right

Answer <marquee direction="right">Suez Canal</marquee>

3- Tag to get this table:


Answer
Table of Purchases
<table border="1">
<thead>
Item Price
<tr colspan="2">
<th> Table of Purchases </th></tr>
<tr> Laptop 300 $
<th> Item </th><th> Price </th>
</tr></thead> Mobile 120 $
<tbody>
<tr><td>Laptop</td><td> 300 $ </td></tr>
<tr><td>Mobile </td><td>120 $ </td></tr> Total 420 $
</tbody>
<tfoot>
<tr><th>Total</th><th>420 $</th></tr></tfoot>
</table>
4- Insert a picture named BMW with type jpg in your page with width 300 pixels and height
450 pixels from location (E - Cars folder), align it to right of page
Answer
<imgsrc="E:\cars\BMW.jpg"width="300" height"450" align="right">
5- List these names ordered from 1 to 4 … Ali , Mohamed, Ahmed, Tarek.
Answer
<ol>
<li> Ali </li><li> Mohamed </li><li> Ahmed </li><li>Tarek</li>
</ol>
6- List these names ordered from A to D … Ali , Mohamed, Ahmed, Tarek.
Answer
<ol type="A">
<li> Ali </li><li> Mohamed </li><li> Ahmed </li><li>Tarek</li></ol>

Das könnte Ihnen auch gefallen