Current Papers
CS201 - CS201
08 Jun 2026 at 05:22 PM
Based on what you described, the paper questions were approximately: ### Short Questions 1. **Find and fix the error in the function** * Function return type is `int`. * Variable `area` is de…
Based on what you described, the paper questions were approximately: ### Short Questions 1. **Find and fix the error in the function** * Function return type is `int`. * Variable `area` is declared as `float`. * Compiler/error message indicates a type mismatch between `int` and `float`. 2. **55 items with the same data type** * Which data structure/data type should be used to store 55 values of the same type? ### Long Questions 1. **Multidimensional Array** Given: 1 2 3 4 5 6 Print: 1 4 2 5 3 6 (Transpose of a 2D array) 2. **While Loop Output** Write a program using a `while` loop to print: 5 6 7 8 9