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.
I used this from a other.
False
Software is the collection of large program or instruction of codes, which is used to perform some task. It is of two types of system software and application software.
The system software is used as a container for the application software and it is used to handle all other software it is used to operate the system.
Application software is used to perform any operation. This type of software can be used by the user if it is installed on the local machine on any system software
The operating system is also the part of the system software because it is used to operate the system and it is also the soul of the computer system which is also the function of the system software but the above question states that the operating system is not the part of the system software which is not correct. Hence false is the correct answer to the above question.
Answer:
d. The client has no adaptive coping mechanisms.
Explanation:
The reduction of anxiety felt by the clients is reduced by the Clients in either the functional ways or dysfunctional ways.
The first thing done by the nurse was to find out the techniques used by the client in past and help the client to enhance and identify those most beneficial strategies .The next step is done by the client and the nurse to find out the maladaptive strategies such as alcohol use,social withdrawal and swap them with adaptive strategies which are suitable for the client's cultural,personal and spiritual values.
The nurse should not suggest the client to give up coping mechanism without offering other mechanism even if the client is having the maladaptive strategies.
Answer:
#include<iostream>
using namespace std;
int lcm(int m, int n) {
int a;
a = (m > n) ? m: n;
while (true) {
if (a % m == 0 && a % n == 0)
return a;
++a;
}
}
int gcd(int m, int n) {
int r = 0, a, b;
a = (m > n) ? m : n;
b = (m < n) ? m : n;
r = b;
while (a % b != 0) {
r = a % b;
a = b;
b = r;
}
return r;
}
int main(int argc, char **argv) {
cout << "Enter the two numbers: ";
int m, n;
cin >> m >> n;
cout << "The LCM of two numbers is: " << lcm(m, n) << endl;
cout << "The GCD of two numbers is: " << gcd(m, n) << endl;
return 0;
}
Explanation:
This is about identifiers in a record referring to other records.
You can have many to one, one to one, many to many.
E.g., if you have two tables, Authors and Books, then a book record could have a reference to an author record. Since an author can write many books, this would be a many-to-one relationship.