Answer:
Explanation:
In programming an array is simply a grouping of various pieces of data. Various data elements are grouped together into a single set and saved into a variable. This variable can be called which would return the entire set which includes all of the elements. The variable can also be used to access individual elements within the set. In Java an example would be the following...
int[] myArray = {33, 64, 73, 11, 13};
In Java, int[] indicates that the variable will hold an array of integers. myArray is the name of the variable which can be called to access the array elements. The elements themselves (various pieces of data) are located within the brackets {}
Answer:Private means: Belonging to, or for the use of, a particular person or group of people.
Confidential means: Intended to be kept secret. So, a private conversation would only be confidential if what is discussed is intended to be kept secret (from others).
Answer:
True is the correct answer to the above question.
Explanation:
- An application program is used for specific tasks. It is a program with some specified lines of instruction which instruct the computer to process any task.
- When a user wants to create an application program or project then he can do it with the help of four parts. which are as follows:-
- There needs some presentation which can be called as front-end, which is the graphics interface for the user of that program. It facilities the user to drag and drop options for the user of the project.
- The second thing is data storage, which is used to store the data of the project.
- The third thing is data access logic, which is used to create a logic to extract or add the data to the database.
- The fourth thing is application logic which is used to send the data or present the data to the user in front-end design.
- The above question-statement also wants to states the same which is described above. Hence true is the correct answer to the above question.