Practical List
Questions
Last updated
Questions
Last updated
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.
- 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
a. Roll number is a 7-digit numeric value
b. Name should be an alphabetical value(String)
c. Non-empty fields like DOB
a. To change the colour of text using SetTimeOut()
b. To move an image across screen using SetInterval()
a. Update an already created table 'Teacher' in 'College' database by updating a teacher's name, with "Dr." appended before the name, whose name is "Rita".
b. Repeat the same thing for all the teachers using PreparedStatement.
c. Delete the student with ID=3 from 'Student' database.
d. Insert two students to the ResultSet returned by the query which selects all students with FirstName="Ayush".The database must also get updated along with ResultSet.
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)