GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

Author Archives: Anonymous

What is the output of the following code fragment?   x=0; wh…

What is the output of the following code fragment?   x=0; while( x < 5)       disp(x); end x=x+1; disp(x);  

Read Details

Which of the following is not a relational operator:

Which of the following is not a relational operator:

Read Details

What will be printed by the following statement if the value…

What will be printed by the following statement if the value of the select is ‘Q’:       switch (select)         case {‘Q’, ‘q’}             disp(‘quit’);       case {‘R’, ‘r’}             disp(‘redo’);       case {‘P’, ‘p’}              disp(‘play ‘);       otherwise             disp(‘other ‘); end    

Read Details

In Matlab the function max(x) is only valid if x is row vect…

In Matlab the function max(x) is only valid if x is row vector.

Read Details

The following loop is executed 3 times:   c = 0; while (c

The following loop is executed 3 times:   c = 0; while (c

Read Details

The general fomr of the fprintf command contains two argume…

The general fomr of the fprintf command contains two arguments one a string and the other a list of matrices.

Read Details

ezplot can only be used in symbolic problems involving plots…

ezplot can only be used in symbolic problems involving plots.

Read Details

What is the output of the following code?   m = 5, c = 0; wh…

What is the output of the following code?   m = 5, c = 0; while (c < 100)       m = m + 1;       c = c + 1; end disp(m);  

Read Details

If time=[1 2 3 4] and temp=[88 10 59 70] then data=[time’, t…

If time=[1 2 3 4] and temp=[88 10 59 70] then data=[time’, temp] is valid

Read Details

To create a row vector, enclose a list of values in paranthe…

To create a row vector, enclose a list of values in paranthesis.

Read Details

Posts pagination

Newer posts 1 … 25 26 27 28 29 … 89,412 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top