Practical List
Questions
Practical List based on DSE2: Internet Technologies Guidelines B. Sc. Program Computer Science 6th Semester
HTML & CSS
****2. Create HTML document with Ordered and Unordered lists.
****3. Create your time table using HTML tables.
JAVA PROGRAMS
****7. Write java program for the following matrix operations:
a. Addition of two matrices
b. Multiplication of two matrices
c. Transpose of a matrix -- Take input of elements of matrices(html-4.html) from user.
****9. Implement a Bank Account having Instance variables: Account Number, Balance and having methods
- float Deposit (float x)
- float withdraw (float x)
- int get account no ()
- float get balance ()
- tax deduction ()
Then implement class Bank having an array list of accounts of type BankAccount. Implement following methods:
- AddAccount in Bank
- Get Total balance in Bank
- Get account number with max. and min. balance
- Find an account given a bank account no.
- Count no. of accounts having atleast specific balance
JAVASCRIPT
****13. Create a student registration form. Create functions to perform the following checks:
****14. Implement a static password protection.
JDBC
JSP
****19. Make two files as follows: a. main.html: shows 2 text boxes and 3 radio buttons with values "addition", "subtraction" and "multiplication" b. operate.jsp: depending on what the user selects perform the corresponding function (Give two implementations: using request.getParameter() and using expression language)
Last updated