What is the command to clear the screen?
clc
Identify the Shortcut key to store programs?
Cntl+S
What is the command to generate complex number?
complex
What symbol do you use to suppress output of a line in Scilab?
Semicolon ( ; )
What function creates an identity matrix in Scilab?
eye()
What is the Scilab constant for the value of π?
%pi
What is the short cut key to clear the screen?
F2
What the command to create conjugate of a complex Number?
Conj()
Which command clears all variables from the workspace?
clear
What operator is used for matrix (element-wise) division term by term?
./ (dot slash)
What is a built-in variable used to display the resultant value in your calculations?
ans
What is the shortcut key to find the command existing in Scilab?(Eg: Factrorial)
Tab key
What is the command to find the real term in any complex number?
real()
Which command clears the console screen in Scilab?
clc
Which function returns the number of rows and columns of a matrix?
size()
Which function is used to plot a simple 2D graph in Scilab?
plot()
Auto-completion for command and variable names.
Tab
What keyword starts a user-defined function in Scilab?
function
What file extension is used for Scilab script files?
.sce (or .sci for function files)
Which command is used to find the determinant of a matrix A?
det(A)
Which function adds a title to a plot?
title()
Move cursor one character left or right.
Left (←) / Right (→) Arrow
Which loop keyword repeats a block a fixed number of times?
for
Which function is used to create a new empty figure window?
figure()
What does the single quote operator (') represent for a matrix A in Scilab?
Transpose of A.