List a set of data that could be stored in a one-dimensional array. List data for a two-dimensional and three-dimensional array too.

What will be an ideal response?


One dimensional array: phone bills data for a year.
Two dimensional array: pixel data in a digital image.
Three dimensional array: MRI scan of a person’s head.

Computer Science & Information Technology

You might also like to view...

In a UML class diagram, the tilde (~) indicates:

a. public access b. protected access c. private access d. package access

Computer Science & Information Technology

In the following code, which lines make up the constructor(s)?0 public class Bus {1 private BankAccount ba;2 private double fuelLeft;3 private final double FUEL_MAX = 40.0;4 private final double FUEL_COST = 3.54;5 public Bus(BankAccount baRef) {6 fuelLeft = 0;7 ba = baRef;8 }9 public void fillTank() {10 double cost = (FUEL_MAX - fuelLeft) * FUEL_COST;11 if (ba.pay(cost) == true) {12 fuelLeft = FUEL_MAX;13 }14 }15 public double getFuelLeft() {16 return fuelLeft;17 }18 }

A. Lines 1-4 B. Lines 5-8 C. Lines 1-8 D. Lines 0-18

Computer Science & Information Technology

Workbooks can contain only one data model, but multiple sheets can be created based on that data model

Indicate whether the statement is true or false.

Computer Science & Information Technology

Describe Dynamic DNS, in terms of client and server registration.

What will be an ideal response?

Computer Science & Information Technology