109k views
3 votes
Write a C++ program that will create a 1D array of a user-given size and fill in values from the user. Take the mod of your roll number with your batch number and update all values of the list with (value of the list divided by the result). Finally, print the original list.

a) Array
b) Input
c) Update
d) Output

User Kroe
by
7.6k points

1 Answer

0 votes

Final answer:

The C++ program must create a user-defined array, fill it with user input, perform a division based on a modulus operation, and then display the original array. The correct answer is option (a).

Step-by-step explanation:

The student is asking for a C++ program that accomplishes several steps involving arrays. The program should first create a 1D array of a size specified by the user, then fill the array with values provided by the user.

Next, the program is to calculate a modulus of two numbers, likely the student's roll number and batch number, and then update each value in the array by dividing it with this modulus result. Finally, the program should print the original array.

While the description of the modulus operation is a bit unclear, it may be a mistake, as using the modulus result to divide array values would alter the original list, contradicting the request to print the original list.

User Tim Park
by
8.0k points