Answer:
These are personal skill
Explanation:
Interpersonal ;; how you deal with the others.
Mathematical ;; how you use maths.
Verbal ;; how you speak
Those are internal values. They do not fit those others. So personal.!
Answer:
Business communications tools are widely used and the world is becoming increasingly digital so not having those skills will hinder you.
Explanation:
Many jobs require knowledge of Microsoft tools as a qualification. By not having that expertise, I will be viewed as less qualified for a position and may be passed up for job. In corporate America, presentations are a staple and Microsoft PowerPoint is the primary software. If I deliver a poor presentation due to inexperience, I will make myself look bad and as a result get a bad quarterly review and possibly stunted any future promotions. On the flipside, as a business owner Excel is a handy tool for tracking expenses. Very customizable, quick and easy to understand.
Answer:
Sequential Operations: Suppose we want to switch on the LED, fan and a PC. We can do it one by one and in a sequence. And it means step by step in a proper sequence, and that which is mentioned.
Conditional Operation: Suppose we are given a condition that if LED is switched on then you cannot switch on the PC. Such type is known as the conditional operation.
Iterative Operations: If you the number of times a given code is to be looped, or iterative, then we are dealing with the iterative operations.
In pseudo-code we represent them as:
Start
PC_State= Open
LED_State =Open
fan_State =Open
Stop
Condition Statement
If LED= Open
PC=Blocked
Iterative Statement:
For i =1 to 3
Open Device No <i>
And this way the three are different in everyday life, and hence in pseudocode.
Explanation:
Please check the answer section.
Answer:
It has to be Journal Article Citation
Explanation:
Answer:
#include <iostream>
#include <time.h>
#include <string>
using namespace std;
int main(){
srand(time(NULL));
cout<<"Throw dice"<<endl;
int b =0;
int a=0;
a=rand()%6;
b=rand()%6;
for (int i =0;i<1;i++)
{cout<<"dice one: "<<a<<endl;}
for (int i =0;i<1;i++)
{cout<<"dice two: "<<b<<endl;}
if(a>b)
{cout<<"first dice won"<<endl;}
if(b>a)
{cout<<"second dice won"<<endl;}
else{cout<<"they are same"<<endl;
return main();
}
return 0;
}
Explanation:
/*maybe it help you it is almost done*/