Week 12 : Programming Assignment 1
Complete the code to develop an extended version of the ADVANCED CALCULATOR with added special functions that emulates all the functions of the GUI Calculator as shown in the image.
Note the following points carefully:
1. Use only double datatype to store all numeric values.
2. Each button on the calculator should be operated by typing the characters from 'a' to 't'.
3. You may use the already defined function gui_map(char).
4. Use predefined methods from java.lang.Math class wherever applicable.
5. Without '=' binary operations won't give output as shown in Input_3 and Output_3 example below.
5. The calculator should be able to perform required operations on one or two operands as shown in the below example:
Input_1:
okhid
Output_1:
100.0
Input_2:
ia
Output_2:
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | okhid | 100.0 | 100.0 | Passed |
Test Case 2 | ia | 2.0 | 2.0 | Passed |
Week 12 : Programming Assignment 2
A partial code fragment is given. The URL class object is created in try block.You should write appropriate method( ) to print the protocol name and host name from the given url string.
For example:
https://www.xyz.com:1080/index.htm
protocol://host:port/filename
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | NA | Protocol: http\n
Host Name: www.Nptel.com | Protocol: http\n
Host Name: www.Nptel.com | Passed |
Week 12 : Programming Assignment 3
Write a program to create a record by taking inputs using Scanner class as first name as string ,last name as string ,roll number as integer ,subject1 mark as float,subject2 mark as float. Your program should print in the format
"name rollnumber avgmark".
For example:
input:
ram
das
123
25.5
24.5
output:
ramdas 123 25.0
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | ram
das
123
25.5
24.5 | ramdas 123 25.0 | ramdas 123 25.0\n
| Passed after ignoring Presentation Error |
Week 12 : Programming Assignment 4
A program code is given to call the parent class static method and instance method in derive class without creating object of parent class. You should write the appropriate code so that the program print the contents of static method() and instance method () of parent class.
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | NA | The instance method.\n
The static method. | The instance method.\n
The static method.\n
| Passed after ignoring Presentation Error |
Test Case 2 | NA | The instance method.\n
The static method. | The instance method.\n
The static method.\n
| Passed after ignoring Presentation Error |
Week 12 : Programming Assignment 5
Write a recursive function to print the sum of first n odd integer numbers. The recursive function should have the prototype
" int sum_odd_n(int n) ".
For example :
input : 5
output: 25
input : 6
output : 36
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 5 | 25 | 25\n
| Passed after ignoring Presentation Error |
No comments