QUESTIONS WITH ALL PASSED
ANSWERS!!
1 of 100
Term
when usign a foreach loop with linq you are essentially creating a
_____ (2 words)
Give this one a try later!
simple array dynamic list
unordered set structured array
, Don't know?
2 of 100
Term
code for the polyfit method to determine the coefficients
of a second order equation with x=all x points and y=all
y points
Give this one a try later!
polyfit(x,y,3) polyfit(x,y,2)
polyfit(x,y,1) polyval(poly1,x)
Don't know?
3 of 100
Term
linq is _____ (2 words) when it comes to naming off the
information you want from both an XML file and a database
Give this one a try later!
type sensitive format sensitive
, none of these, a[5] is invalid case sensitive
Don't know?
4 of 100
Term
What is the probability of rolling a total of 7 (seven) on a
pair of standard dice?
Give this one a try later!
1/6 7/36
6/36 5/36
Don't know?
5 of 100
Term
code to create a 2x2 matrix in mat lab with the
following data 4 5
32
Give this one a try later!
, even, 0, 8 [4 , 5 ; 3 , 2]
x = (0 : 0.1 : 50) None of these, A[5] is invalid
Don't know?
6 of 100
Term
How many times will the following sum execute? (x starts at
0 with int x = 0;)
while (x < 8)
{
x = x + 2; //this is the sum, count here
}
Give this one a try later!
1 4
3 2
Don't know?
7 of 100
Term