Answer: Pseudocode represents a language like solution
Explanation:
Pseudocode can be defined as one of the informal ways of programming whose description doesn't require any strict programming language syntax or even underlying technological considerations because it's evident that, it's not actually a real programming language . It is used major for an outline/rough draft of a required program. It also summarizes the flow of program, excluding underlying details. Designers usually write pseudocode in order for programmers to fathom the project's requirements of the software and align code appropriately.
Answer:
Descriptive Statistics.
Explanation:
First Steve gathered the data and after that he created the pie chart displaying the percentage of psychologists working in different fields.Here Steve used descriptive statistics to display the data that he collected.
Descriptive statistics are the descriptive coefficients that give the abstract of the data collected.
Answer:
Which of following is not anelectroyte
To screw with your teacher:
first = (name1 > name2 ) ? name1 : name2;
That code is correct, but your teacher is probably looking for:
if( name1 > name2 )
first = name1;
else
first = name2;
I love the ternary operator!