Charts can either be embedded in a worksheet or placed in a separate chart sheet.
        
             
        
        
        
if alone, you would give care first for which situation
 
        
                    
             
        
        
        
Answer: b) Standardizing how the process is completed
Explanation:
Occurrence of error in a process can be due to several reason like human error,equipmental error, qualitative error etc.It includes internal as well as external factor.To eliminate the occurrence of fault in process, it is better to follow standard and systematic working in uniform way so that any kind of manipulation and modification does not lead to error.
- Other options are not appropriate because trying harder will not correct chances of fault rather it will only waste the efforts.Not depending on technology is also not the solution to gain accuracy in process.
- Thus, the correct option is option(b). 
 
        
             
        
        
        
Answer:
Please find the edited program below:
#include<iostream>
#include <stdio.h>
using namespace::std;
int main()
{
char ch;
cout<<"Enter any letter: ";
ch=getchar();
if(ch=='a' || ch=='e' || ch=='i' || ch=='o' || ch=='u'|| ch=='A' || ch=='E' || ch=='I' || ch=='O' || ch=='U')
cout<<"Vowel";
else
cout<<"Consonant";
return 0;
}
Explanation:
We cannot input char type using cin, we need to use getchar, and it is under header file stdio.h. Also, for comparing we need to use == and not =. And corrrect way of including std is using namespace::std;
 
        
             
        
        
        
Answer:
There are 3 operators in the statement.
Explanation:
As the statement is written below, the operators are marked as bold in the statement by me.
"If it is not the case that JavaScript is type safe and JavaScript is interpreted, then programmers should be extra careful or they should use a different language."
There are three logic operator in the statement,"not, and, or".