Anda di halaman 1dari 2

<!

DOCTYPE html>
<html>
<head>
<title>INDEX PAGE</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<style>
</style>
</head>
<body>
<h1>INDEX</h1>
<table id="abc">
<tr>
<th>S_No.</th>
<th>Practical</th>
<th>Source_Code</th>
<th><pre> Output </pre></th>
</tr>
<tr >
<td>1</td>
<td>Write a program to generate password. Take 2 strings and 2 numbers
as input, the password will be generated
like take the first letter of the smaller string and concatenate
with the large string. If both have same length the compare the ASCII
code of each letter. Input 2 numbers and the second number will tell which
digit from the right hand side of the first number is
concatenated to the end.
</td>
<td><a href="attachments/Generator.txt">Click Here</a></td>
<td><a href="output/ques1.png">Click Here</a></td>
</tr>
<tr >
<td>2</td>
<td>Write a program to reverse word in a string such that if there is a
uppercase or lowercase letter at a position
then after reversing, the letter at that position should be
uppercase or lowercase respectvely.
</td>
<td><a href="attachments/ReverseString.txt">Click Here</a></td>
<td><a href="output/ques2.png">Click Here</a></td>
</tr>
<tr >
<td>3</td>
<td>Write a program to encrypt the string. You should input a string
and calculate the frequency of each letter and use the
key as the whose frequency is the least, if more than one letter
have least frequency then take the letter with smallest ASCII code.
(if 'a' has least frequency the take key as 1 and so on..)
Then add the key to the ASCII code of each letter except white
spaces and that letter itself.
</td>
<td><a href="source code/LeastFrequency.txt">Click Here</a></td>
<td><a href="output/ques3.png">Click Here</a></td>
</tr>
<tr >
<td>4</td>
<td>Write a program to find the sum of digits of a number iteratively
to find a single digit sum.</td>
<td><a href="source code/Sum.txt">Click Here</a></td>
<td><a href="output/ques4.png">Click Here</a></td>
</tr>
<tr >
<td>5</td>
<td>Create a user defined exception, Derive 2 classes NullString and
InvalidString from CheckedString class.
Implement the uses of these classes such that NullString
exception is thrown if the string entered by the
user is blank and InvalidString exception is thrown if the string
entered by the user contain any character except
alphabets.
</td>
<td><a href="source code/Sample.txt">Click Here</a></td>
<td><a href="output/ques5.png">Click Here</a></td>
</tr>
<tr >
<td>6</td>
<td>Write a program to demonstrate the use of synchronized keyword by
taking the example of a Joint Account. Two customers are having a
joint account so if one customer is accessing the account then
the other should not be able to acces and he/she should see the
modified value of the balance later.
</td>
<td><a href="source code/Sync.txt">Click Here</a></td>
<td><a href="output/ques6.png">Click Here</a></td>
</tr>
<tr >
<td>7</td>
<td>Write a program to generate a Casino game. The user should choose a
random number between 1 to 10, if the number entered by the user
matches with the system generated random number then user win
otherwise lose as soon as user enters the number the result should be
displayed with some time gap.
</td>
<td><a href="source code/Casino.txt">Click Here</a></td>
<td><a href="output/ques7.png">Click Here</a></td>
</tr>
</table>

</body>
</html>

Anda mungkin juga menyukai