Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
41 views22 pages

AUTOCAD AND MATLAB 160 Questions

The document contains a series of questions and answers related to AutoCAD and MATLAB, covering commands, functions, and terminology in both software applications. It includes multiple-choice questions on topics such as drawing commands in AutoCAD, MATLAB syntax, and programming concepts. The content is structured as a quiz format aimed at testing knowledge of AutoCAD and MATLAB functionalities.

Uploaded by

Patty Gorospe
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)
41 views22 pages

AUTOCAD AND MATLAB 160 Questions

The document contains a series of questions and answers related to AutoCAD and MATLAB, covering commands, functions, and terminology in both software applications. It includes multiple-choice questions on topics such as drawing commands in AutoCAD, MATLAB syntax, and programming concepts. The content is structured as a quiz format aimed at testing knowledge of AutoCAD and MATLAB functionalities.

Uploaded by

Patty Gorospe
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/ 22

AUTOCAD & MATLAB

1. In CAD, the LIMITS command allows you to determine the:


A. Size of the drawing space
B. Amount of time needed to draw
C. Size of text
D. None of the above

2. A uniform pattern of dots/line on the CAD screen is called a/an


A. Snap pattern C. Grid
B. Reference dot pattern D. All of the above

3. What do you mean by AutoCAD?


A. Automatic Candidate Address Detection
B. Automatic Card Address Direction
C. Automatic Computer Active Decor
D. Automatic Computer-Aided Design/Drafting

4. In CAD, which key can be used to quickly cancel a command?


A. backspace C. tab
B. esc D. enter

5. What does UCS mean? (in the context of CAD)


A. User Coordinate System C. United Coordinate System
B. United CAD Software D. User CAD Software

6. This is a command in AutoCAD used to move the view planar to the screen.
A. offset C. pan
B. fillet D. dist

7. What does the Offset command in AutoCAD do?


A. moves to specified distance
B. moves above the specified distance
C. moves away from a specified distance
D. none of the above

8. Where would AutoCAD ask you for something?


A. Tools icons C. Properties palette
B. Command Line D. Toolbar
AUTOCAD & MATLAB
9. When saving your drawings in AutoCAD, the default type is?
A. pdf C. bak
B. dwg D. doc

10. What does the command Fillet do?


A. Straightens an angle C. Deletes an angle
B. Curves an angle D. All of the above

11. The __________ command is used to lengthen a line to meet an edge.


A. Array C. Extend
B. Chamfer D. Rotate

12. What a phantom line used for?


A. To show an alternate position
B. To represent a line of symmetry
C. To reperesent an edge not visible
D. To eliminate a section of a drawing not needed because of size

13. When you type a second point by first moving the cursor to indicate direction and
then entering a distance, you are using the __________.
A. Direct Distance entry technique
B. Relative Polar Coordinates
C. Interactive
D. Absolute Coordinates

14. Which CAD command enlarges or reduces selected objects proportionally in the X, Y,
and Z directions from a base point?
A. Stretch C. Array
B. Divide D. Scale

15. Which CAD command creates multiple copies of objects in a circular or rectangular
pattern?
A. Array C. Chamfer
B. Extend D. Rotate

16. The __________ command provides the length of an object but does not place a
dimension line in the drawing.
A. Annotate C. Baseline
B. Leader D. Distance
AUTOCAD & MATLAB
17. CAD commands such as LINE, CIRCLE, and ARC and other basic CAD figures are
examples of __________.
A. Modify commands C. Draw commands
B. Edit commands D. None of the above

18. When a layer is turned off __________.


A. It makes no real difference. Details can still be added to the layer
B. Details on the layer cannot be seen
C. File space is saved when saving the file
D. Details cannot be erased from the layer

19. The __________ tool is used to fill in an object with color/pattern design.
A. Arc C. Line
B. Hatch D. Pattern

20. What a break line is used for?


A. To show an alternate position
B. To represent an edge not visible
C. To represent a line of symmetry
D. To eliminate a section of drawing not needed because of size

21. What is the difference between command Plot and Print?


A. Print command can print up to A3 size paper
B. Plot command prints only big plans
C. The plot command for CNC (CAM
D. No difference

22. From which direction does AutoCAD start measuring angles?


A. 6 o’clock C. 3 o’clock
B. 9 o’clock D. 12 o’clock

23. With the Multiline Text editor, you can do all of the following except
A. Create fields such as date, time and author
B. Insert numbered and bulleted lists
C. Insert pictures
D. Insert specific drafting and engineering symbols

24. How many points do you need to define for the rectangle command?
A. Two C. One
B. Four D. None
AUTOCAD & MATLAB
25. The origin of a drawing is ALWAYS at _________
A. 0, 0 C. A random point in space
B. The first point you select D. UCS ICON

26. What does MATLAB stands for?


A. Math Laboratory C. Mathworks
B. Matrix Laboratory D. Nothing

27. What symbol precedes all comments in Matlab?


A. “ D. <
B. % E. None of the above
C. //

28. Which of the following is not a pre-defined variable in Matlab?


A. pi D. gravity
B. inf E. j
C. i

29. This Matlab commands clears all data and variables stored in memory:
A. clc C. delete
B. clear D. deallocate

30. Characteristics in Matlab are represented in their value in memory.


A. Decimal C. Hex
B. ASCII D. String

31. Which is these is not an aspect of a for/while loop;


A. Update D. Condition
B. Initialization E. All are aspects of loops
C. Runner

32. To better manage memory and prevent unnecessary memory allocations, Matlab
uses;
A. Vectors C. Delayed copy
B. Scalars D. Licenses

33. To print a newline in a fprint statement, you must use the following escape
character;
A. \t C. \nxt
B. \nl D. \n
AUTOCAD & MATLAB
34. In Matlab, this keyword immediately moves to the next iteration of the loop;
A. Update C. Continue
B. Goto D. Break

35. Which of the following will correctly define x, y, and z as symbols?


A. sym (x, y, z) C. sym x, y, z
B. syms x y z D. syms x, y, z

36. Which of the these is the way to access the first element in a vector named v
(assuming there is at least one element in the vector)?
A. v(0) C. v
B. v(1) D. v(: , 0)

37. Which of the following is used to see if two elements are equal in MATLAB?
A. != C. =
B. == D. Isequal

38. If vector = [1 2 3 4; 11 24 92 100; 345 65 90 1]. What will the value of a equal to if
this code is entered into MATLAB >> [a b] = size (vector)?
A. 1 2 3 4 D. 4
B. 12 E. 3
C. 1

39. What is the value of ans that is printed when the following code is run:
isnumeric(32)
A. 1 D. Yes
B. 0 E. True
C. 32

40. If I want to save a formatted string to memory, but don’t want to print it out, which
command should I use?
A. fprintf C. disp
B. sprintf D. echo

41. To add a comment to the mfile, the MATLAB command is


A. % C. Comment(‘ ‘)
B. ; D. &
AUTOCAD & MATLAB
42. When used in the fprintf command, the %g is used as the
A. Single character display C. String notation display
B. Fixed point display D. Default number display

43. When used in the fprintf command, the \n is used to


A. Add a space between any two characters
B. Add a line space (eneter key)
C. Place a number into the comment
D. Clear the comment

44. To display ‘Question 2’ in the command window, the correct command is


A. disp(Question 2) C. disp(‘Question 2’)
B. display(‘Question 2’) D. Question 2

45. The clc command is used to


A. Clear the command window
B. Erase everything in the mfile
C. Clean the desktop
D. Save the existing mfile

46. The num2str command


A. Converts a number to string
B. Converts strings to a number
C. Concatenates numbers and strings
D. Concatenates strings

47. The ouput of the last line is


𝒂𝒂 = 𝟐
𝒂𝒔 = 𝒏𝒖𝒎𝒏𝟐𝒔𝒕𝒓(𝒂𝑨.
𝒄𝒂𝒕 = [′ 𝒄𝒂𝒕′ 𝒂𝒔]
A. cat2
B. cat 2
C. ??? Undefined functions or variable ‘as’
D. cat aa

48. to join one or more strings into a single string is known as


A. concatenation C. string conversion
B. joining D. string theory
AUTOCAD & MATLAB
49. The output of
𝒄𝒂𝒕 = ["cat" "dog"]
𝒊𝒔
A. catdog C. cat&dog
B. cat dog D. CatDog

50. To add comments in MATLAB, use __________.


A. // C. /%
B. %/ D. %

51. Which functions help you to save and load variables?


A. C.
>> save Lays [a, b] >> save Lays “a, b”
>> load (‘myfile.mat’) >> load (myfile.mat)

B. D.
>> save Lays (a b) >> save Lays a b
>> load myfile.mat >> load (‘myfile.mat’)

52. To display comments of M-file, we use __________


A. echo on C. show %
B. comment on D. Cannot be displayed

53. Where do we need to store a function to call it in other programs?


A. The bin folder C. The MATLAB folder
B. Anywhere D. Desktop

54. What are the difference between the ‘help’ and the ‘look for’ command?
A. No difference
B. Syntactical difference
C. Help returns the entire set while look for returns specific commands
D. Help returns all the toolbox while look for returns a single toolbox
AUTOCAD & MATLAB
55. What will the following set of commands do when they are present in a script file?
𝐬𝐭𝐞𝐦[𝐲𝟏, 𝐲𝟐];
𝐭𝐢𝐭𝐥𝐞(′𝐩′ );
𝐩𝐫𝐢𝐧𝐭 − 𝐝𝐞𝐩𝐬 𝐩
A. Plot the discrete graph of y1 and y2
B. There is no stem comman in MATLAB
C. Store the graph as a separate file
D. Cannot be determined

56. The function to close the windows containing graphs generated from MATLAB is
__________
A. close all C. delete graphs
B. close graphs D. end all

57. What is not displayed by the Workspace?


A. Time of variable generation
B. Standard deviation of the variable values
C. Class of the variables
D. Nature of the variables

58. MATLAB allows modelling of different control system using __________.


A. Simulink
B. Control System Toolbox
C. Not available in MATLAB as of yet
D. ezplot

59. How to stop the execution of a chain of commands?


A. Press Ctrl + C
B. Cannot be stopped
C. Only usage of debugging mode is possible in MATLAB
D. Quit

60. What are MEX files in MATLAB?


A. No such thing as MEX files
B. Helps to analyse commands in MATLAB
C. Allows the user to combine C source files with MATLAB files
D. Same as MAT files
AUTOCAD & MATLAB
61. MATLAB stands for
A. Matrix laboratory C. Matric library
B. Math library D. Matrix library

62. Which command is used to clear a command window?


A. clear C. clc
B. close all D. clear all

63. To determine whether an input in MATLAB keyword, command is?


A. iskeyword C. inputword
B. key word D. isvarname

64. Command used to display the value of variable x.


A. displayx C. disp x
B. disp(x) D. vardisp(‘x’)

65. Which of the following statements shows the result of executing the following line in
the editor window?
𝐬𝐢𝐳𝐞 = [𝟏 𝟑]′ ; 𝐬𝐢𝐳𝐞(𝐬𝐢𝐳𝐞)
A. error C. 3 1
B. 1 3 D. 3 3

66. Executing in the command window the following code returns.


𝐚 = [𝟏: 𝟑]′ ; 𝐬𝐢𝐳𝐞(𝐚)
A. error message C. 3 1
B. 1 3 D. 31

67. Command is used to save command window text to file.


A. saveas C. diary
B. texttofile D. todiary

68. Executing in the editor window the following code returns


𝐚 = 𝟏; 𝐬𝐢𝐧(𝐚) 𝐚 = 𝟐;
A. 0.4815 C. 1
B. 0.8415 D. 0.9093

69. To stop execution of a MATLAB command, used keys?


A. ctrl+c C. ctrl+b
B. ctrl+s D. ctrl+enter
AUTOCAD & MATLAB
70. Which is the invalid variable name in MATLAB?
A. x6 C. 6x
B. last D. z

71. If one operand is a scalar and the other is not, then MATLAB applies the scalar to
every element of the other operand. This property is known as __________.
A. Operand divergence C. Vector expansion
B. Scalar expansion D. Dimension declaration

72. Matrix operations follows the rules of linear algebra and are not compatible with
multidimensional arrays.
A. True B. False

73. What is the difference between syms ‘x’ and sym ‘x’?
A. there is no difference, they are the same functions
B. they are equivalent
C. syms ‘x’ makes the declaration long lasting while sym ‘x’ makes the
declaration short lasting
D. syms ‘x’ makes the declaration short lasting while sym ‘x’ makes the
declaration long lasting

74. What is the nature of the arrangement of the coefficients to store the following
expression in MATLAB?
𝐲 = 𝟑𝐱𝟓 + 𝐱𝟐 + 𝟔
A. y = [3,0,0,1,0,6] C. y = [3; 0; 0; 1; 0; 6]
B. y = [3,1,6] D. y = [6,0,1,0,03]

75. What happens if we don’t assign a variable to an expression which evaluates a


numerical value?
A. MATLAB shows error
B. Nothing happens
C. The evaluated values are assigned to a variable ans automatically
D. Depends on the numerical value

76. MATLAB sees a __________ ordered variable as a vector of dimension n*1.


A. nth, (n+2)th C. (n-1)th, nth
B. nth, (n+3)th D. nth, (n-1)th
AUTOCAD & MATLAB
77. Name the function used, for multiplication and division of two polynomials in
MATLAB.
A. conv() and deconv() C. conv() and div()
B. multi() and div() D. mult and div

78. How can the formulation of polynomial be done from its roots?
A. poly(r), r is a row vector, containing the roots of the polynomial
B. poly([roots as a coloumn vector])
C. poly([roots as a row vector])
D. poly([roots in descending order as a coloumn vector])

79. What will be the output when the following code is written in MATLAB?
𝐮 = 𝐬𝐢𝐧(𝟏𝟎) ; 𝐯 = 𝐩𝐢; 𝐰𝐡𝐨𝐬
A. u and v are double with 8 bytes
B. u and v are symbolic objects
C. error
D. u and v are double arrays

80. What is the disadvantage of the whos function in MATLAB?


A. It does not show the values of the variable
B. It does not show the size of the variable
C. It does not show the class of the variable
D. It does not show the name of the variable

81. What will be the output of the following code?


𝐀 = 𝟏𝟎𝟎; 𝐢𝐟(𝐀 > 𝟗𝟗) 𝐜𝐥𝐞𝐚𝐫 𝐀; 𝐞𝐧𝐝
A. A never gets stored in MATLAB
B. A is first stored and then removed from workspace
C. Error
D. A is retained in the workspace

82. What is the replacement for the whos function?


A. Workspace window
B. Command window
C. Current folder window
D. Remembering all the variables used
AUTOCAD & MATLAB
83. What does the Workspace show?
A. Attributes of variables, functions from command window
B. Attributes of variables, script files from command window
C. Attributes of variables, script files, functions from command window
D. Attributes of variables from command window

84. What is the output of the following code?


𝐚 = 𝟏𝟎; 𝐛 = 𝟏𝟎; 𝐜 = ′𝐩𝐢′ ; 𝐰𝐡𝐨𝐬
A. The output will show all double variables
B. The output will show a and b as double and c as symbolic object
C. The output will show a and b as symbolic object and c as char
D. The output will show a and b as double variables and c as char variables

85. What is the size of double and symbolic variables holding integer constants?
A. 8 bytes and 16 bytes C. 32 bytes and 26 bytes
B. 16 bytes and 112 bytes D. 23 bytes and 112 bytes

86. What is the difference between who and whos command?


A. The former shows the names of the variables being used while the latter
shows the details of the variables in the ongoing program
B. The latter shows the names of the variables being used while the former
shows the details of the variables in the ongoing program
C. No difference at all
D. There is no such function as who and whos

87. Which function is preferable to find the magnitude of a complex number?


A. abs()
B. sqrt()
C. cart2pol()
D. MATLAB does not support complex arguments

88. Which is an escape sequence constant?


A. Esc C. \b
B. /n D. nargout

89. All MATLAB computations are done in


A. Single precision C. Linear accuracy
B. Double precision D. Multi-level precision
AUTOCAD & MATLAB
90. Which symbol is used to initialise a variable?
A. = C. ==
B. -> D. init

91. Choose the correct option


A. any() shows all the elements in a matrix while all() shows every element of a
vector
B. any() is ‘true’ if elements in a vector is zero
C. all() is ‘true’ if every element in a vector is non zero
D. all() is ‘true’ if every element in a vector is 0

92. What operator helps in the transpose of a matrix?


A. “ .’ ” C. “./”
B. “ ‘ ” D. “.\”

93. What is the difference between the expressions (9*1-8) & (9-1*)?
A. Computational difference C. No difference
B. Final results are different D. Cannot be determined

94. What is the syntax to solve simultaneous equations easily?


A. solve[“equation-1”, “equation-2”];
B. sol[“equation-1” “equation-2”];
C. sol[‘equation-1”equation-2’];
D. solve[‘equation-1’, ‘equation-2’];

95. What is the difference between sqrt(10) and sqrt(sym(10))?


A. There is no difference
B. sqrt(sym(10)) is incorrect
C. There is no function as sqrt
D. sqrt(10) returns exact value while sqrt(sym(10)) returns 10(1/2)

96. The solve[] command can do which of the following things?


A. Produce the exact solution C. Produces exact roots
B. Produce a symbolic solution D. Produces complex roots

97. What happens if dsolve does not return any numerical solution?
A. The equations have no solution
B. The equations have a trivial solution
C. The equations have infinite no. of solutions
D. The equations has to be solve separately
AUTOCAD & MATLAB
98. If solve solution does not return any solution, what does it imply?
A. The equations has no definite solution
B. The equation has a solution for a specific interval
C. The equation may be solvable but the function ‘solve’ cannot produce a
solution
D. There is no function ‘solve’

99. Vectors depend upon brackets wile scalars don’t.


A. True B. False

100. What is the symbol used to evaluate the transpose of a vector?


A. “ ^ ” C. “ ‘ ”
B. “ * ” D. “ ~ ”

101. What is the of MATLAB over other computing software with matrix dimensions?
A. No advantage
B. Real time pre-defined memory allocation
C. Real time user-defined memory
D. Matrix operations are easily computed

102. Which operator set is used for left and right division respectively?
A. .\ and ./
B. ./ and .\
C. Left division and right division is not available in MATLAB

103. What is the name of a primary function?


A. Name of M-file C. Name of Help file
B. Name of Script file D. Name of private-file

104. Predominantly, what are the two kinds of errors in MATLAB programs?
A. Syntax and runtime C. Logic and runtime
B. Syntax and logic D. Syntax and algorithmic

105. If the programs demand evaluation of multiple, only decimal, values of the same
function, what is the better way amongst the following?
A. Using anonymous functions or inline functions
B. Using str2func
C. Using private functions
D. Using any function
AUTOCAD & MATLAB
106. What are persistent variables?
A. Variables which retain values between calls to the function
B. Variables which help in a calling a function
C. Variables which deal with function
D. Variables global to the function

107. Variables need to have same name while being passed from the primary function to
the sub-function.
A. True B. False

108. Which command can be used for single step execution in debugging mode?
A. dbstep C. dbstatus
B. dbstepin D. dbcont

109. How do we access a global variable in nested function?


A. Simply seek the variable from the primary function
B. Make a copy of the global variables from the primary function
C. Declare the variable within the function
D. Declare the variable as global

110. How does MATLAB help in passing function arguments?


A. By call by value and call by reference
B. Only by call by value

111. Which line is treated as H1 line?


A. Comment line succeeding function definition
B. Comment line preceding function definition
C. Comment line after function
D. All lines before and after function definition

112. How would you start a debugger in MATLAB?


A. There is no M-file in MATLAB
B. Type edit in MATLAB and press Enter
C. Type debug in MATLAB and press Enter
D. Type M-file in MATLAB and press Enter
AUTOCAD & MATLAB
113. What is the extension of script files?
A. .m
B. .mat
C. .script
D. There is a nothing called script file

114. What is the basic difference between M-files and MAT-files?


A. There is no difference
B. MAT files are binary data files while m-files are ASCII text files
C. M files are binary data files while MAT-files are ASCII text files
D. There is no such thing as MAT files

115. What does the echo command do?


A. It echoes
B. It shows the comments present in Script files
C. It shows the commands and comments in MAT-files
D. It shows the commands and the comments in M-files

116. What will the following command do?


𝐋𝐨𝐚𝐝 𝐦𝟏
A. Load the script file named ‘m1’
B. Load the function file named ‘m1’
C. Load the m-file named ‘m1’
D. There is no load command in MATLAB

117. What will the following command do?


𝐒𝐚𝐯𝐞 𝐰𝐨𝐫𝐤𝐬𝐩𝐚𝐜𝐞
A. Saves the entire workspace as MAT file
B. Saves a variable named ‘workspace’ as MAT file
C. Saves the entire workspace as m file
D. Saves a variable named ‘workspace’ as m file

118. How do you create a function file in MATLAB?


A. Begin m-file with function definition
B. Begin script file with function definition
C. There is no such thing called function file
D. An m-file is only a function file
AUTOCAD & MATLAB
119. A student is repeatedly calling a function file but gets no output. She has checked the
file repeatedly so finally she asked her teacher about it. The teacher checked everything
and finds the error and gives her a scolding. What is a silly mistake?
A. She was calling the wrong function
B. She has placed a semicolon at the end of the line which computes the desired
values
C. She has called a .m file
D. She was calling a script file

120. A function is not returning values according to desired input values. What should be
the correction?
A. Include clear all at the beginning of function file
B. Include close all at the beginning of function file
C. Include echo on in the function file
D. Cannot be solved

121. MEX files work on JAVA.


A. True B. False

122. What is the default increment value in a for-loop?


A. 0
B. 1
C. An increment value is necessary
D. 0/1

123. What is the output of the following code?


𝐟𝐨𝐫 𝐢 = 𝟏: 𝟒
𝐟𝐨𝐫 𝐣 = 𝟏: 𝟒
𝐚 = 𝟓; 𝐚 = 𝐚 + 𝟓;
𝐞𝐧𝐝
𝐞𝐧𝐝
A. No output will be shown C. a=80
B. a=10; D. error in the code

124. How many times will the following loop run?


𝐟𝐨𝐫 𝐢 = 𝟏: 𝟓
𝐢𝐟(𝐢 < 𝟑) 𝐛𝐫𝐞𝐚𝐤
A. No output due to some error C. 0 times
B. 1 times D. 3 times
AUTOCAD & MATLAB
125. A for-loop can have multiple index values.
A. True B. False

126. There can be multiple decision variables for while loop


A. True B. False

127. How do we break from an infinite loop without keeping a break statement within the
loop?
A. Press Ctrl+C C. Loop won’t be terminated
B. Press Ctrl+Z D. Press Ctrl+X

128. The transient response, yt(t), of a system becomes __________ a t tends to infinity.
A. 0 C. Infinity
B. 1 D. Undefined

129. The steady state value of a system is __________ it’s a transient response.
A. dependent on C. greater than
B. independent of D. not observable from

130. Delay time is the time required by a system to reach a quarter of its steady state value.
A. True B. False

131. For non-unity feedback system, the error is calculated with respect to the reference
signal.
A. True B. False

132. Which of the following command will reveal the damping ratio of the system?
A. damp() C. damping{}
B. damp[] D. dr()

133. If the damping factor is zero, the unit-step response is


A. Purely sinusoidal C. Pulse function
B. Ramp function D. Impulse function

134. The steady state error of the system with a forward path transfer function
G(s)=13(s-1)/(s-1) and with a parabolic input is __________.
A. Infinite C. -infinite
B. 0 D. Undefined
AUTOCAD & MATLAB
135. Which of the following command gives the step response characteristics of a control
system?
A. stepinf() C. stepinfo[]
B. stepinfo() D. step()

136. Which of the following command generates the impulse response of a system which
has more zeros than poles?
A. impulse() C. impulse{}
B. impulse[] D. no such command

137. Which of the following command generates the transfer function of a system?
A. tf() C. tf{}
B. tf[] D. no such command

138. What is the output of the following code?


𝐬𝐭𝐞𝐩( [𝟏], [𝟏 𝟎 𝟎])
A. A parabola C. A step function
B. A ramp function D. An impulse function

139. The time constant of a system is __________.


A. Equal to the damping constant
B. Inverse of the damping constant
C. Twice the damping constant
D. Half of the damping constant

140. If the natural frequency of a system increases, the rise time __________.
A. Increases C. Doubles
B. Decreases D. Halves

141. The setting time is a measure of __________.


A. The speed of reaching stead state
B. The speed of reaching maximum overshoot
C. The speed of reaching second overshoot
D. Nothing

142. If the poles of a system transfer function are equal and imaginary, the system is
_________.
A. Undamped C. Overdamped
B. Critically damped D. Negatively damped
AUTOCAD & MATLAB
143. An undamped system is stable.
A. True B. False

144. For negative damping, the system is unstable.


A. True B. False

145. How would you plot multiple graphs in MATLAB?


A. Using the hold function
B. Using the mplot function
C. Using the mstem function

146. How do you show the program of an MAT file?


A. The program should contain the echo command
B. The program should contain the showprog command
C. The program should contain the diary command
D. The program cannot be shown while running a MEX file

147. The format for 5 digit representation along with exponent is __________.
A. short e
B. short g
C. short exp
D. 4 digit along with exponent value can be represented

148. Which operator is used to prevent the printing of insignificant zeros?


A. %o C. %g
B. %nz D. It is not possible

149. The function to plot a graph with both axes on logarithmic scales is _____________.
A. loglog C. semilog
B. log D. not possible

150. To stop execution, press _____________.


A. Ctrl+C C. Use end command
B. Use pause command D. Use keyboard command

151. The default Laplace transform, of functions, computed by MATLAB is _____________.


A. Unilateral B. Bilateral
AUTOCAD & MATLAB
152. The laplace transform oof step function, u(t), can be calculated by using _________.
A. syms t; laplace(t/t) C. laplace(t/t)
B. laplace(1) D. sym t; laplace (t/t)

153. The Transfer Function of an L.T.I system is ______________.


A. The impulse response with 0 initial conditions
B. The impulse response with some initial conditions
C. The ramp response with 0 initial conditions
D. The step response with 0 initial conditions

154. The final value theorem is applicable if __________.


A. Poles lie on right half of s plane
B. Poles lie on left half of s plane
C. Poles lie on the imaginary axis
D. Zeros lie on left half of s plane

155. What is the default variable used to represent the laplace transform in the output?
A. s C. S
B. z D. p

156. A causal system is stable if the pole lies on the right half of the s-[lane.
A. True B. False

157. An L.T.I. system is stable if ___________.


A. Poles lie on left half of s-plane
B. The R.O.C. encompasses the imaginary axis
C. The poles lie on the left half of s-plane and the R.O.C. encompasses the imaginary
axis
D. Cannot be determine

158. The number of inverse laplace transform of a function is equal to __________.


A. The number of poles C. The number of poles – 1
B. The number of poles + 1 D. Cannot be determine

159. The laplace transform method used to solve a differential function is __________ than
the classical way.
A. Easier C. Moderately difficult
B. Harder D. Relatively difficult
AUTOCAD & MATLAB
160. The laplace transform of a cascaded system is defined if ___________
A. The individual system have a common R.O.C.
B. The individual system doesn’t have a common R.O.C.
C. The impulse response of each system is defined
D. Cannot be determined

You might also like