The two ways you can use to make an informal survey are:
- make field observations
- interview people using informal unstructured techniques
<h3>What are informal surveys?</h3>
In informal surveys can be regarded as a type of survey that can be made by the researcher by going to the field themselves and this can be done by using different methods or ways.
For instance, the researcher can go out to interview people that can give the data that is needed about the research such as informally asking them questions, unstructured techniques can also be used to solve critical issues.
learn more about survey at: brainly.com/question/6947486
#SPJ9
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100
Ram is the better truck company
Answer:
a. population, units, sample
Explanation:
In a survey or in a research, population is defined as the total number of people or total number of items in the group that we want to study in a research. It is the entire pool from where a sample is drawn.
An unit is defined as the individual members for which the information or data is collected.
A sample is defined is defined as the group or part of the selection from where the information or data is to be obtained.