Mnemonic devices improve memory by encoding items in a special way. Mnemonic devices are used in order to help one to improve one's ability to remember a particular information. Its a memory technique that help one's brain to encode and recall important information.
Answer:
Check the explanation
Explanation:
File: Seat.h:
typedef struct Seat
{
int seatNumber;
string customerFullName;
double seatCost;
};
File: Stadium.h
class Stadium
{
//Data Members
private:
Seat seats[1000];
string stadiumName;
int numOccupiedSeats;
public:
Stadium(string); //Constructor
void assignSeat(double, string);
void unAssignedSeat(int seatNumber);
int getNumberOfAssignedSeats();
double getCostOfSeat(double seatNumber);
}
Answer: Submenu
Explanation: Submenu is the menu that is accessible through the other menu. If the user opens a menu an selects a option , if that option has further menu containing other options is an example of submenu.
Other given option are incorrect because formal list the list containing objects, nested menu is type of building and dropping the menu items and recursive menu work in the recursive manner.Thus, the correct option is submenu.