wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

MATLAB

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.
A=[1 2 3 4 5];
a)
A is Row Vector
b)
A is Column Vector
2.
A=[1;2;3;4;5];
a)
A is Row Vector
b)
A is Column Vector
3.
floor(14.8) =
a)
14.8
b)
15
c)
14
d)
0.8
4.
A=[14  12  15;
        34  25  35;
        94  51  75;
        40  52  55]
What is the dimension of A ?
a)
4x3
b)
3x4
c)
4x4
d)
3x3
5.
round(14.8) =
a)
14.8
b)
15
c)
14
d)
0.8
6.
A=[14  12  15;
        34  25  35;
        94  51  75;
        40  52  55]
How many elements greater than 14 ?
a)
9
b)
10
c)
11
d)
12
7.
ciel(14.8) =
a)
14.8
b)
15
c)
14
d)
0.8
8.
5*2^2*5 =
a)
100
b)
300
c)
500
d)
1000
9.
A=[14  12  15;
        34  25  35;
        94  51  75;
        40  52  55]
How many elements less than 14 ?
a)
1
b)
2
c)
3
d)
4
10.
what is the output of this command
5 < 9  
a)
5
b)
9
c)
1
d)
0