0% found this document useful (0 votes)
2 views

Quiz 1 (Signal and System)_ Attempt Review

The document is a review of Quiz 1 for the Signal and System course, completed on February 28, 2022, with a score of 13.75 out of 16.00, equivalent to 85.94%. It includes a breakdown of questions, correct answers, and marks received for each question.

Uploaded by

22ucc023
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Quiz 1 (Signal and System)_ Attempt Review

The document is a review of Quiz 1 for the Signal and System course, completed on February 28, 2022, with a score of 13.75 out of 16.00, equivalent to 85.94%. It includes a breakdown of questions, correct answers, and marks received for each question.

Uploaded by

22ucc023
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Dashboard / Courses / Even Semester 2021-22 / UG Core Course / SEMESTER IV / SSC(L)21 / SSC Lab Evaluation (Pre-Midterm)

/ Quiz 1 (Signal and System)

Started on Monday, 28 February 2022, 5:05 PM


State Finished
Completed on Monday, 28 February 2022, 5:21 PM
Time taken 15 mins 54 secs
Marks 13.75/16.00
Grade 12.89 out of 15.00 (85.94%)

Question 1
Correct

Mark 1.00 out of 1.00

a. 
Clear all

b. Delete all

c. Close all

d. Clc

e. None

Your answer is correct.

The correct answer is:


Clear all

Question 2

Correct

Mark 1.00 out of 1.00

Which of the following expressions generates an evenly spaced vector containing 15 values between 4 and 20?

a. x=linspace (15,4,20)

b. x = 4:15:20

c. x=linspace (4,20,15)

d. x=linspace (4,15,20)

Your answer is correct.

The correct answer is:


x=linspace (4,20,15)

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 1/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 3

Correct

Mark 1.00 out of 1.00

Which of the following is the correct syntax for writing a function?

a. function [outputArg1,outputArg2] = function_name(inputArg1,inputArg2)

b. function[inputArg1,inputArg2]= (outputArg1,outputArg2)

c.
function_name(outputArg1,outputArg2)= function[inputArg1,inputArg2]

d. None of the above

Your answer is correct.


The correct answer is:
function [outputArg1,outputArg2] = function_name(inputArg1,inputArg2)

Question 4
Correct

Mark 1.00 out of 1.00

If X = [1 2 3 4; 11 24 92 100; 345 65 90 1]. What will the value of a be equal to if this code is entered into MATLAB?

[a b] = size (X)

a. 3

b. 4

c. 1234

d. 1 2

Your answer is correct.

The correct answer is:


3

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 2/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 5

Correct

Mark 1.00 out of 1.00

Examine the following MATLAB code. What is the value of B at the end of the program: A=2;
for ii=0:2:4

A= [A, A*ii];

end

B=A

a. B=2,0,0,0

b. B=2 2 0 2 0 0 2 0 0 0

c. B= 2 0 4 0 8 0 16 0

d. B= 2 2 4 8

Your answer is correct.

The correct answer is:


B= 2 0 4 0 8 0 16 0

Question 6

Correct

Mark 1.00 out of 1.00

a. None

b.
Low level Language

c.
Hybrid Level Language

d. 
High level language

Your answer is correct.

The correct answer is:


High level language

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 3/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 7

Correct

Mark 1.00 out of 1.00

a.

b. 

c.

d. None

Your answer is correct.

The correct answer is:

Question 8
Correct

Mark 1.00 out of 1.00

a. Mathworks

b. None

c.
Math Laboratory

d. 
Matrix Laboratory

Your answer is correct.

The correct answer is:


Matrix Laboratory

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 4/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 9

Correct

Mark 1.00 out of 1.00

What are the functions to see the graph of a continuous and a discrete function?

a. plot() & disc()

b. plot() & stem()

c. cont() & disc()

d. cont() & stem()

Your answer is correct.

The correct answer is: plot() & stem()

Question 10

Correct

Mark 1.00 out of 1.00

Difference between convolution and correlation is

a. correlation process rotates the matrix by 270 degrees.

b. convolution process rotates the matrix by 180 degrees.

c. convolution process is same as convolution process

d. convolution process rotates the matrix by 360 degrees.

Your answer is correct.

The correct answer is: convolution process rotates the matrix by 180 degrees.

Question 11
Correct

Mark 1.00 out of 1.00

What is the use of abs function in MATLAB?

a. returns power of number

b. returns magnitude of a number.

c. returns the square root of number.

d. None of these

Your answer is correct.

The correct answer is: returns magnitude of a number.

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 5/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 12

Correct

Mark 1.00 out of 1.00

i = 0;
for t = 0:.01:10
i = i + 1;
y (i) = sin (t);
end
What is the output of the above program?

a. sine of 1001 values ranging from 0 to 100

b. sine of 1001 values ranging from 0 to 10

c. sine of 100 values ranging from 0 to 100

d. sine of 1000 values ranging from 0 to 100

Your answer is correct.


The correct answer is: sine of 1001 values ranging from 0 to 10

Question 13
Incorrect

Mark -0.25 out of 1.00

What are the terms a and b in following code,


[a,b]=audioread('wav.wav')

a. a=magnitude; b=frequency 

b. a=sampling rate; b= magnitude

c. a=frequency; b=sampling rate

d. a=magnitude; b= sampling rate

Your answer is incorrect.

The correct answer is:


a=magnitude; b= sampling rate

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 6/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 14

Correct

Mark 1.00 out of 1.00

What is the output (y) of the following code


D=[1 2 3 4 5]
y=0;
for k=-2:2
y = y + D_k(k)
end

a. 15

b. 15

c. None of these

d. 10

Your answer is correct.

The correct answer is:


None of these

Question 15

Not answered

Marked out of 1.00

Two signals x and y have an array size of 100 each. What will be the size of z after execution of the following code?

z=xcorr(x,y)

a. 128

b. 200

c. 100

d. none of these

Your answer is incorrect.

The correct answer is:


200

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 7/8
2/27/24, 6:53 PM Quiz 1 (Signal and System): Attempt review

Question 16

Correct

Mark 1.00 out of 1.00

What will be the step size of the variable 'freq' after the execution of following code;

freq=linspace(0,10,101)

a. 1

b. 10

c. 101

d. 0.1

Your answer is correct.

The correct answer is:


0.1

◄ SSC Lab Submission: Experiment 4 (Thursday)

Jump to...

Signal & System Lab (MidTerm) ►

https://moodle.lnmiit.ac.in/mod/quiz/review.php?attempt=179475&cmid=4308 8/8

You might also like