An _________ data type is a keyword of a programming language that specifies the amount of memory needed to store data and the kind of data that will be stored in that memory location.
Skill/Topic: Memory, Abstract Data Types, and AddressesA) abstract
Skill/Topic: Variables and PointersA) Memory is reserved by using a data type in a declaration statement.Explanation: The form of a declaration statement varies depending on the programming language you
Latest Answer : Just to add on.in Cint i; // it is both declaratoin and definationextern int i; // this is only declaration ...
Skill/Topic: Variables and PointersA) You use a structure to access parts of a dataB) You use a structure to group together related data.C) You use a structure to declare an instance of data groupExplanation:
Latest Answer : the differnecebetween structure and union is ....the size of structure is sum of all data types containing the structure where as the size of union is the size of largest data type the union contains..... ...
Skill/Topic: Variables and PointersA) FalseB) TrueExplanation: A pointer is a variable and can be used as an element of a structure and as an attribute of a class in some programming languages such as
Latest Answer : yeh, we can call pointer as a variable .it is used in some languages which supports its use.the datatype of pointer is of ptr,and not of datatype of the variable to which it is pointing. ...
Skill/Topic: Variables and PointersA) arrange data by moving data in memoryB) arrange data by moving pointer in memoryC) arrange data without having to move data in memory.D) None of the aboveExplanation:
Latest Answer : ans: C ...
Skill/Topic: ArrayA) Same nameB) different nameC) Multiple namesD) Unique nameExplanation: An array is a way to reference a series of memory locations using the same name. Each memory location is represented
Latest Answer : A) Same name. ...
The way to declare an array is not dependent on the programming language used to write your program.
Skill/Topic: ArrayA) TrueB) FalseExplanation: The way to declare an array depends on the programming language used to write your program. It is similar in C, C++ while in Java, you must initialize the
Skill/Topic: ArrayA) Two or MoreExplanation: A multidimensional array consists of two or more arrays defined by sets of array element.Each set of array elements is an array. The first set of array elements
Skill/Topic: ArrayA) A multidimensional array can be useful to organize subgroups of data within an array. In addition to organizing data stored in elements of an array, a multidimensional array can store
Latest Answer : Multidimensional arrays are used to store information in a matrix form -- e.g. a railway timetable, schedule cannot be stroed as a single dimensional array.You may want to use a 3-D array for storing height, width and lenght of each room on each floor ...
Skill/Topic: ArrayA) by using the address operator, which is the ampersand (&), in an assignment statementB) by using the address operator, which is the asterisks (*), in an assignment statementC) by
Latest Answer : sayint * ptoia[10];int a=10;so we can writeptoia[0]=&a;.... and so on,. ...