The table option is Merge Cells.
which is definitely C
Answer:
All of the above is the correct answer.
Actions are important because they have real-world consequences, but in seeking to understand our own and other people’s actions, it works better to have an understanding of how an action is motivated by the beliefs and values that underlie it.
Explanation:
- The reason or reasons one has for acting or behaving in a particular way. Motivation is also defined as the general desire or willingness of someone to do something.
- It is crucial for all of us to realize that motivation is a choice. It is entirely up to us to motivate ourselves to do what it takes to reach our goals.
- Everything you need is in your mind, and you alone can influence that feeling of motivation
- People exhibit roughly equal amounts of love and selfishness, and we identify people whose balance is more loving or more selfish and make choices about which we want more of in our own lives.
- The motivation scale is one way of thinking about how we gain what we want and who is affected by our choices.
- Your values, priorities, purpose, goals, drive, learning, love, and hope all live in motivation.
Answer:
#include <iostream>
using namespace std;
int main() {
int num, check=0;
for(int num = 1; num<=100;num++){
for(int i = 2; i <= num/2; i++) {
if(num % i == 0)
{
check=1;
break; } }
if (check==0) { cout <<num<<" "; }
check = 0;
}
return 0;
}
Explanation:
This line declares num as integer which represents digits 1 to 100.
A check variable is declared as integer and initialized to 0
<em> int num, m=0, check=0;
</em>
This for loop iterates from 1 to 100
for(int num = 1; num<=100;num++){
This iterates from 2 to half of current digit
for(int i = 2; i <= num/2; i++) {
This checks for possible divisors
if(num % i == 0)
{
If found, the check variable is updated to 1
check=1;
And the loop is terminated
break; } }
The following if statement prints the prime numbers
if (check==0) { cout <<num<<" "; }
check = 0;
}
Answer:
There is a short circuit in a component in the power circuit.
Explanation:
The power circuit in a computer system, regulates, rectifies and steps down power and voltage entering the main motherboard.
When a power surge capable of damaging the motherboard occurs, A component in the power circuit is shorted, not allowing the dangerous power to pass.
This can be troubleshooted by passing a high current, since the shorted component has a high emf. It over heats and is detected and changed.