W4_Programming_Qs.1
Due on 2023-08-24, 23:59 IST
Consider the following program. Fill in the blanks as per the instructions given below:
• Complete the variable declaration at LINE-1,
• Complete the function prototype at LINE-2 and LINE-3 with appropriate keywords
such that it will satisfy the given test cases.
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 1 Raj 10000 1000 | 1 : Raj : 11000 | 1 : Raj : 11000 | Passed |
Test Case 2 | 2 Zakir 50000 5000 | 2 : Zakir : 55000 | 2 : Zakir : 55000 | Passed |
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
W4_Programming_Qs.2
Due on 2023-08-24, 23:59 IST
Consider the following program. Fill in the blanks as per the instructions given below.
• at LINE-1 with appropriate forward declaration,
• at LINE-2 with appropriate statement
such that it will satisfy the given test cases
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 3 4 | 12 -1 | 12 -1 | Passed |
Test Case 2 | 2 7 | 14 -5 | 14 -5 | Passed |
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
W4_Programming_Qs.3
Due on 2023-08-24, 23:59 IST
Consider the following program. Fill in the blanks at LINE-1, LINE-2 and LINE-3 with appropriate statements such that it will satisfy the given test cases.
Public Test Cases | Input | Expected Output | Actual Output | Status |
---|---|---|---|---|
Test Case 1 | 1 2 | 11 | 11 | Passed |
Test Case 2 | 2 3 | 22 | 22 | Passed |
Private Test cases used for Evaluation | Status |
Test Case 1 | Passed |
No comments