Solutions
Save
Practice questions for this set
Learn 1 /7 Study using Learn
least squares linear regression
Choose an answer
1 y=9+7x+6x^2 2 y=a0+a1*x
3 least squares parabolic regression 4 logistic regression
Don't know?
Terms in this set (51)
a line of code that shows the string hi MessageBox.Show("hi");
in a message box
a line of code that will add the srting lstList.Items.add("hi")
hi to the items in a listbox
, a counting loop containting a starting for loop
variable, a condition (ending point),
and a modification to the starting
starting variable
for loops may run as few as ___ time(s) 0
loop that does the actions then do-while
checks the while condition
do-while loops will run as we as ____ 1
time(s)
while loops will run as few as ____ 0
time(s)
for loop formatting is variable, condition, change to variable
for(____) (3 components)
{
do the thing
}
while loops run while their condition is true
____
this is an example of a ____ (2 words) nest loop
while (!file1.EndOfStream)
{
while (!file2.EndOfStream)
{
do the thing
}
}