Answer:
solution
Explanation:
The correct option is - solution
Reason -
To solve a problem,
Firstly we give input , then system will process that input which then gives output.
Solution is not a part of the process.
So, Solution is not a significant part of a simple problem.
Answer:
b. Synchronous replication
Explanation:
Replication of data in storage partitions or in a number redundant array of independent disk drives helps to promote redundancy, as implied, and faulty tolerance to reduce loss of data.
There are two categories of replication and they are synchronous and asynchronous replication.
Synchronous replication requires low latency network site to mirror data, while asynchronous replication mirrors data in large metropolitan area in high latency networks.
The factor that is a best choice for the personal trainer in their initial meeting is option a: Inquire further about what their motives are for participating.
<h3>What are the motives in motivation?</h3>
Psychologists is known to have shared motives into three types which are:
- Biological motives
- Social motives
- Personal motives.
Note that the goal that is to be meant is for the fulfillment of the client want or their need.
Therefore asking the right question will go a long way in satisfying them. So, The factor that is a best choice for the personal trainer in their initial meeting is option a: Inquire further about what their motives are for participating.
Learn more about personal trainer from
brainly.com/question/19462080
#SPJ1
A new client has indicated that they are exercising due to advice from their physician, but they are generally amotivated. What would be the best choice for the personal trainer in their initial meeting?
Inquire further about what their motives are for participating.
Create a plan for overcoming barriers.
Establish short- and long-term goals.
Start establishing an emotional support system.
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
string in;//string in for taking input...
cout<<"Do you want to continue ?"<<endl;
getline(cin,in);//taking input from the user...
if(in=="y"||in=="Y"||in=="yes"||in=="OK"||in=="Why not?")//conditions..
cout<<"OK"<<endl;
else if(in=="No")
cout<<"terminating"<<endl;
else
cout<<"Bad input"<<endl;
return 0;
}
Explanation:
I have taken a string in.
Then taking input from user.
Checking the conditions using if else if ladder.