As the image element does not cause a line break, it is also referred to as which of the following?
AAn online image
BAn inline image
CAn outline image
DBlank image
Correct Answer: Option B
MCQ 2ALL
Which of the following is the extension of a worksheet created in Calc?
A.ods
B.odd
Cxls
D.obj
Correct Answer: Option A
MCQ 3ALL
How can one calculate total of values entered in a worksheet in a Calc document?
ABy manual entry
BBy autosum
CBy formula
DAll of these
Correct Answer: Option D
MCQ 4ALL
Which of the following technique arrange the data set in a particular order such as ascending or descending?
AData formatting
BData validation
CData filtering
DData sorting
Correct Answer: Option D
MCQ 5ALL
Which of the following options when selected deletes all data validations?
AData formatting
BDelete all
CDelete formula
DDelete me
Correct Answer: Option B
MCQ 6ALL
We can replace multiple occurrences of a word using which of the following facility of Calc?
AFind and replace
BBy replace only
CBy copy command
DBy preview command
Correct Answer: Option A
MCQ 7ALL
In which of the following ways we can enter a function in Calc?
ADirectly typing function name in a cell
BFunction wizard or selecting from tool bar
CBoth A and B
DDepends on function
Correct Answer: Option C
MCQ 8ALL
Which of the following is not a logical function?
AOR
BAND
CNOT
DPROPER
Correct Answer: Option D
MCQ 9ALL
Which of the possible mechanism to enter a function in Calc cell?
AThrough function wizard
BBy manually entering
CBoth A and B
DDepends on function
Correct Answer: Option C
MCQ 10ALL
Which of the following is used to enter 3D text in Calc?
AFontwork
BArtwork
CDrawing work
DGraphwork
Correct Answer: Option A
MCQ 11ALL
To fix column or row in a data range - to make it absolute, which symbol is used?
A#
B$
C&?
D%
Correct Answer: Option B
MCQ 12ALL
Which of the following refers to a list of instructions in a proper order to solve a problem called?
AAlgorithm
BFlowchart
CSequence
DRoadmap
Correct Answer: Option A
MCQ 13ALL
Which of the following symbol is used to represent output in a flowchart?
ASquare
BCircle
CParallelogram
DTriangle?
Correct Answer: Option C
MCQ 14ALL
Which of the following refers to the purpose of Algorithm and Flowchart?
AKnow the memory capacity
BIdentify the base of the number system
CDirect the output of the printer
DSpecify the problem completely & clearly
Correct Answer: Option D
MCQ 15ALL
Which of the following is an extension of C program file?
Ac
Bh
Cs
Dt
Correct Answer: Option A
MCQ 16ALL
Which of the following number refers to number of C character categories?
A0
B2
C4
D8
Correct Answer: Option C
MCQ 17ALL
Which of the following C character categories does the symbol = belong?
ALetter
BBlank space
CSpecial character
DDigit
Correct Answer: Option C
MCQ 18ALL
Which of the following is a valid keyword of C?
Aofsize
Bsizeof
Cforsize
Dsizefor
Correct Answer: Option B
MCQ 19ALL
Which of the following is an invalid variable name in C?
ARegister
BReglster
Cregistre
Dregister
Correct Answer: Option D
MCQ 20ALL
Which of the following keyword refer to integer data type?
Ainteger
BInteger
CINTEGER
Dint
Correct Answer: Option D
MCQ 21ALL
Which of the following refers to size of memory allocated to float as per gcc compiler?
A1
B2
C4
D6
Correct Answer: Option C
MCQ 22ALL
Which of the following is used to provide an alias to existing data types in C?
Aenum
Bdef
Cpointer
Dtypedef
Correct Answer: Option D
MCQ 23ALL
Which of the following are useful in C language I/O operations?
AMonitor
BKeyboard
CMouse
DAll of these
Correct Answer: Option D
MCQ 24ALL
Which of the following is not an input functions?
Agetchar( )
Bgetch( )
Cputs( )
Dgets( )
Correct Answer: Option C
MCQ 25ALL
What is the value of variable flag after the execution of following if statement? int flag=0; if(5<8) flag=1; }
A0
B1
C5
D8
Correct Answer: Option B
MCQ 26ALL
What is the value of variable sum after the execution of following statements? int number1=5,number2=10,sum=0; if(number1>number2) sum=sum+number1; else sum sum+number2;
A0
B5
C10
D12
Correct Answer: Option C
MCQ 27ALL
In which of the following each case label must be unique?
Aif
Bswitch
Cfor
Dwhile?
Correct Answer: Option B
MCQ 28ALL
After each switch statement block in switch, which statement signals the end of case causing the exit from switch statement?
Abreak
Bcontinue
Cstop
Dend
Correct Answer: Option A
MCQ 29ALL
What is the output of following program segment? int main() { int i; for(i=0;i<10;i++); printf("%d",i); }
A123456789
B9
C10
DError
Correct Answer: Option C
MCQ 30ALL
What happens if a C program tries to access a value from an array element whose subscript exceeds the size of array?
AThe element will be set to 0.
BThe compiler would report an error.
CThe program may crash or gives garbage data.
DThe array size increases automatically.
Correct Answer: Option C
MCQ 31ALL
What will be the output of the following program segment? int num[5]={1,2,3}; printf("%d %d",num[0],num[3]);
A1,2
B1,0
C1,3
D2,3
Correct Answer: Option B
MCQ 32ALL
The main() function in C language is a ___________
AUser defined function
BLibrary function
CKeyword
DReserved function
Correct Answer: Option A
MCQ 33ALL
Which keyword is used as a return type when function does not return any value?
Aint
Bmain
Cvoid
Dauto
Correct Answer: Option C
MCQ 34ALL
The nation of the Web was conceived in which year by Tim Berners-Lee?
A1995
B1991
C1891
D1990
Correct Answer: Option B
MCQ 35ALL
Which of the following stands for HTML?
AHyper Text Markup Language
BHyper Text Marking Language
CHigh Text Markup Language
DHigher Text Markup Language
Correct Answer: Option A
MCQ 36ALL
The gedit is a general purpose text editor for _______________
AGNOME
BMicrosoft Windows
CMac OS
DAll of the above
Correct Answer: Option D
MCQ 37ALL
What is the extension of HTML file?
A.html
B.java
C.hmtl
D.css
Correct Answer: Option A
MCQ 38ALL
Which of the following attribute is used to define text colour with body tag?
AColor
BText color
CText
DTcolor
Correct Answer: Option C
MCQ 39ALL
Which of the following is an empty element?
A"<hr>"
B"<br>"
C"<p>"
DBoth Aand B
Correct Answer: Option D
MCQ 40ALL
Which of the following tag pair is used to displayed the content in emphasized manner?
A<em> and </em>
B<strong> and </strong>
C<s> and </s>
D<tt> and </tt>
Correct Answer: Option A
MCQ 41ALL
What is the value of align attributes in tag?
ARight
BLeft
CCenter
DAll of the above
Correct Answer: Option D
MCQ 42ALL
Which of the following tag is used to added images into a webpage in HTML?
A<img>
B<image>
C<href>
D<ime>
Correct Answer: Option A
MCQ 43ALL
The align attribute can take which of the following values?
ATop, Bottom
BLeft, Right
CMiddle
DAll of the above
Correct Answer: Option D
MCQ 44ALL
Digital cameras and web pages normally use which file formats that drastically compress the data in the files?
A.jpg/.jpeg
B.png
C.bmp
D.gif
Correct Answer: Option A
MCQ 45ALL
Which of the following attribute specifies the vertical alignment of the contents of each cell in a row?
AHaling
Bvalign
CAlign
DVspace
Correct Answer: Option B
MCQ 46ALL
Which of the following attribute manage space between each cell of the table?
ASpacing
BCellspacing
CCellpadding
DTable spacing
Correct Answer: Option B
MCQ 47ALL
Instead of numbers, we can use which of the following values in ordered list?
AA,B,C....
BI, II, III .....
Ca, b, c.....
DAll of the above
Correct Answer: Option D
MCQ 48ALL
Within the frameset, each frame is represented by which of the following tag pair?
A<body> ... </body>
B<frame> ... </frame>
C<noframes> ... </noframes>
D<html>.... </html>
Correct Answer: Option B
MCQ 49ALL
Which of the following is a grid which interactively manages and organizes data in rows and columns?
ATable
BSheet
CSpreadsheet
DCalc
Correct Answer: Option C
MCQ 50ALL
Which of the following activities that can be generally done through a spreadsheet package?
ABalance sheet
BPersonal activities
CFinancial activities
DAll of the above
Correct Answer: Option D
MCQ 51ALL
Which of the following way we can open the Calc program?
AApplications-> Office-> OpenOffice.org
BAccessories -> Office-> OpenOffice.org
CApplications-> MSOffice-> OpenOffice.org
DApplications-> Office-> Calc.org
Correct Answer: Option A
MCQ 52ALL
When a new spreadsheet is opened, it will give you how many separate worksheets in Calc?
ATwo
BThree
CFour
DSixteen
Correct Answer: Option B
MCQ 53ALL
Which of the following is an extension of Calc spreadsheet file?
A.xls
B.odf
C.osd
D.ods
Correct Answer: Option D
MCQ 54ALL
Which of the following command is used to changing colour of the worksheet tab?
ATab color
BSheet tab color
CColor
DCalc clolor
Correct Answer: Option A
MCQ 55ALL
Which of the following function is used to calculate the period to repay of loan in Calc?
ANPAR
BNPER
CNRPA
DMPER
Correct Answer: Option B
MCQ 56ALL
The CONCATENATE function can join up to how many strings of text in Calc?
A15
B20
C30
D40
Correct Answer: Option C
MCQ 57ALL
Which of the following function turns first letter of all words into uppercase and remaining alphabets in lowercase letters in Calc?
AUpper
BLower
CRoman
DProper
Correct Answer: Option D
MCQ 58ALL
Which of the following is popular reasons why people should go for a chart?
AFor comparisons
BFor demonstration of distribution
CFor understating of situation
DAll of the above
Correct Answer: Option D
MCQ 59ALL
How many basic chart types offers in Calc?
A5
B10
C15
D20
Correct Answer: Option B
MCQ 60ALL
Which of the following symbol is used to represent a connector?
ACircle
BRectangle
CTriangle
DDiamond
Correct Answer: Option A
MCQ 61ALL
Which of the following is a technique in which we use pictorial representation of every action that we perform within the machine process that solves a problem?
APseudo code
BFlowchart
CAlgorithm
DDecision making
Correct Answer: Option B
MCQ 62ALL
Which of the following components are used to show the beginning and the end of a flowchart?
AUp and Down
BFirst and Last
CStart and End
DStart and Last
Correct Answer: Option C
MCQ 63ALL
A good program should possess which of the following characteristics?
AA program must end after finite number of steps.
BThe instructions of program must be precisely defined.
CAll the instructions must be effective.
DAll of the above
Correct Answer: Option D
MCQ 64ALL
Which of the following is known as user defined function in C?
Amain( )
Bprintf( )
Cscanf()
Dreturn()
Correct Answer: Option A
MCQ 65ALL
Whenever the text is enclosed between ............, it is considered as a comment in C?
A// ... //
B/* ..... */
C<! ... >
DAny of the above
Correct Answer: Option B
MCQ 66ALL
A scope of C variable is decided by using which of the following opening and closing braces?
A[ ]
B( )
C{ }
D< >
Correct Answer: Option C
MCQ 67ALL
C language also has its own character set that can be divided into how many categories?
A3
B4
C5
D8
Correct Answer: Option B
MCQ 68ALL
Which of the following is a bitwise operators?
A<< and >>
B& and |
C~ and ^
DAll of the above
Correct Answer: Option D
MCQ 69ALL
C provides us an operator known as ________ operator or conditional operator for condition checking?
Aarray
Blogical
Cternary
Drelational
Correct Answer: Option C
MCQ 70ALL
How many types of operators in C?
A4
B8
C10
D16
Correct Answer: Option B
MCQ 71ALL
Which of the following function is used to read a character in a C program at runtime?
Agetchar( )
Bgetch( )
Cgetc( )
Dgets( )
Correct Answer: Option A
MCQ 72ALL
Which of the following function allows us to input data into particular data format like int char, float etc.?
Aprintf( )
Bscanf( )
Cmain( )
Dgets( )
Correct Answer: Option B
MCQ 73ALL
Which of the following function can be used to write a single character to the standard output device?
Aputc( )
Bputs( )
Cputchar( )
Dgets( )
Correct Answer: Option C
MCQ 74ALL
Which of the following statement is one of the powerful decision making statement which can be used to transfer control of instruction execution?
Aif
Bswitch
Cfor
Dwhile
Correct Answer: Option A
MCQ 75ALL
Which of the following statement is very useful when an action is to be taken based on given multiple choices?
Aif
Bswitch
Cfor
Dwhile
Correct Answer: Option B
MCQ 76ALL
Which of the following statement is used in switch, the end of case causing the exit from switch statement?
Astop
Bcontinue
Cbreak
Dcase
Correct Answer: Option C
MCQ 77ALL
When number of iteration cannot be pre-determined and when loop terminating condition is to be tested before entering the loop, at that time use of which loop is more suitable?
Afor
Bwhile
Cdo...while
Dswitch?
Correct Answer: Option B
MCQ 78ALL
Which of the following statement forces the next iteration of the loop to take place, skipping any code in between?
Abreak
Bstop
Cexit
Dcontinue
Correct Answer: Option D
MCQ 79ALL
Any loop in a program becomes which loop if it runs forever and program control never comes out of it?
Acontinue
Binfinite
Cbreak
Dfinite
Correct Answer: Option B
MCQ 80ALL
The index number contained within square brackets is also known as ________
Asubscript
Bsuperscript
Cvbscript
Djavascript
Correct Answer: Option A
MCQ 81ALL
C language allows array initialization in how many different ways?
A4
B5
C3
D2
Correct Answer: Option D
MCQ 82ALL
The variable is defined above function main is known as _______variable.
Alocal
Bglobal
Cstatic
Ddynamic
Correct Answer: Option B
MCQ 83ALL
Which of the following are types/categories of functions?
AFunction with no arguments and no return values
BFunction with arguments and no return values
CFunction with no arguments and return values
DAll of the above
Correct Answer: Option D
MCQ 84ALL
Which of the following is stands for SGML?
AStandardized General Markup Language
BStandard Generalized Markup Language
CStandardized General Marking Language
DStandard General Markup Language
Correct Answer: Option A
MCQ 85ALL
Most browsers display the contents of which elements larger than the default size of text in the document?
A<h1>
B<h2>
C<h3>
DAll of the above
Correct Answer: Option D
MCQ 86ALL
Which of the following tag is used for multiple lines?
A<hr>
B<br>
C<pre>
D<p>
Correct Answer: Option B
MCQ 87ALL
Which of the following tag is used to display text with multiple white spaces and multiple lines without wanting to be changed it by the browser?
A<p>
B<br>
C<pre>
DAll of the above
Correct Answer: Option C
MCQ 88ALL
The body section of an HTML is written between ________________tags
A<html> and </html>
B<head> and </head>
C<body> and </body>
D<body> and <body>
Correct Answer: Option C
MCQ 89ALL
Which of the following is valid image formats?
A.jpg
B.bmp
C.png
DAll of the above
Correct Answer: Option D
MCQ 90ALL
Which of the following method colours in computer are coded as degree from 00 to FF?
ADecimal
BOctal
CBinary
DHexadecimal
Correct Answer: Option D
MCQ 91ALL
Which of the following tag is used to separate content by breaking in into sections in HTML?
A<br>
B<hr>
C<p>
D<pre>
Correct Answer: Option B
MCQ 92ALL
Which of the following attribute is used to add space over and under the image?
Ahspace
Bvspace
CTop space
DBottom space
Correct Answer: Option A
MCQ 93ALL
To create multiple links within a single image, we need to create multiple clickable locations within the image. Clicking on each such location, a particular reference can be opened. Each such location is called a ............
AHot spot
BImage map
CDog spot
DMap
Correct Answer: Option A
MCQ 94ALL
Which of the following format is video format file?
A.avi
B.meg
C.mpeg
DAll of the above
Correct Answer: Option D
MCQ 95ALL
Which of the following tag pair is used to define sub-items of description tag?
A<dt> ... </dt>
B<dd> ... </dd>
C<dl> ... </dl>
D<ul>...</b>
Correct Answer: Option B
MCQ 96ALL
The value of type attribute in
tag is _____________
ACircle
BSquare
CDisc
DAll of the above
Correct Answer: Option D
MCQ 97ALL
Which of the following attribute leaves specified gap between edges of the cells and their content?
ACellpadding
BCellspacing
CDir
DSpacing
Correct Answer: Option A
MCQ 98ALL
Many times we need to add table within a table is called what?
AMultiple table
BMany table
CNesting table
DNested table
Correct Answer: Option D
MCQ 99ALL
What is the use of spreadsheet package?
AManaging financial and accounting documents
BCreating data reports
CGenerating invoices
DAll of the above
Correct Answer: Option D
MCQ 100ALL
The corner of the active cell is highlighted with filled small rectangle which is known as ___________
AFill handle
BAutofill handle
CDrag handle
DHandle
Correct Answer: Option B
MCQ 101ALL
The Calc program contains how many rows?
A65535
B1408576
C1048576
D1024
Correct Answer: Option C
MCQ 102ALL
Which of the following address does not change when the formula is copied or moved in Calc?
ARelative address
BAbsolute address
CMixed address
Dcell address
Correct Answer: Option B
MCQ 103ALL
In Calc, arrangement of data in particular order is known as ..........
ASorting
BArranging
CFiltering
DFormatting
Correct Answer: Option A
MCQ 104ALL
Which of the following is used to avoid errors in entering data in Calc?
AData Advance filter
BData Sorting
CData validation
DSpelling check
Correct Answer: Option C
MCQ 105ALL
Which of the following function returns the values of the exponential function ex for the given number x in Calc?
AABS
BEXP
CFACT
DEXT
Correct Answer: Option B
MCQ 106ALL
Which of the following sign is compulsory to start any formula in Calc?
A+
B-
C=
D$
Correct Answer: Option C
MCQ 107ALL
Which of the following function returns the total number of cells or arguments which have some value in it?
ACountA
BCountBlank
CCount
DAverage
Correct Answer: Option A
MCQ 108ALL
Chart wizard lets you to enter values of different chart elements such as..........
ATitle above
BX-axis captions
CLocation of legends
DAll of the
Correct Answer: Option D
MCQ 109ALL
Which of the following are elements of chart in Calc?
AChart area
BY axis with values
CData area axis
DAll of the above
Correct Answer: Option D
MCQ 110ALL
The three steps given for finding whether a number is odd or even is known as what?
APseudo code
BFlowchart
CAlgorithm
DDecision tree
Correct Answer: Option A
MCQ 111ALL
A logical decision of a process is represented by which shape and it is also called a test symbol?
ARectangle
BTriangle
CRound
DDiamond?
Correct Answer: Option D
MCQ 112ALL
Which of the following is an advantages of Flowchart?
AAs it provides pictorial representation of the problem solution, it is easy to understand.
BIt provides a convenient aid for writing computer instructions.
CIt assists the programmer in reviewing and correcting the solution steps.
DAll of the above
Correct Answer: Option D
MCQ 113ALL
Which of the following is known as inbuilt or library function?
Amain( )
Bprintf( )
Cprint( )
Dvoid( )
Correct Answer: Option B
MCQ 114ALL
Set of logically sequential C statements thus is identified as ............
Avariable
Bconstant
CC program
Didentifier
Correct Answer: Option C
MCQ 115ALL
A word that a user can construct by making use of C character set is known as "?"?"?.
Avariable
Bconstant
CC program
Didentifier
Correct Answer: Option D
MCQ 116ALL
Which of the following compiler is provided by free software foundation?
Agec
Bgcc
CSciTE
Dc compiler
Correct Answer: Option B
MCQ 117ALL
Which of the following allows us to compile and run simple programs with one window itself?
Agedit
Bgcc
CSciTE
DC compiler
Correct Answer: Option D
MCQ 118ALL
Which of the following is a special data type that C provides and identified by which keyword, this data type has no value and it denote it to be empty?
Amain
Bvoid
Cprintf
Dreturn
Correct Answer: Option B
MCQ 119ALL
Character data requires how many byte of memory space?
A1
B2
C4
D8
Correct Answer: Option A
MCQ 120ALL
Which of the following is a symbol that identifies the operation that can be performed on operands?
AExpression
BOperators
CArray
DConstant
Correct Answer: Option B
MCQ 121ALL
Which of the following function is useful when we don't want to show a character typed by the user on screen?
Agetch( )
Bgets( )
Cgetchar( )
Dgetc( )
Correct Answer: Option A
MCQ 122ALL
C language scanf() function provides wonderful facility of which character using which we can specify the permissible characters in the input string?
A$
B#
C%
D*
Correct Answer: Option C
MCQ 123ALL
Which of the following function is used to display formatted output on screen?
Ascanf( )
Bprintf( )
Cmain()
Dgets()
Correct Answer: Option B
MCQ 124ALL
There are situations where we need to execute series of decisions in our program, we may use ............ statement in nested form to achieve our task.
Aif...else
Belse....if
Cswitch
Ddo...while
Correct Answer: Option A
MCQ 125ALL
In C, logical operators are represented by which character pairs?
A&& and \\
B&& and ||
C|| and \\
D$$ and //
Correct Answer: Option B
MCQ 126ALL
In switch statement, each case option contains ........
Aconstant or constructor
Bconstant or condition
Cconstant or constant expressions
Doperator or constant expression
Correct Answer: Option C
MCQ 127ALL
...........for loop means using one for loop within another for loop.
Anesting
Bmulti
Cnested
Dsimple?
Correct Answer: Option C
MCQ 128ALL
We are checking condition at the entry point, it is known as which loop?
Aentry-controlled controlled
Bexit-controlled
Cswitch-controlled
Dcondition-controlled
Correct Answer: Option A
MCQ 129ALL
Which of the following statement is used when we want to terminate loop instantly without even execution of other statements of loop?
Abreak
Bcontinue
Cstop
Dcase
Correct Answer: Option A
MCQ 130ALL
The array in C language can be classified in to how many categories?
A2
B3
C4
D5
Correct Answer: Option A
MCQ 131ALL
If we don't specify the size, compiler will automatically calculate the size by counting total number of values written inside which bracket?
A( )
B{ }
C[ ]
D< >
Correct Answer: Option B
MCQ 132ALL
Which of the following function are placed in header file?
Asqrt( )
Bpow( )
Ccos( )
DAll of the above
Correct Answer: Option D
MCQ 133ALL
Which of the following are the advantages of using functions in program?
ADividing program into functions makes understanding and maintenance of the program easier.
BFunction help us to avoid redundant programming of similar tasks.
CSame function can be used with different values of arguments.
DAll of the above
Correct Answer: Option D
MCQ 134ALL
Which of the following is considered as a language for describing web page?
AHTML
BSGML
CBCPL
DNone of these
Correct Answer: Option A
MCQ 135ALL
The path to open Gedit editor is ______________________________
AAccessories->Application->Gedit
BApplication->Accessories->Gedit
CApplications->Gnome->Gedit
DGnome->Application->Gnone
Correct Answer: Option B
MCQ 136ALL
In HTML, which sign is used for comment?
A< - - and - ->
B<!- - and - ->
C<!- - and - -!>
D</- - and - -/>
Correct Answer: Option B
MCQ 137ALL
Comments are also referred as what?
ADot
BClass
CPrologue
DCommon
Correct Answer: Option C
MCQ 138ALL
The output of an HTML coding 23rd will be ____________
A23rd
B23rd
C23rd
DNone of these
Correct Answer: Option B
MCQ 139ALL
Which of the following is used to set a visited link in HTML code?
Aalink
Bblink
Culink
Dvlink
Correct Answer: Option D
MCQ 140ALL
Which attribute of tag specifies identifier/name for the image?
AName
Balias
Cid
Dproperty
Correct Answer: Option C
MCQ 141ALL
Which of the following tag is used to add an image map?
AImg
Bmap
Cimap
Dimgmap
Correct Answer: Option B
MCQ 142ALL
Which of the following is a valid image file format?
APGN
BPNG
CPJN
DPNJ
Correct Answer: Option B
MCQ 143ALL
Which attribute of tag is used to provide information about the location of the image?
AAlt
Balign
Cborder
Dsrc
Correct Answer: Option D
MCQ 144ALL
Which of the following formats use lossless compression technology?
ATiff
Bgif
Cpng
DAll of these
Correct Answer: Option A
MCQ 145ALL
Which of the following tag pairs are used to create an ordered list?
A<ol>....</ol>
B<ul>...</ul>
C<dl>...</dl>
DBoth A and B
Correct Answer: Option A
MCQ 146ALL
Which of the following is specified by
in HTML?
AOrdered list
BUnordered list
CDescription list
DAll of these
Correct Answer: Option C
MCQ 147ALL
A ________________ contains information separated in form of grids.
AChart
BColumn
CTable
DBook
Correct Answer: Option C
MCQ 148ALL
A table contains information separated in form of ___________________
ARows
BColumns
CGrid
DBoth a & b
Correct Answer: Option D
MCQ 149ALL
What is the intersection of row and column known as?
ARow
BColumn
CWorksheet
Dcell
Correct Answer: Option C
MCQ 150ALL
Which attribute of table is used to leave specified gap between edges of the cells and their content?
ACellspacing
BCellpadding
CColspan
DRowspan
Correct Answer: Option B
MCQ 151ALL
_______________________ attribute manages space between each cell of a table.
ACell spacing
BCell padding
CCell-fixation
DCell- validation?
Correct Answer: Option A
MCQ 152ALL
Which of the following is used when a cell spans across more than column?
Acolspan
Browspan
Ctablespan
Dscope
Correct Answer: Option A
MCQ 153ALL
Which of the following tag is used to give name to the table?
A<name>
B<caption>
C<type>
D<declare>
Correct Answer: Option B
MCQ 154ALL
_____________toolbar contains most frequently used standard commands from the File & Edit menus.
AStandard Toolbar
BFormatting Toolbar
CFormula Toolbar
DNone of these
Correct Answer: Option A
MCQ 155ALL
Which of the following will be inserted in a worksheet if =starcalcteam() is inserted in a calc cell?
AStars
BPhotograph of calc developer team
CCalc licence information
DCalc version information
Correct Answer: Option B
MCQ 156ALL
There are maximum ____ worksheets per Calc spreadsheet document
A1024
B256
C1048576
D65536
Correct Answer: Option B
MCQ 157ALL
There are _______________ rows in Calc spreadsheet document
A1024
B256
C1048576
D65536
Correct Answer: Option C
MCQ 158ALL
There are _______________ columns in Calc spreadsheet document
A1024
B256
C1048576
D65536
Correct Answer: Option A
MCQ 159ALL
Which key is used to select the cells that are not physically adjacent to each others?
ACtrl
BAlt
CShift
DTab
Correct Answer: Option A
MCQ 160ALL
Which menu is used to arrange the data in ascending or descending order?
ATools
BFormat
CData
DSort
Correct Answer: Option C
MCQ 161ALL
Which function key is used to get help in Calc?
AF1
BF5
CF7
DF9
Correct Answer: Option A
MCQ 162ALL
Which function key is used for spell check?
AF1
BF5
CF7
DF9
Correct Answer: Option C
MCQ 163ALL
In Calc, the function arguments are given in which brackets?
A[]
B<>
C{}
D()
Correct Answer: Option D
MCQ 164ALL
A/an __________________ is a core part of any solution of a procedure.
AProcess
BPsuedo
CAlgorithm
DSymbol
Correct Answer: Option A
MCQ 165ALL
Which of the following symbol represents a process?
ASquare
BRectangle
CSquare
DDiamond
Correct Answer: Option B
MCQ 166ALL
_______________________ instructs the translator to replace all occurrences of symbolic constants with the values specified against it.
AString constant
BSymbolic constant
CInteger constant
DSingle character constant
Correct Answer: Option B
MCQ 167ALL
A ______________ is made up of one or more statements used for performing a predefined task.
AVariable
Bkeyword
Cfunction
Dtoken
Correct Answer: Option C
MCQ 168ALL
C statements end with a ____________
AColon
Bsemi colon
Cfull stop
Dcomma
Correct Answer: Option B
MCQ 169ALL
A program called ___________is then used to link the object code with the library functions giving executable program or executable code.
AEditor
Btranslator
Clinker
Dloader?
Correct Answer: Option C
MCQ 170ALL
For signed integer the value of range is calculated as ______________
A-2 n-1 to 2n-1 -1
B0 to 2n-1
C-2 n+1 to 2n+1 -1
D0 to 2n+1
Correct Answer: Option A
MCQ 171ALL
Each character is associated with an integer value called ___________________
AUnicode
BASCII
Cboth A and B
DNone of these
Correct Answer: Option B
MCQ 172ALL
The ____________ storage class when used along with variable makes the variable value permanent within a specified region.
AAutomatic
Bexternal
Cregister
Dstatic
Correct Answer: Option D
MCQ 173ALL
The symbol << belong to which of the following operator types in C?
ARelational
Barithmetic
Clogical
Dbitwise
Correct Answer: Option D
MCQ 174ALL
The statements are controlling the flow of execution, they are known as ____________________ statements
ASequence
Bcontrol
Cboth A and B
Dnone of these
Correct Answer: Option B
MCQ 175ALL
C programming language assumes any non-zero and non-null values as _________
ATRUE
BFALSE
CZero
DOne
Correct Answer: Option A
MCQ 176ALL
what will be the output of printf("?%16.7s"?,"?Gujarat India"?)?
AGujarat India
BGujarat
CIndia
DNone of these
Correct Answer: Option B
MCQ 177ALL
What is delimiter for reading double?
A%ld
B%/Ld
C%lf
D%Lf
Correct Answer: Option D
MCQ 178ALL
How many bits are required by exponent and mantissa respectively?
A6,25
B7,24
C8,23
D9,22
Correct Answer: Option C
MCQ 179ALL
Which operator is used to get a remainder when performing division of two integer operands?
AModules
Bmodular
Cmodulo
Dmode
Correct Answer: Option C
MCQ 180ALL
5/10 and 5.0/10 respectively would result into what?
A0,0
B0, 0.5
C0.5, 0
D0.5, 0.5
Correct Answer: Option B
MCQ 181ALL
Which one is the assignment operator and comparison operator respectively?
A=,≠
B=, ==
C=, ++
D=, - -
Correct Answer: Option B
MCQ 182ALL
Which of the following are decision structure statements?
AIf, switch
Bif, else
Cif, case
Dif, else..if
Correct Answer: Option A
MCQ 183ALL
Test expression of if statement is always written in which brackets?
A[ ]
B( )
C{ }
D< >
Correct Answer: Option B
MCQ 184ALL
The _________________ is collection of multiple computer networks, hence known as network of networks.
Aextranet
Bintranet
Cinternet
DNone of these
Correct Answer: Option C
MCQ 185ALL
The ________ is a repository of multimedia information on the internet platform
Atext
Blink
Cweb
DNone of these
Correct Answer: Option C
MCQ 186ALL
HTML is derived form of ______________________
ABCPL
BSGML
CIDE
DNone of these
Correct Answer: Option B
MCQ 187ALL
Full form of ISO
AInternational Standard Organization
BInternational System Organization
CInternational Organization for Standards
DInternational Organization System
Correct Answer: Option C
MCQ 188ALL
A ___________________ is made up of letters, words and numbers enclosed between a left and right angular bracket.
Atag
Belement
Ctitle
Dbody
Correct Answer: Option A
MCQ 189ALL
HTML tag is enclosed within ________________
A{ and }
B( and )
C< and >
D[ and ]
Correct Answer: Option C
MCQ 190ALL
A combination of opening and closing tag along with some content between the two tags forms a/an ______________________
Atag
Belement
Ctitle
Dbody
Correct Answer: Option B
MCQ 191ALL
______________ is the highest heading size and ________ is the smallest heading size
AH6, H1
BH1, H6
CH1, H2
DH5, H6
Correct Answer: Option B
MCQ 192ALL
_____________ tags are used to store information usually relevant to browsers & search engines.
Atitle
Bmeta
Chead
Dbody
Correct Answer: Option B
MCQ 193ALL
The output of an HTML coding H2O will be ____________
AH2O
BH2O
CH2O
DNone of these
Correct Answer: Option B
MCQ 194ALL
The complete address is known as a/an ____________________________ address.
Arelative
Babsolute
Cboth a & b
DNone of these
Correct Answer: Option B
MCQ 195ALL
An attribute is made of how many parts?
A2
B3
C4
D5
Correct Answer: Option A
MCQ 196ALL
The name and the value should be a/an _____________ sign
ANon-equal
Bequal
C' '(Single Quote)
D" " (Double Quote)
Correct Answer: Option B
MCQ 197ALL
Which is an editor used to create/edit an HTML document?
Agedit
BSciTE
CBoth A and B
DNone of these
Correct Answer: Option C
MCQ 198ALL
Which of the following is used to set an active link in HTML code?
Aalink
Bblink
Culink
Dvlink
Correct Answer: Option A
MCQ 199ALL
In __________ style tags, the browser will follow the instructions strictly and publishes the content in the said manner.
APhysical
Blogical
CBoth a and b
DNone of these
Correct Answer: Option A
MCQ 200ALL
Mnemonic code of "?registered"? trademark ______________
Aerg
Breg
Camp
Dgt
Correct Answer: Option B
MCQ 201ALL
Full form of JPEG ____________________________________________
AJoin Picture Export Group
BJoin Picture Expert Group
CJoint Photographic Expert Group
DJoint Picture Expert Group
Correct Answer: Option C
MCQ 202ALL
________________ format images offer highest quality and good amount of compression of the image with minimum loss.
Ajpg
Bpng
Cgif
Dtiff
Correct Answer: Option D
MCQ 203ALL
Which of the following image format is slower in reading and writing?
Ajpg
Bpng
Cgif
Dtiff
Correct Answer: Option B
MCQ 204ALL
A video and audio file can be integrated into a HTML document with a/an _______ tag.
Aimg
Bmap
Calt
Danchor
Correct Answer: Option D
MCQ 205ALL
In calc document, you can move between the worksheets using ______________ tab.
AWorksheet
BSpreadsheet
CSheet
DPage
Correct Answer: Option C
MCQ 206ALL
__________ text files are typically used for data exchange among various programmes.
APdf
Bcsv
Cxlsx
Ddbs
Correct Answer: Option B
MCQ 207ALL
If you want to change the unit of height and width in calc then which path is correct?
ATools->General->Options
BOptions->General->Tools
CGeneral->Tool->Options
DTools->Options->General
Correct Answer: Option D
MCQ 208ALL
________ function is used to convert a date into a valid format into a day of the month.
AWeekday
BMonthday
CDaysinyear
DDay
Correct Answer: Option D
MCQ 209ALL
In calc, what is the output of =MID("?Nuzhat Memon"?;8;5)?
ANuzhat Memon
BNuzhat
CMemon
DNone of these
Correct Answer: Option C
MCQ 210ALL
What can be a function argument?
AValue
BText
Cother function
DAll of these
Correct Answer: Option D
MCQ 211ALL
If you write address as =A$4 and try to copy it to different location, then what would happen?
AColumn A will become absolute
BRow 4 will become absolute
CColumn A & Row will become absolute
DNone of these
Correct Answer: Option B
MCQ 212ALL
If we move a cell containing a formula having reference to another cell in the worksheet. What will happen to cell numbers used in formula?
AThe cell row & column are changed at destination
BThe cell row number are changed at destination
CThe cell column number are changed at destination
DNothing will change
Correct Answer: Option A
MCQ 213ALL
What is the vertical plane which provides base to the chart element known as?
AChart floor
BChart area
CChart wall
DChart element
Correct Answer: Option C
MCQ 214ALL
The chart type is selected in ________ step
AFirst
BSecond
CThird
DFourth
Correct Answer: Option A
MCQ 215ALL
The data range is decided in __________ step
AFirst
BSecond
CThird
DFourth
Correct Answer: Option B
MCQ 216ALL
____________________ can be a mental or machine (any systemic procedure) process that leads to the desired outcome required by the user.
AFlowchart
BAlgorithm
CPseudo code
DProblem solving
Correct Answer: Option D
MCQ 217ALL
Which of the following is the standard terminal symbol for flowchart?
ACircle
BDiamond
CRounded Rectangle
DSquare
Correct Answer: Option C
MCQ 218ALL
An entity in C that is capable of storing different values is known as ___________
AVariable
Bkeyword
Cfunction
Dtoken
Correct Answer: Option A
MCQ 219ALL
The extension of header file is ________________
AC
Bh
Cs
Dt
Correct Answer: Option B
MCQ 220ALL
_____________ data type allows user to create new entities from existing one.
ATypedef
BEnumerated
CBoth A and B
DNone of these
Correct Answer: Option A
MCQ 221ALL
________________ is used to given an alias to an existing data type.
ATypedef
BEnumerated
CBoth A and B
DNone of these
Correct Answer: Option B
MCQ 222ALL
The _______________operator is a special operator used to return size of bytes required to store an entity.
AComma
Bassignment
Csizeof
Dbitwise
Correct Answer: Option C
MCQ 223ALL
The increment and decrement operator have _____________ associativity.
ALeft to right
Bright to left
CBoth A and B
DNone of these
Correct Answer: Option B
MCQ 224ALL
______________ read a character from a file instead of standard input device.
Agetchar()
Bgetch()
Cgetc()
Dgets()
Correct Answer: Option C
MCQ 225ALL
When chain of if statements are used in else block of nested if statements, it becomes _________ ladder statement.
AIf
Belse
Celse if
DNone of these
Correct Answer: Option C
MCQ 226ALL
C language has offered the built in facility of multiway decision statement called ____
AIf statement
Bswitch
Cnested if
Dnested else
Correct Answer: Option B
MCQ 227ALL
Which symbol is used to check non equality between two operands in c language?
A≠
B<>
C!=
D#NAME?
Correct Answer: Option C
MCQ 228ALL
What is delimiter of int, unsigned int, long int?
A%d, %u, %ld
B%d, %u, %lf
C%d, %ud, %ld
D%d, %ud, %lf
Correct Answer: Option A
MCQ 229ALL
Double values precise upto how many decimal places?
A5,6
B6,7
C16,17
D17,18
Correct Answer: Option C
MCQ 230ALL
Which file contains various input and output operations related functions?
Astdio.h
Bconio.h
Cio.h
Dstd.h
Correct Answer: Option A
MCQ 231ALL
In C language, strings are enclosed within which symbols?
A'? and '?
B" and "
C< and >
D/ and /
Correct Answer: Option B
MCQ 232ALL
Which statement in switch structure can be used only once?
ACase
Bdefault
Cbreak
DAll of these
Correct Answer: Option B
MCQ 233ALL
C language provides which of the following basic loop control structures?
AFor, while, do...while
Bfor, if, else if
Cdo, while, do while
Dif, else..if, else if ladder
Correct Answer: Option A
MCQ 234ALL
Who prepared Standardized General Markup Language (SGML)?
AMicrosoft
BASCII
CISO
DANSI
Correct Answer: Option C
MCQ 235ALL
_________________ is a collection of electronically created web pages
AWeb page
BWebsite
CWeb server
DWeb browser
Correct Answer: Option B
MCQ 236ALL
Which is the middle part of the constitution of a tag?
AOpening tag
BClosing tag
CContent
DAny of these
Correct Answer: Option C
MCQ 237ALL
Which of the following tag is used for heading?
Ah1
Bhead
Cpre
Dtt
Correct Answer: Option A
MCQ 238ALL
Addition of appropriate _________ tags describes nature of web page precisely.
AHead tag
BBody tag
CMeta tag
DTitle tag
Correct Answer: Option C
MCQ 239ALL
By which tag is hyperlink made?
A<h>
B<hlink>
C<link>
D<a>
Correct Answer: Option D
MCQ 240ALL
Which of the following refers to a singular tags that do not require content?
ACompete
BEmpty
CNull
DVoid
Correct Answer: Option B
MCQ 241ALL
Which shortcut key is used to view result in browser HTML code?
AF3
BF4
CF5
DF6
Correct Answer: Option C
MCQ 242ALL
Which of the following about a webpage is described when a meta-tag is used in HTML page?
AAuthor, purpose and keyword
BLayout
CStyle
DSize
Correct Answer: Option A
MCQ 243ALL
What is the full form of tag?
AStrong
BStable
CStraight
DStrike
Correct Answer: Option D
MCQ 244ALL
Which tag is used to define a special term?
A<code> &</code>
B<cite>&</cite>
C<quote> & </quote>
D<dfn>&</dfn>
Correct Answer: Option D
MCQ 245ALL
In relative address what is called file also known as __________________ file.
AParent
BReference
Ccalling
Dcalled
Correct Answer: Option A
MCQ 246ALL
Which tag defines relationship between a document and an external resource?
AScript
BLink
CStyle
DNone of these
Correct Answer: Option B
MCQ 247ALL
Which of the following value in decimal is equivalent to FF?
A0
B255
C256
D0 to 255
Correct Answer: Option B
MCQ 248ALL
Which of the following is used to create hyperlinks in a HTML document?
A<a>....<a/>
B<a link = "link"?>
C<a src ="link.html"?>
D<a href ="ink.html"?>
Correct Answer: Option D
MCQ 249ALL
Which of the following tag is used to display paragraph's content in centre?
A<p align = "center"?>
B<p align = "middle"?>
C<p align = "centre">
DNone of these
Correct Answer: Option A
MCQ 250ALL
Which of the following is not an empty tag?
A<img>
B<a >
C<hr>
D<br>
Correct Answer: Option B
MCQ 251ALL
Which of the following is an example of relative address?
A< a href- "file.html">
B< a href = "image.jpg">
C< a href : "file/image.jpg"?>
DEither a or b
Correct Answer: Option B
MCQ 252ALL
Italics text can be written in html with the tag(s)?
A<i>
B<em>
C<code>
DBoth a and b
Correct Answer: Option A
MCQ 253ALL
Which of the following is not a meta tag?
ADescription
BTitle
CKeywords
DAuthor
Correct Answer: Option B
MCQ 254ALL
Which function returns the value of the factorial function for the given number?
AFac()
Bfat()
Cfact()
Dfactorial()
Correct Answer: Option C
MCQ 255ALL
Which sign is used to join two or more than two strings?
A+
B&
C#
D*
Correct Answer: Option B
MCQ 256ALL
Which option is used to keep row/column header visible?
AFile ->Freeze
BView-> Freeze
CInsert ->Freeze
DWindow -> Freeze
Correct Answer: Option D
MCQ 257ALL
Which sign is used to create absolute cell address?
A#
B%
C$
D&
Correct Answer: Option C
MCQ 258ALL
Which function is useful when we want only positive number?
AABS
BPositive
CInteger
DNone of these
Correct Answer: Option A
MCQ 259ALL
Which of the following function is used to remove extra spaces from strings?
ACountA
BValue
CTRIM
DNOSPACE
Correct Answer: Option C
MCQ 260ALL
__________ is also considered as graphical representation of numerical data.
ATable
BHyperlink
CSmartart
DChart
Correct Answer: Option D
MCQ 261ALL
Which of the following is used to insert a chart in Calc?
AInsert->Chart
BView->Chart
CPrint->Chart
DDesign->Chart
Correct Answer: Option A
MCQ 262ALL
What is the horizontal plane which provides base to the chart element known as?
AChart floor
BChart area
CChart wall
DChart element
Correct Answer: Option A
MCQ 263ALL
_______ problems have clear goals and hence we can clearly define solution steps.
AWell defined
Bill defined
CBoth A and B
DNone of these
Correct Answer: Option A
MCQ 264ALL
A word in C is known as a ________ of C.
ALetter
Bkeyword
Cfunction
Dtoken
Correct Answer: Option D
MCQ 265ALL
ANSI C standard supports __________________ predefined words.
A31
B32
C33
D34
Correct Answer: Option B
MCQ 266ALL
The man who owns the credit of creating C language is ____________________
ABram Moolenar
BCharles Babbage
CDennis M Richie
DNone of these
Correct Answer: Option C
MCQ 267ALL
C language allows our program to be broken into small pieces known as _____________
ALetter
Bkeyword
Cfunction
Dtoken
Correct Answer: Option C
MCQ 268ALL
______________ operator is identified by combination of two symbols? :
Aassignment
Brelational
Cbitwise
Dternary
Correct Answer: Option D
MCQ 269ALL
The _________________ operators allow us to compare two similar types of operands and generally are used to change the flow of execution of program.
Aassignment
Brelational
Cbitwise
Dternary
Correct Answer: Option B
MCQ 270ALL
_____________________ specifies the order in which variable values appear in the input.
AControl character
BControl letter
CControl string
DControl alphabet
Correct Answer: Option C
MCQ 271ALL
__________________ function is used to display multiple characters on an output device.
Agetchar ()
Bputchar()
Cgets()
Dputs()
Correct Answer: Option B
MCQ 272ALL
What is the sizeof(longdouble)?
A4
B8
C16
D32
Correct Answer: Option C
MCQ 273ALL
Which class variables are assigned garbage value by default?
AExtern
Bregister
Cstatic
DNone of these
Correct Answer: Option B
MCQ 274ALL
Which function is used to read a character from a file?
Agetchar()
Bgetch()
Cgets()
Dgetc()
Correct Answer: Option D
MCQ 275ALL
The process of inputting the value is immediately terminated when any of the character from the list is encountered, what specification in the scanf()?
A%[characters]
B%[^characters]
C%[*characters]
D%[%characters]
Correct Answer: Option B
MCQ 276ALL
Which of the following is entry controlled loop?
AFor
Bwhile
Cdo"?hile
DBoth A and B
Correct Answer: Option D
MCQ 277ALL
Which key is used to terminate infinite loop?
ACtrl+c
BAlt+c
Cshift+c
Dctrl+alt+c
Correct Answer: Option A
MCQ 278ALL
The constant is known as ____________________
ALabel
Bcase
Ccase label
Dlabel case
Correct Answer: Option C
MCQ 279ALL
By default the main() function returns ________________
AChar value
BFloat value
CInteger value
DDouble value
Correct Answer: Option C
MCQ 280ALL
The _______________________ is one or more relational tests joined together by either the logical AND operators or logical OR operators.
ARelation Test
BCompound Relation
CCompound Relation Test
DCompound test Relation
Correct Answer: Option C
MCQ 281ALL
Who was the one to give notation of www ?
Astephen Berner
BJohn Lee
CTim Berners Lee
DStephen Lee
Correct Answer: Option C
MCQ 282ALL
The ______________ appears as a label of the window displaying the text and also holds a place in a browsers history or bookmark list.
AHead
Bbody
Chtml
Dtitle
Correct Answer: Option D
MCQ 283ALL
What is placed after closing tag in HTML ?
AStraight slash ( \ )
BReverse slash ( / )
CStraight line ( | )
DExclamation mark ( ! )
Correct Answer: Option B
MCQ 284ALL
What is the extension to store HTML file ?
A.htm
B.html
C.htm or .html
D.hml
Correct Answer: Option C
MCQ 285ALL
How many types of heading are there in HTML ?
A4
B5
C6
D7
Correct Answer: Option C
MCQ 286ALL
Generally, In HTML document on which side of the page is writing placed ?
ALeft
BRight
CCenter
DAny of these
Correct Answer: Option A
MCQ 287ALL
Which of the following attributes type can appear along with any tag ?
AUnique
BUniversal
CTrivial
DPreliminary
Correct Answer: Option B
MCQ 288ALL
Which name identifies the latest version of HTML ?
AHTML 3.0
BHTML 4.0
CHTML 5.0
DHTML 6.0
Correct Answer: Option C
MCQ 289ALL
What type of space is added between
and ?
AHard space
BSoft space
CBlank space
DDefault space
Correct Answer: Option A
MCQ 290ALL
Spaces inserted automatically are known as _________________
AHard space
BSoft space
CBlank Space
DWhite space
Correct Answer: Option B
MCQ 291ALL
Full form of href________________________
Ahyperpoint reallocate
Bhyperimage resource
Chypertext reference
Dhyperlink rapid
Correct Answer: Option C
MCQ 292ALL
Scite is based on free source code editing component called __________________
AMicrosoft
BGNOME
CApple IOS
DScintilla
Correct Answer: Option D
MCQ 293ALL
Addition of appropriate ________________ tags describes nature of web page precisely.
AHead tag
BBody tag
CMeta tag
DTitle tag
Correct Answer: Option C
MCQ 294ALL
The _______________________ tag specifies base URL for all relative URLs in a page.
A<a>
B<base>
C<link>
D<url>
Correct Answer: Option B
MCQ 295ALL
Which colour is specified by the code "?#FF00FF"? ?
ABlue
BWhite
CPink
DYellow
Correct Answer: Option C
MCQ 296ALL
The text displayed with is a ________________________ font
AMono-Spaced font
BTele tag Font
CEmphasized font
DFixed-width Font?
Correct Answer: Option D
MCQ 297ALL
Typewrite type of font is also identifies as _______________________ Font
ASingle Dimensional Font
BMulti Dimensional Font
CMono-spaced Font
DEmphasized Font
Correct Answer: Option C
MCQ 298ALL
Which of the following are the two broad classes of formatting characters in HTML?
AHead & body
BPhysical & logical
CInternal & External
DTemporary & Permanent
Correct Answer: Option B
MCQ 299ALL
The content of the _____________ element is similar to the default content size.
AH2
BH3
CH4
DH5
Correct Answer: Option C
MCQ 300ALL
Which of the following icon is used to enter 3D text?
AFontwork gallery icon
BArtwork gallery icon
CDrawingwork gallery icon
DGraphwork gallery icon
Correct Answer: Option A
MCQ 301ALL
__________________ shortcut key is used to open function wizard.
ACtrl + F1
BCtrl + F2
CShift + F1
DShift + F2
Correct Answer: Option B
MCQ 302ALL
In calc, how many steps are available in chart wizard dialog box?
A2
B3
C4
D5
Correct Answer: Option C
MCQ 303ALL
Which of the following is a reference to data that can be followed by selecting it?
AChart link
Bjoint link
Cmap link
Dhyper link
Correct Answer: Option D
MCQ 304ALL
Which date and time function in CALC used to find out whether the given year is leap year or not?
ADATE
BTIMESTAMP
CYEARS
DDAYSINYEAR
Correct Answer: Option D
MCQ 305ALL
Calc offer a choice of _______ basic chart types.
A8
B10
C12
D14
Correct Answer: Option B
MCQ 306ALL
______________ step lets you to enter values of different chart elements such as title, subtitle, x-axis captions, location of legends and options to display the grid.
AFirst
BSecond
CThird
DFourth
Correct Answer: Option D
MCQ 307ALL
The chart element such as title of the chart, sub-title of the chart and information about axis and legend are provide through _____________ phase of the chart wizard.
AFirst
BSecond
CThird
DFourth
Correct Answer: Option D
MCQ 308ALL
How many arguments once can use in Calc function?
Aone
Btwo
Cthree
Ddepends on the function
Correct Answer: Option D
MCQ 309ALL
ROUND (-23.786786, 3) will result into ____________________
A-23
B-23.786
C23.787
D-23.787
Correct Answer: Option D
MCQ 310ALL
The predefined words in c language are known as __________________
ALetter
Bkeyword
Cfunction
Dtoken
Correct Answer: Option B
MCQ 311ALL
The maximum length of variable name as per ANSI standards is ________ characters.
A31
B32
C33
D34
Correct Answer: Option A
MCQ 312ALL
The keywords associate a data with its type are known as ________________
AData type
Boperator
CExpression
DNone of these
Correct Answer: Option A
MCQ 313ALL
The symbol "?&"? belong to which of the following operator types in C language?
AAssignment
BBitwise
CRelational
DLogical
Correct Answer: Option B
MCQ 314ALL
Which operator is used to get remainder when performing division of two integer operands?
A=
B*
C^
D%
Correct Answer: Option D
MCQ 315ALL
In ANSI C the data type int uses ____________bytes of memory space.
A1
B2
C4
D8
Correct Answer: Option C
MCQ 316ALL
How may bytes of memory space value used by double data type in C language?
A4
B8
C16
D24
Correct Answer: Option B
MCQ 317ALL
Which of the following refers to an empty value?
AVoid
Bvoid
Cnull
DNull
Correct Answer: Option B
MCQ 318ALL
To override the internal conversion by performing a process called __________
AType demotion
BType promotion
CType casting
DAll of these
Correct Answer: Option C
MCQ 319ALL
All the variables by default have storage class as ___________
AAutomatic
Bexternal
Cregister
Dstatic
Correct Answer: Option A
MCQ 320ALL
___________ character is use for printing a double
A%d
B%ld
C%lf
D%Lf
Correct Answer: Option C
MCQ 321ALL
What is the output of statement: printf("?%-18.8s"?,"?I Like C Language"?)?
AI Like C Language
BI Like C
CI Like
Dlanguage
Correct Answer: Option B
MCQ 322ALL
Which format specifier to print() is used to print character?
A%s
B%c
C%d
D%f
Correct Answer: Option B
MCQ 323ALL
Which of the following function is more appropriate for accepting a string?
Agetc()
Bgets()
Cgetchar()
Dgetstr()
Correct Answer: Option B
MCQ 324ALL
The function is known as what?
AProcedure
Bmethod
Csub-routine
DAll of these
Correct Answer: Option D
MCQ 325ALL
Which header file contains mathematical function log() in c language?
Astdio.h
Bconio.h
Cmath.h
Dlog.h
Correct Answer: Option C
MCQ 326ALL
Which one is an example of character?
A"N"
BN
C"2"
D'2'
Correct Answer: Option B
MCQ 327ALL
Which loop executes atleast one time?
AFor
BWhile
CDo..While
DNone of these
Correct Answer: Option C
MCQ 328ALL
Strings in C language are terminated by the special character called ______
Auniversal
Bglobal
Cempty
Dnull
Correct Answer: Option D
MCQ 329ALL
Which of the following is a collection of electronically created web pages?
AWeb page
Bweb site
Cweb server
Dweb browser
Correct Answer: Option B
MCQ 330ALL
In HTML 'a' stands for ?
AAttributes
BAnchor
CAlign
DNone of these
Correct Answer: Option B
MCQ 331ALL
Which of the following is used to divide browser window into multiple parts?
Aframeset
Belements
Clayout
Ddesign
Correct Answer: Option A
MCQ 332ALL
Which of the following is provided when we use alt attribute of an image ?
AAlternative description
BAlt key definition
CAlternative image
DAlternative HTML link
Correct Answer: Option A
MCQ 333ALL
Which tag is used to set specific font and size ?
A<font>
B<body text="">
C<basefont>
DAny of them
Correct Answer: Option A
MCQ 334ALL
Which of the following attributes is not associated with
Afont, bgcolor, alink, bgproperties, background
Btext, bgcolor, vlink, bgproperties, background
Ctext, bgcolor, alink, bgproperties, background
DNone, all are attributes of <body>
Correct Answer: Option A
MCQ 335ALL
There should be a/an _____ sign between the name and the value of the attribute.
AComma (,)
BEqual (=)
CSingle quotation?
DDouble quotation
Correct Answer: Option B
MCQ 336ALL
_________ used to refer file located one directory above.
A< and >
B( and )
C../
DNone of these
Correct Answer: Option C
MCQ 337ALL
Which of the following tag is not used for formatting characters ?
A<b>
B<tt>
C<hr>
D<sub>
Correct Answer: Option C
MCQ 338ALL
Which of the following attributes specify the values of height & width of the image in pixels?
Aimg src
Bheight & width
CH and V
DAny of the above
Correct Answer: Option B
MCQ 339ALL
In HTML, which of the following is default text color & background color respectively?
ABlack, white
Bwhite, black
Cblue, white
Dwhite, blue
Correct Answer: Option A
MCQ 340ALL
Which of the following is used when a cell spans across more than row?
Acolspan
Browspan
Ctablespan
Dscope
Correct Answer: Option B
MCQ 341ALL
Which of the following concept is used to display whole image as a link?
Aimage as hot spot
BHot text
Cactive link
DNone of these
Correct Answer: Option A
MCQ 342ALL
Which of the following is not a valid image format?
Aimv
Bpng
Cbmp
Dgif
Correct Answer: Option A
MCQ 343ALL
Which shortcut key is used to view result in browser HTML code ?
AF3
BF4
CF5
DF6
Correct Answer: Option C
MCQ 344ALL
On web pages, links are placed pointing towards different locations is known as _____________
Ahyperjump
Bhyperimage
Chyperpoint
Dhyperlink
Correct Answer: Option D
MCQ 345ALL
Doing _________________ value of align attribute content is aligned horizontally around the first instance of specific character
AJustify
BCenter
CChar
Dright
Correct Answer: Option C
MCQ 346ALL
Default shape of the bullet in
is _________________
ADisc
BFilled circle
CSquare
DCircle
Correct Answer: Option A
MCQ 347ALL
Which of the following applications are not suitable for Calc?
ABalance sheet preparation
BResult analysis
CPresenting an idea about a product
DAll of these
Correct Answer: Option C
MCQ 348ALL
The chart in Calc may have how many of the following axis?
ATwo
BThree
CTwo or three
DFour
Correct Answer: Option C
MCQ 349ALL
To which of the entity can a Calc chart be linked?
ATo an existing document
BTo a new document
CWeb page
DAll of these
Correct Answer: Option D
MCQ 350ALL
Page preview will also allow you to do which of the following setting?
ABorders
BMargins
CColumn/row heading
DAll of these
Correct Answer: Option D
MCQ 351ALL
To delete a worksheet, select _______________ Sheet Delete
AFormat
BData
CEdit
DFile
Correct Answer: Option C
MCQ 352ALL
__________________ to make headers of rows and columns always visible.
AData validation
BFilter
CSort
DFreeze
Correct Answer: Option D
MCQ 353ALL
To avoid errors in entering data we may use __________________
AData validation
BFilter
CSort
DFreeze
Correct Answer: Option A
MCQ 354ALL
The _________________ function is used to convert a valid date into a day of the week.
AWeekday
BWeek
CWeeks
Ddaysinweek
Correct Answer: Option A
MCQ 355ALL
You can export a file in calc as ___________________ & __________________
AHTML, XLXS
BXML, XLXS
CXHTML, PDF
DHTML, XHTML
Correct Answer: Option C
MCQ 356ALL
The problem of computer not understanding our language is solved by using software programs called _________________
ACompiler
Btranslator
Cprocessor
DNone of these
Correct Answer: Option B
MCQ 357ALL
A ___________________ can be defined as finite set of precise and clear instruction given to a computer for performing a predefined task.
Aprogram
Bprocess
Ccomponent
Dsequence
Correct Answer: Option A
MCQ 358ALL
The entities of C that do not change its value throughout the execution of program are known as ________________?
AKeyword
Bidentifier
Cvariable
Dconstant
Correct Answer: Option D
MCQ 359ALL
The octal value in c can be differentiate from decimal numbers by using ___as prefix.
A0x
B0
Cboth A & B
DNone to these
Correct Answer: Option B
MCQ 360ALL
C language has been standardized by which company?
AASCII
BUNICODE
CANSI
DEBCDIC
Correct Answer: Option C
MCQ 361ALL
In c language, symbolic constant is generally written using which option?
A#define
B#include
C#main
DAll of these
Correct Answer: Option A
MCQ 362ALL
Full form of ASCII is __________________
AAmerican standard Code for Interchange Information
BAmerican Standard Code for International Interchange
CAmerican Standard Code for Increment Interchange
DAmerican Standard Code for Information Interchange
Correct Answer: Option D
MCQ 363ALL
Adding long as a prefix to int allocates __________ bytes of memory to the variable.
A1
B2
C4
D8
Correct Answer: Option D
MCQ 364ALL
_______________ is used to allocate only positive values in C language.
ASigned
BUnsigned
CBoth A & B
DNone of these
Correct Answer: Option B
MCQ 365ALL
We can use storage class_____________ to share variables between two different functions or programs.
AAutomatic
Bexternal
Cregister
Dstatic
Correct Answer: Option B
MCQ 366ALL
The register class variables are assigned____________value by default.
AZero
Bgarbage
Cinitial
DNone of these
Correct Answer: Option B
MCQ 367ALL
What is the output of statement: printf("?%06.1f"?,123.456)?
A123.456
B123.456
C123.4
D123.5
Correct Answer: Option D
MCQ 368ALL
What will be the output of printf("?%5.3f"?,98.12345)?
A981234
B98.123
C98.12345
D98.1235
Correct Answer: Option B
MCQ 369ALL
________________________ statements help us to jump from one part of the program to another part of program based on result of some conditions.
AControl structure
BDecision structure
CBoth A & B
DNone of these
Correct Answer: Option B
MCQ 370ALL
Which one is capable of storing both positive as well as negative value?
ASigned
BUnsigned
Cboth A & B
DNone of these
Correct Answer: Option A
MCQ 371ALL
Compiler will automatically decide length of "?c language"? as?
A8
B9
C10
D11
Correct Answer: Option C
MCQ 372ALL
Which symbol is used for assignment operator?
A#
B=
C*
D+
Correct Answer: Option B
MCQ 373ALL
Which of the following refer to the meaning of value++ in c?
Apre-increment
Bpre-decrement
Cpost-increment
Dpost-decrement
Correct Answer: Option C
MCQ 374ALL
Which data structure consists of group of variables having same property?
AInt
Bfloat
Cenum
DArray
Correct Answer: Option D
MCQ 375ALL
In C language, which of the following specifies the memory location of variable?
A@
B#
C%
D&
Correct Answer: Option C
MCQ 376ALL
On which function the program will wait for the user to press a key?