You are on page 1of 103

QuestionText Choice1 Choice2

Carefully read the question & answer accordingly: int i;


void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i);
return 0;
}

What is the output of given code snippet? loop will go infinite state. i=10

Carefully read the question & answer accordingly: int i;


void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i);
return 0;
}

What is the output of given code snippet? 1


Carefully read the question & answer accordingly: int i;
void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i);
return 0;
} factorial=facto
factorial=factorial+num; + rial*num;
What is the output of given code snippet? +num; --num;

Carefully read the question & answer accordingly: int i;


void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i);
return 0;
}
4 1 4 4 4 7 and i=6 to 19 it
What is the output of given code snippet? will print 4 12 17 22
Carefully read the question & answer accordingly: int i;
void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i);
return 0;
}

What is the output of given code snippet? Exit;

Carefully read the question & answer accordingly: int i;


void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i); Error
return 0; "negative
} value can not
return to
What is the output of given code snippet? 987654321 main()"
Carefully read the question & answer accordingly: int i;
void increment (int i)
{
i++;
}

int main()
{
for( i = 0; i < 10; increment( i ) )
{
}
printf("i=%d\n", i);
return 0;
}

What is the output of given code snippet? Infinite 25

Carefully read the question & answer accordingly:


What is your observation on the below code?
int main()
{ int i,num,item,product=1;
for(i=1,item=1;i<=4;++i)
{
printf("Enter num%d:",i);
scanf("%d",&i);
if(num==0) continue;
product*=num; Next iteration
} will be
printf("product=%d",product); considered
return 0; Loop will not be executed when zero is
} more than 4 times given
What is the output of the below code?            void main( )
  {      int x = 4, y = 0, z ;       while ( x >= 0 )       {       
              if ( x == y )                break ;               else
              printf ('\n%d %d', x, y ) ;                x-- ;               
y++ ;         }    getch();   } 4032 4031
Carefully read the question and answer accordingly.
What is the output of the below program?

void main()
{
int d,i,j;
d=0;
for(i=1; i<5 ; i++)
for(j=1; j<5 ; j++)
if(((i+j)%3) == 0)
d= d+1;
printf("%d" , d);
getch();
} 10 13

Carefully read the question & answer accordingly: void


main()
{
int i = 0;
for(i=0;i<++i;);
switch (i)
{
case '0': printf("case1");
break;
case '1': printf("Case2");
break;
default: printf("Default Case");
}
}
What is the output of given code snippet? case2 case1

Carefully read the question & answer accordingly:


void main() {
int counter = 5,number = 10;
do
{
number/= counter;
} while(counter--);
printf ("%d", number);
} Garbage
What is the output of the given code snippet? Divide error value
Carefully read the question & answer accordingly: void
main()
{
int list[6],j;
for(j = 0; j < 6; j++)
{
list[j] = 3 * j + 4;
if (j % 3 == 0)
{
list[j] = list[j] - 2;
}
}
for(j=0;j<6;j++)
printf("\t%d",list[j]);
} 10 15 18 19
What is the output of given code snippet? 4 7 10 11 16 19 24 27

Carefully read the question & answer accordingly: void


main()
{
int choice = 20, arr[] = {10, 20, 30};
switch (choice)
{
case arr[0]: printf("Morning");
case arr[1]: printf("Evening");
case arr[2]: printf("Night");
default:printf("After Noon");
}
}
what is the output of given code snippet? Night Morning After Noon

Carefully read the  question and answer accordingly: void


main( )        {      int i, j ;               for ( i = 1;i<= 2 ; i++ )     
         {                        for ( j = 1 ; j <= 2 ; j++ )      
                {                            if ( i == j )                           
continue ;                            printf ( '\n%d %d\n', i, j ) ;       
                  }        }    }        What is the output of above
program?  1 2 2 1 1111
Carefully read the question & answer accordingly:
void main( )
{ int i, j ;
clrscr();
for (i=10;i<12; i++ )
{
for (j=10;j<12;j++)
{
if ( i == j )
continue ;
printf ( " %d %d", i, j ) ;
}
}
getch();
} 10 11 11 10
what is the output of above program? 10 11 11 10 12 11

Carefully read the question & answer accordingly: What


is the output of the below code

void main( )
{
int i = 1, j = 1 ;
for ( ; ; )
{
if ( i > 5 )
break ;
else
j += i ;
printf ( "%d ", j ) ;
i += j ;
}
} Run time error 25
Carefully read the question & answer accordingly:
void main()
{
int i = 3;
switch(i)
{
printf("All The Best");
case 1:
printf("Case1");
break;
case 2:
printf("Case2");
break;
default:
printf("default Case");
}
}
None of these
What is the output of given code snippet? Default Case option

Carefully read the question & answer accordingly: What


is your observation on the below code snippet?
switch(operator)
{
case '+':
printf("num1+num2=%.2f",num1+num2);
getch();
break;
case '-':
printf("num1-num2=%.2f",num1-num2);
getch();
Default block
default: will also be
printf("Operator is not correct"); executed
getch(); when the
break; Compile-time error while operator "+"
} executing with "+" Operator given

Carefully read the question & answer accordingly:


What is the output of below code?
int main()
{
int a = 60;
printf("\n%d",a << 1);
} 240 120
Carefully read the question & answer accordingly: void
main()
{
FILE *fp;
char str[20];
fp=fopen("MSG.txt","a");
fputs("You're alive.Do something!",fp);
fclose(fp);
fp=fopen("MSG.txt","r");
fgets(str,10,fp);
printf("%s",str);
} None of these
What is the output of above code snippet? You're ali options.
file_pointer.clo
se() method is
used to
Carefully read the question & answer accordingly: closing the
Choose the correct option? w+b and wb+ are same files.

Carefully read the question & answer accordingly:


void main()
{
FILE *fp;
char str[20];
fp=fopen("abc.txt","w");
fputs("i am a boy\r\n",fp);
fclose(fp);
fp=fopen("abc.txt","r");
fgets(str,10,fp);
printf("%s",str); I am a boy and cursor will
} go to new line. I am a boy\r\n

Carefully read the question & answer accordingly:


Which of the following operations can be performed on
the file "MyFile.txt" using the below code?

FILE *fp;
fp = fopen("MyFile.txt", "r+"); Archive Read

Carefully read the question & answer accordingly:


Which of the following function can be used to terminate
the main function from another function safely? All Of the Options return(expr);
Carefully read the question & answer accordingly: What
is the output of below code:

void main()
{
FILE *fp;
clrscr();
fp=fopen("XYZ.doc","w");
fputs("Hello",fp);
fclose(fp); Compile-time
} None of these. error
Carefully read the question & answer accordingly: The
Content of a file will be lost if it is opened in : w+ mode w mode

Carefully read the question & answer accordingly:


void main()
{
FILE *fp;
char str[2];
fp=fopen("Believe.txt","w");
fputs("you can do it.",fp);
fp=fopen("Believe.txt","r");
fgets(str,7,fp);
printf("%s",str); fp=fopen("Beli
} eve.txt","r");
What change is required to read accurate values from char str[2]; size need to be need to be
the file? increased removed.

Carefully read the question & answer accordingly: void


main()
{
char str[2];
FILE *fp;
fp=fopen("Life.txt","r");
fgets(str,4,fp);
printf("%d",str);
}
//Life.txt contains:
Life is beautiful.
What is the output of above code snippet? Lif L

Carefully read the question & answer accordingly:


The Function sprintf works like printf but operates on the string pointer
Carefully read the question and answer accordingly.
Which of the following data structure is linear data
structure? Graphs Tree
Carefully read the question and answer accordingly. The
way a card game player arranges his cards as he picks
them up one by one is an example of : Bubble Sort Merge sort
A tree which
does not have
any node
other than
A tree which does not have root node is
Carefully read the question and answer accordingly. any node other than root called a null
Which of the following options are correct? node has depth of zero. tree

An arrow coming from one


symbol and ending at
another symbol represents Represents
Carefully read the question and answer accordingly. that control passes to the Input / Output
Where do we use the Arrow in the flowchart? symbol the arrow points to. symbol
Carefully read the question and answer accordingly. One
of the best application of Stack is Breadth First Search Recursion
Carefully read the question and answer accordingly. The
if ... else keyword in a pseudocode is similar to the
_____________ symbol in a flowchart. Subroutine Annotation

For a serial search to work A serial


the data in the array must search begins
Carefully read the question and answer accordingly. not be alphabetic or numeric with the first
Which of the options is false : order. Array element

Carefully read the question and answer accordingly. Push-down


Which of the following name does not relate to stacks? LIFO list lists
Carefully read the question and answer accordingly. The
operation of processing each element in the list is known
as Sorting Inserting
Identify the
base of
Carefully read the question & answer accordingly: number
Algorithm and Flow chart help us to Know the memory capacity system
Carefully read the question & answer accordingly: int
main()
{
int a=0,b=0;
display(a,b);
getch();
return 0;
}
int display(int a, int b)
{
a=(b=75)+9;
printf("%d%d",a,b);
return 0;
}
What is the output of above program? Run Time Error 75,84

Carefully read the question & answer accordingly: Find


the output of the below program

void fun();
int i = 10;
void main()
{
int i =20;
printf("%d",i);
i = 30;
fun();
}
void fun()
{
printf("%d",i);
} 20 30 10 30

Carefully read the question & answer accordingly:


What will be output if you compile and execute the
following c code?
#define x 9+2
void main()
{
int o;
o=x*x;
printf("%d",o);
} Compile error 133
Carefully read the question & answer accordingly: The
keyword used to transfer control from a function back to
the calling function is goto switch
As a datatype
of a function
that does not
returns any
value to its
Carefully read the question & answer accordingly: calling
void can be used All of the listed options. environment.

Carefully read the question & answer accordingly:


What will be the output if you compile and execute the
following c code?
#define x 52+1
void main()
{
int i;
i=x+x;
printf("%d",i);
} 106 12
Carefully read the question & answer accordingly:
What are your observations in the below code? float
average(float a[],n) { int i; float avg, sum=0.0; This code will
for(i=1;i<=n;i++) { printf("%f",a[i]); sum+=a[i]; } avg be executed
=(sum/n); printf("average= %f",avg); return avg; } This code will throw an Error properly

Carefully read the question & answer accordingly:


int printvalues(float);
void main()
{
float f=2.5;
float value;
value = printvalues(f);
printf("%f",value);
}
int printvalues(float f)
{
switch(f)
{
case 2.3 :
printf("Value is 2.3");
case 2.5 :
printf("Value is 2.5");
default :
printf("invalid case");
}
} None of the
What will be the output of above program? Value  is 2.5       listed options

Carefully read the question & answer accordingly: Call by


Features for accessing a variable through its address is A function can return more reference can
desirable because than one value. be simulated.
Carefully read the question & answer accordingly: Any One section to get input One display
program must contain atleast : data block.
Does not
store in
Carefully read the question & answer accordingly: contiguous
Which is true about array ? None of the given options locations
Carefully read the question & answer accordingly:
Which of the following function is more appropriate for
reading in a multi-word string? printf(); puts();

Carefully read the question and answer accordingly.


What is the output in the below code snippet?       void
main()       {             int twod[3][3];                int i,j;              
clrscr();                for(i=0; i<3; i++)                for(j=0; j<3; j+
+)                  twod[i][j] = i*j;                  for (i=0; i<3; i++)    
              {                         for (j=0; j<3; j++)                        
printf('%d ', twod[i][j]);                         printf('\n');       11101102
            }       }  0 0 0 1 4
Carefully read the question & answer accordingly: What
will happen if in a program, you assign a value to an The program may crash if The compiler
array element whose subscript exceeds the size of some important data gets would report
array? overwritten. an error.

Carefully read the question & answer accordingly:


What will be the output of following program?
void main()
{
float b=7.4;
printf("%d",(int)b); None of the
} 9 listed options

Carefully read the question & answer accordingly:

void main() {
int arr[][3]={{1,2},{3,4,5},{5,4}};
printf("%d %d %d",arr[0][2],arr[1][2],arr[2][1]);
getch();
}

What is the output of the given code snippet? Compilation error Runtime error

Carefully read the question & answer accordingly: If you


pass an array as an argument to a function, what actually Base address
gets passed? Value of elements in array of the array
Carefully read the question & answer accordingly:
What will be the output when you execute following
code?
void main()
{
char arr[11]="Welcome To Programming";
printf("%s",arr);
} None of the
Choose that apply: Welcome To given options
Initialization is
Carefully read the question & answer accordingly: a part of
Size of the array need not be specified. When? All of the options. definition

Carefully read the question & answer accordingly: What


will be output of the below program?

int main()
{
char str[] = "Programming";

printf("%s ",&str[2]);
printf("%s ",str);
printf("%s ",&str);
Program
return(0); ogramming Programming < Compiled with
} Garbage Value > Syntax Errors

Carefully read the question and answer accordingly. The


term ____ means a separate physical computer system
that host a part of the application architecture. Layer tier

Carefully read the question and answer accordingly.


Which of the applications has most increased business None of the
usage of the Internet? World Wide Web (WWW) listed options
Carefully read the question and answer accordingly.
Which of the following DO NOT allow multiple
applications to participate in a transaction? Routers             Switches       
Carefully read the question and answer accordingly. In
the Client-Server architecture, the component that makes
a service request is Network Process
Carefully read the question and answer accordingly.
Choose the major disadvantages of a Client Server None of the
architecture Lack of robustness listed options
Carefully read the question and answer accordingly. Database
Every computer on the Internet that contains a Web site Server
must have a _________. Business logic program program
Carefully read the question and answer accordingly. In 3-
tier client/server applications, the business logic lies at
__________. The client               Firewall
Connects to
several
Carefully read the question and answer accordingly. servers at the
Which of these are the functionalities of a Client All the listed options same time
Carefully read the question and answer accordingly.
Call-free charges across the Internet between PCs and Really Simple Syndication IM (Instant
phone systems is an application of: (RSS). Messaging).
Carefully read the question and answer accordingly.
Choose one from the following which is not a possible Database
kind of server. Time Server Server

Better Sharing
of critical
database
resources and
other
application
softwares
Carefully read the question and answer accordingly. among clients
What are the benefits of employing Client-Server throughout
Computing in business ? All the listed options the network.

Carefully read the question and answer accordingly. Processes and serves client Waits for
Which of these are the functionalities of a Server requests client requests
uses only two sets of
computers in which the
clients are responsible for puts less load
theapplication and on a network
Carefully read the question and answer accordingly. presentation logic, and the than a two-
An N-tiered architecture _____. choose all answers servers are responsible for tiered
applicable the data architecture
Carefully read the question and answer accordingly.
The database server holds the following ________ and Database Management Database
______. systems instances
Carefully read the question and answer accordingly. The
computer that accepts, prioritizes, and processes print
jobs is known as the print server print client
Carefully read the question and answer accordingly. In 3-
tier computing, the request/response protocol between POP3             
the clients and web servers is HTTP                  
Carefully read the question and answer accordingly. One
major disadvantage of an n-tiered client-server
architecture is that it is much more Difficult to program
and test software false true
Carefully read the question and answer accordingly. A
company ___________________ can be used to provide None of the
shared content for staff only intranet listed options
Carefully read the question and answer accordingly. In
the client/server architecture, the component that
processes the request and sends the response Network          
is_______________ Client                  
Carefully read the question and answer accordingly. An
advantage of the three-tier architecture over the two-tier Better
architecture is: Better control over the data performance
Carefully read the question and answer accordingly.
Choose the correct option from the list POWER(5*6) POWER(5,6)
Carefully read the question and answer accordingly.
Which excel function is used to calculate the Rates of
Return? Statistical Mathematical
Carefully read the question and answer accordingly. All the listed
Workspace denotes _____________. Group of worksheets options
Carefully read the question and answer accordingly.
Choose an example of a function from the given list C1+C5 ADD(C1:C5)

Single Click
on the
Worksheet tab
by holding
Carefully read the question and answer accordingly. CTRL key and
Choose an action from the given list to rename a Worksheet cannot be type the new
worksheet renamed name

Carefully read the question and answer accordingly. Option 3 ---


Choose the correct syntax of the SUM function in excel All the listed options SUM(G1:H9)
Carefully read the question and answer accordingly.
Choose an example of a formula from the given list G1:G2 SUM(G1+G2)
Carefully read the question and answer accordingly.
What function in excel arranges row data in a column
and column data in a row ? Rows Columns
Carefully read the question and answer accordingly.
Which chart is used to show the proportions of how one
or more data elements relate to one other? Column Chart Pie chart
Carefully read the question and answer accordingly. Function
Choose the types of conditions on which conditional based
formatting can be applied Cell value based conditions conditions
Carefully read the question and answer accordingly.
Which excel function is used to display the current date
in a cell? now() today()
Carefully read the question and answer accordingly.
Choose the function to find out the highest number
among the 15 values entered in the column C HIGH(C1,C15) MAX(C1:C15)

Carefully read the question and answer accordingly. How


do you reference the cell D7 on Sheet5 from Sheet2? Sheet5!D7 Sheet5.D7
Multiplication,
Exponentiatio
Carefully read the question and answer accordingly. n,
Choose the Order of operation in which Excel performs Comparison,Subtraction,Mul Subtraction,C
calculations in a formula tiplication,Exponentiation omparison

VLOOKUP
Carefully read the question and answer accordingly. VLOOKUP function can be stands for
Choose the correct statements related to VLOOKUP used on a series of data in Vertical
function single column LOOKUP
Carefully read the question and answer accordingly. Both Options
Choose the types of data used in Excel. Both Options 1 and 2 1 and 3

Carefully read the question and answer accordingly.


Excel stores dates and times as numbers, which enables
its usage as functions and formulas. State True or False. false true
Carefully read the question and answer accordingly.
Which is the key used to select multiple non-adjacent
cells in a worksheet, while clicking on them Shift Key CTRL Key
Carefully read the question and answer accordingly.
Choose the correct syntax of the AVERAGE function in All the listed
excel Both Options 2 and 3 options

A Function
Carefully read the question and answer accordingly. name is
What does the Error Value #NAME? specify in an excel? All the listed options misspelled
Carefully read the question and answer accordingly.
Choose the option to fit long addresses of multiple lines Text Wrap
in a single cell? Merge option option
Carefully read the question and answer accordingly. Value_when_f
Which of these is not an argument of the IF function? Logical_test alse
Carefully read the question and answer accordingly. only options 1
What are the types of charts, excel can produce? All the listed options and 3
Carefully read the question and answer accordingly. Two columns
What is the resultant of the below action? will be
Select both the columns M and N in a worksheet and Two columns will be inserted after
choose -> Insert -> Insert Sheet Columns inserted after column L column M
It sums two
cells with
Carefully read the question and answer accordingly. It counts cells with multiple multiple
What is the function of COUNTIFS? criteria arguments
Carefully read the question and answer accordingly.
Choose the Validation type to be given, to prevent All the listed
duplicate entries of Invoice data in a range of cells Whole number options

Carefully read the question and answer accordingly. SUMIF(Number1, None of the
Choose the correct syntax of the SUMIF function Number2…) listed options

Carefully read the question and answer accordingly. Cells K14 and
K14:K28 Indicates values of : Cells K14 through K28 K28 only
Carefully read the question and answer accordingly. The
method used to get data from a different worksheet is
called as _________________. Accessing Verifying
Carefully read the question and answer accordingly.
What is the resultant of the below action? Two rows will
Select both the rows 3 and 4 in a worksheet and choose Two rows will be inserted be inserted
-> Insert -> Insert Sheet Rows after Row 2 after Row 5
<a
url="http://ww
Carefully read the question and answer accordingly. w.example.co
What is the correct HTML syntax for creating a m">example</
hyperlink? <a name="">tA</a> a>

Carefully read the question and answer accordingly. How


can you make a list that lists the items with numbers? <ul> <ol>
Heading
Carefully read the question and answer accordingly. information is
What does the Web browser assume while using a Heading information is to to appear on
heading tag in a html document? appear in bold letters its own line
Carefully read the question and answer accordingly. If
you don’t want the frame windows to be resizeable,
simply add what to the lines ? None of the listed options dontresize
<embed
sound="song.
mid"
Carefully read the question and answer accordingly. <embed music="song.mid" width="500"
Choose the right syntax to embed "audio files" in HTML width="500" height="10" > height="10" >
Carefully read the question and answer accordingly.
Which is the correct syntax to create an Arabic numeric
list <li type="1"> <ol type="1">
Carefully read the question and answer accordingly.
When creating a Web document, what format is used to
express an image's height and width? Dots per inch Pixels
Carefully read the question and answer accordingly.
how many "browser safe colors"are there? 216 16 Million

<html><body>
<h1
style="font-
family=verdan
a;">A
<html><body><h1 heading</h1>
style:"font- <p style="font-
family:verdana;">A family:arial;col
heading</h1><p style:"font- or:red;font-
family:arial;color:red;font- size:20px;">A
size:20px;">A paragraph.</p
Carefully read the question and answer accordingly. paragraph.</p></body></ht ></body></ht
Identify the correct code for font,color and size ml> ml>
Carefully read the question and answer accordingly. Refresh your
What is the REFRESH meta tag used for in html? None of the listed options content
Carefully read the question and answer accordingly.
Address of the HTML links are specified in which
attribute? hr br

It specifies formatting and


Carefully read the question and answer accordingly. layout instructions for your None of the
What does a HTML tag do? web page. listed options
Carefully read the question and answer accordingly. In
which color is Anchor displayed by default? green blue

Carefully read the question and answer accordingly.


What is the another way to make text bold besides <b>? All the listed options <strong>
Carefully read the question and answer accordingly.
Rather than using Hspace and Vspace you can use height and
which of the following to add spacing to your image ? None of the listed options width

Carefully read the question and answer accordingly. How <mail>@b</m


can you create an e-mail link in html? <a href="a@b"> ail>
Carefully read the question and answer accordingly. How
many types of lists are there in HTML 3 2
Carefully read the question and answer accordingly.
Which of the following is used to increase the row height
in html? cellspacing cellpadding

Carefully read the question and answer accordingly.


Which html tag is used to display Preformatted texts? <pre text> </pre text> <pre> </pre>
To display
Carefully read the question and answer accordingly. what contents of
is the use of forms in html? To provide animation effects email
Carefully read the question and answer accordingly.
Which of the following is a plain ASCII text file with Action
embedded HTML commands? Web document document
Carefully read the question and answer accordingly.
What is the most important tool for adding colors to
certain areas of the page rather than the entire
background ? Images Tables

Carefully read the question and answer accordingly. How None of the
can you open a link in a new browser window? <a href="url" new> listed options
Carefully read the question and answer accordingly. <ol
Which link is used to start a list at the count of 3? None of the listed options begin="3">

<img
src="http://ww
w.google.com/
<img logo.png"
Carefully read the question and answer accordingly. src="http://www.google.com alternate
What is the correct syntax to add alternative text for an /logo.png" alternate="Logo text="Logo of
image? of website"/> website"/>
Carefully read the question and answer accordingly. None of the
Using Hspace will add what to your image ? Height to all sides listed options
Carefully read the question and answer accordingly.
Which of the following is correct to align H1 tag to left <h1 tag align
alignment? None of the given options = "left"></h1>
Carefully read the question and answer accordingly.
Which tag would be used to display power in expresion
(A+B)2 ? <p> <SUP>
Carefully read the question and answer accordingly.
Choose the correct HTML syntax to left-align the content
inside a table cell <td align="left"> <tdleft>
Carefully read the question and answer accordingly. A
computer Program that translates one program
instruction at a time into machine language is called
______. Interpreter Compiler
Carefully read the question and answer accordingly.
The process of converting object code into machine code
is called None of the listed options Compiling
Carefully read the question and answer accordingly.
The processes of starting or restarting a computer
system by loading instructions from a secondary storage
device into the computer memory is called Duping Booting
Carefully read the question and answer accordingly.
Application Software can run independently of the
system software. State True or False true false

Carefully read the question and answer accordingly. All the listed
What is RAM is a secondary memory options
Carefully read the question and answer accordingly. both static
Multiple programs can share a single copy of the library. and dynamic
This is an advantage of ______. None of the listed options linking
Carefully read the question and answer accordingly.
System Software can run independently of the
application software. State True or False false true
Carefully read the question and answer accordingly.
When data needs permanent storage __________ is
chosen. None of the listed options RAM
Carefully read the question and answer accordingly.
Which of the following storage is volatile semiconductor memory CD-ROM

Converting
Carefully read the question and answer accordingly. the object
Choose all the major steps involved in a compilation Converting the source code code into
process directly into machine code machine code
Carefully read the question and answer accordingly. The
most commonly used standard data code to represent
alphabetical, numerical and punctuation characters used
in electronic data processing system is called EBCDIC ASCII
Carefully read the question and answer accordingly. The
term associated with the comparison of processing
speeds of different computer system is: MPG EFTS
Carefully read the question and answer accordingly. Graphics
Choose the Application Softwares from the given list MySQL Driver

Carefully read the question and answer accordingly.


Optimization of a source code according to a particular All the listed
operating system is the advantage of _____. Borland C++ options
Carefully read the question and answer accordingly.
Converting a source code to intermediate code so that it
can run on any operating system provided you have the
JIT for that operating system provides Portability to a
source code. State True or False. false true
Carefully read the question and answer accordingly.
Which programming language allows control of one or High level
more software applications? Scripting Language language
Carefully read the question and answer accordingly.
Choose all the Storage devices from the given list Hard Drive Flash Drive
Carefully read the question and answer accordingly. A
single software program can have multiple object files?
State True or False. true false
Carefully read the question and answer accordingly.
Choose the System Softwares from the given list Unix Web browser
Carefully read the question and answer accordingly. Cache
Which memory has the shortest access time? Secondary Memory Memory

only
Carefully read the question and answer accordingly. Either source or destination destination
Each IP packet contain? address address
Carefully read the question and answer accordingly. Port devices and
is a communication point between ___________. All the listed options networks

Wireless
networks use
Carefully read the question and answer accordingly. Wireless networks are radio
Which statement is FALSE about wireless networks? slower than wired LANs. transmitters.
Carefully read the question and answer accordingly. IP address
___________ is a segment of a network. Router and Router
Protocol
defines what
data is
Carefully read the question and answer accordingly. Protocol defines when data communicate
What does Protocol defines is communicated d
Carefully read the question and answer accordingly.
What is the benefit of the networking? Easier backups File sharing
Carefully read the question and answer accordingly.
Find all the high level protocols from the given list SMTP&nbsp; HTTP
Carefully read the question and answer accordingly. The None of the
last address of IP represents Network address listed options
Carefully read the question and answer accordingly. A
hardware networking device used to connect two LANS
or LAN segment Hub Bridge

that connects thirty


personnel computers that controls error
Carefully read the question and answer accordingly. can provide more computing detection and
A local area network is: power than a minicomputer correction
Carefully read the question and answer accordingly.
What is the address given to a computer connected to a
network called System address IP address

peripheral
device
Carefully read the question and answer accordingly. A hardware device that allows attached to a
port is a connection to the Internet computer.
Carefully read the question and answer accordingly. A
logical network that consists of two or more physical
networks WAN Internetwork

Carefully read the question and answer accordingly. HTTP&nbsp;&nbsp;&nbsp;&


Find all the low level protocols from the given list nbsp;&nbsp;&nbsp; ICMP
Carefully read the question and answer accordingly.
Which port is a fast connection that is more flexible than
traditional serial and parallel ports? Serial USB

A network
with more
Carefully read the question and answer accordingly. A network that has only one than one exit
What is a stub network? entry and exit point. point.
Packets may
Carefully read the question and answer accordingly. Duplicate packets may be arrive out of
Why IP protocol is considered as unreliable? generated order
Which of the following is not a Internet connection? DSL WLAN
Carefully read the question and answer accordingly. How
long is an IPv6 address? 64 bits 128 bytes

Carefully read the question and answer accordingly. The All the listed
internet is an example of Packet switched network options
Carefully read the question and answer accordingly.
Which tab of task manager in Windows 7 will show each
program you are working on as a Process? Services Processes

Carefully read the question and answer accordingly. In


Unix, the names of daemons conventionally end in __. "dn" "n"
Carefully read the question and answer accordingly. Any
UNIX command which is ended with ___ will run the
command in the background. $ #
Carefully read the question and answer accordingly.
State whether True or False.
Context is made up of the contents of its registers and
the memory that it is addressing. true false
Carefully read the question and answer accordingly. In
task manager of Windows 7 the unique process identifier
is denoted as __________. ProcessesID ProcID

Carefully read the question and answer accordingly. Driver and Execution None of the
Daemon stands for __________________. Monitor options
Carefully read the question and answer accordingly. In
___________ multitasking, the operating system parcels
out CPU time slices to each program. cooperative interogative

Carefully read the question and answer accordingly. In


UNIX which command is used to list a job’s Process ID "jbs -l" "job -l"
Carefully read the question and answer accordingly.
Which command is used to bring a background process
to the foreground? "fp" "fg"
Carefully read the question and answer accordingly.
Which command in UNIX is used to get process ID? "pid" "fetchpid"
Carefully read the question and answer accordingly.
The total number of tasks that can run at any time does
not depend on which of the following factors? Network speed Program Size
Carefully read the question and answer accordingly.
State whether True or False.
Multitasking is beneficial in critical applications involving
huge business transactions, false true
Carefully read the question and answer accordingly.
State whether True or False.
Time Slice is the period of time for which a process is
allowed to run uninterrupted. false true

Carefully read the question and answer accordingly.


UNIX and Windows 7 uses which type of multitasking? cooperative preemptive
Carefully read the question and answer accordingly.
__________ implies that more than one CPU is involved. None of the options Multitasking
Carefully read the question and answer accordingly.
State whether True or False.
A daemon is a long-running background process that
answers requests for services false true
Carefully read the question and answer accordingly. In
___________ multitasking, each program can control the
CPU for as long as it needs it. interogative cooperative

Carefully read the question and answer accordingly.


State whether True or False.
The Unix kernel can keep track of many processes at
once, dividing its time between the jobs submitted to it. 0 1
Carefully read the question and answer accordingly.
Which command lists all running processes in UNIX ? ps prs
Carefully read the question and answer accordingly.
Which command is used to list down all the processes prc – ef | grep
owned by you? ps – ef | grep username username

Carefully read the question and answer accordingly. In


UNIX which command is used to get information on CPU
Model, CPU MHz, CPU Cores, Address size etc? “/proc/cpu” “/proc/sysinfo”
Carefully read the question and answer accordingly.
Which option is used to get long listing details of all
running processes in UNIX ? "-d" "-l"
Carefully read the question and answer accordingly.
UNIX lets us run more than one program inside the Control
terminal, which is called as “_____________”. Control Job MultiJob
Simple
Carefully read the question and answer accordingly. With Multiprogram
respect to Android OS what does SMP stands for? Simple Multiprocessing ming

Carefully read the question and answer accordingly.


Which command is used to view the disk usage in UNIX? du cd
Carefully read the question and answer accordingly.
Which of the following are valid types of physical storage
used in z/OS (Choose 2) Tertiarry Auxiliary
Carefully read the question and answer accordingly. How
can one view the kernel Paged & NonPaged memory in Task Manager -- Task Manager
windows 7 operating system? Performance -- Processes.
Carefully read the question and answer accordingly.
Which command is used to view disk usage by a
directory or file in UNIX? rm cd
Carefully read the question and answer accordingly. Paged
Which type of Memory allocation assigns consecutive Contiguous memory Memory
memory blocks to a process allocation Management
Carefully read the question and answer accordingly. The
process of translating virtual addresses into real
addresses is called __________ . None of the options. paging
Carefully read the question and answer accordingly. The
________ command will display a continually updating
report of system resource usage in UNIX. top df
Carefully read the question and answer accordingly.
Each process on 32-bit Microsoft Windows has its own
virtual address space that enables addressing up to
_______________ of memory. 32 gigabytes 8 gigabytes
Carefully read the question and answer accordingly.
Which type of Memory allocation uses a space that is
larger than the actual amount of RAM present by
temporarily transferring some contents from RAM to a Paged Memory Virtual
disk. Management Memory

Carefully read the question and answer accordingly. With


respect to Virtual Storage in z/OS :
A block of External Storage is called as ____________ None of the options. Pages
Carefully read the question and answer accordingly. With
respect to Virtual Storage in z/OS :
A block of Virtual Storage is called as ____________ None of the options. Frames
Carefully read the question and answer accordingly. The
__________ of a process is the collection of pages in the
virtual address space of the process that are currently
resident in physical memory working set paging set

Carefully read the question and answer accordingly. The


Operating System’s responsibility for allocating primary
memory to processes, and for assisting the programmer
in loading and storing the contents of the primary Storage
memory is termed as ____________________. None of the options. Management
Carefully read the question and answer accordingly.
_________ is an area of memory used for dynamic
memory allocation. It handles the dynamic memory
needs of a program, Thread Array
Carefully read the question and answer accordingly.
________ is portion of memory, meant to store the local
variables and process registers of an application
program. Heap Array
Carefully read the question and answer accordingly.
State whether True or False.
Primary memory is a limited resource that cannot contain
all active processes in the system. false true
Carefully read the question and answer accordingly. With
respect to Virtual Storage in z/OS : None of the
A block of Internal Storage is called as ____________ Slots options.
Carefully read the question and answer accordingly.
State whether True or False. In UNIX operating sysytem
du command along with –h option is used to obtain the
details of hidden files. true false
Carefully read the question and answer accordingly.
Which type of Memory allocation supports paging that Contiguous
causes every logical address to be translated to a memory
physical address Virtual Memory allocation
Carefully read the question and answer accordingly.
There are _______ ways of memory allocations. two five
Carefully read the question and answer accordingly.
In Operating System (OS) PCB Stands for None of the
___________________. Process control Blocks options
Computer
Hardware and
Carefully read the question and answer accordingly. A Operating System and its Operating
programmer interacts with the ___________________. Utilities. System .
Carefully read the question and answer accordingly.
Which of the following is a type of operating system? Distributed All of them
Carefully read the question and answer accordingly.
Which component of Operating System (OS) is providing
CPU Scheduling, Process management, Memory
management and communication between hardware and
software components? Shell Kernel
Carefully read the question and answer accordingly.
State whether True or False.
Performance monitors fall under utilities of Operating
System (OS). true false
Carefully read the question and answer accordingly. In
Operating System (OS) which program interprets the
command typed by user? Complier Debugger
Carefully read the question and answer accordingly.
There are ____ main components in the Structure of an
Operating System (OS). two one
Carefully read the question and answer accordingly.
State whether True or False.
Editors fall under utilities of Operating System (OS). false true
Carefully read the question and answer accordingly.
Deadlock handling mechanism falls under what key Memory
function of Operating System (OS) ? I/O System Management Management
Intelligent
Software
Carefully read the question and answer accordingly. Interactive System Productivity
With respect to z/OS what does ISPF Stands for? Productivity Facility Facility
Carefully read the question and answer accordingly.
State whether True or False.
Operating System (OS) ensures security by validating
the users while any process is invoked. false true
Carefully read the question and answer accordingly.
Which of the following runs on computer hardware and Application
serve as platform for other software to run on? System Software Software

Carefully read the question and answer accordingly.


State whether True or False.
Operating System (OS) creates a process when an
instance of a program is loaded into the main memory. false true
Carefully read the question and answer accordingly.
Which of the following is a type of operating sysytem
used in ATMs? Batch Processing RTOS
Carefully read the question and answer accordingly.
Which of the following is/are NOT components in the
Structure of an Operating System (OS)? Kernel Debugger
Carefully read the question and answer accordingly.
Which of the following is a type of operating system used Interactive
in stock and billing systems? Distributed Processing
Carefully read the question and answer accordingly.
Operating System is a ________________ Software. both System & Application Application
Carefully read the question and answer accordingly.
State whether True or False.
A set of processes is deadlocked if each process in the
set is waiting for an event that only another process in
the set can cause. false true
Carefully read the question and answer accordingly. With Time Slicing
respect to z/OS what does TSO Stands for? Timer Set Option Option

I. APPS II.
OPERATING
SYSTEM III.
I. UTILITIES II. APPS III. UTILITIES IV.
Carefully read the question and answer accordingly. OPERATING SYSTEM IV. COMPUTER
Choose the correct order from top to bottom. COMPUTER HARDWARE HARDWARE
Carefully read the question and answer accordingly.
Which of the following is not considered as key funtion of File
Operating System (OS). Memory Management Management
Carefully read the question and answer accordingly.
State whether True or False.
z/os is an operating system developed by IBM for
mainframe computers. 1 0
Carefully read the question and answer accordingly.
State whether True or False.
In GUI the user selects a picture or icons available to
perform a task. 1 0

Carefully read the question and answer accordingly.


State which statement below are true.
Statement I : An event-driven system design of RTOS
switches between tasks based on their priorities. Both
Statement II: A time-sharing system design of RTOS Statement I is TRUE & Statement I &
switch tasks based on clock interrupts. Statement II is FALSE II are FALSE
Carefully read the question and answer accordingly.
___________ is an interface between the user and
Operating System (OS). Shell Kernel
Carefully read the question and answer accordingly.
State whether True or False.
z/OS is NOT a Multiuser Operating System (OS). false true

Carefully read the question and answer accordingly.


Which of the following falls under Command Processor? both CLI & GUI GUI
Carefully read the question and answer accordingly.
Scheduling is the process of ________________ controlling &
messages sent to a processor. sharing prioritizing

When a running thread


Carefully read the question and answer accordingly. needs to wait, it relinquishes all of the
Which of the following are most common reasons for a the remainder of its time specified
context switch? slice. option

Carefully read the question and answer accordingly.


___________ uses multiple queues to select the next Low level
process, out of the processes in memory, to get a time High level (memory) (CPU)
quantum. scheduler scheduler
Carefully read the question and answer accordingly.
State whether True or False.
In Windows 7 the Task Scheduler wizard is used to
create a task that opens the program automatically
according to the schedule you choose. false true

Carefully read the question and answer accordingly.


The steps in a context switch are randomly arranged
below. Identify the correct order
I. Place the thread that just finished executing at the end
of the queue for its priority.
II. Save the context of the thread that just finished
executing.
III. Remove the thread at the head of the queue, load its
context, and execute it.
IV. Find the highest priority queue that contains ready II -> I -> IV ->
threads. I -> III -> IV -> II III
Carefully read the question and answer accordingly. zero (lowest)
In Windows 7 the priority levels range from to 10
___________. None of the options (highest).
Carefully read the question and answer accordingly.
The scheduler maintains a ______ of executable threads
for each priority level. queue stack
Eliminate
highs and
Make sure each process is lows in the
Carefully read the question and answer accordingly. completed within a processor’s
Which of the following is not goals of scheduling? reasonable time frame workload
Carefully read the question and answer accordingly.
UNIX uses ___-level scheduling Two one
Carefully read the question and answer accordingly.
State whether True or False.
Processes scheduling in which the scheduler selects
tasks to run based on their priority is called Priority
Scheduling. true false
Carefully read the question and answer accordingly. In
z/OS there are a maximum of ___ name segments which
can make up a data set name 34 44
Carefully read the question and answer accordingly.
Which command is used to search for information in a file None of the
or files? search listed options
Carefully read the question and answer accordingly.
___________________, sometimes referred to as file
descriptors, are data structures that hold information File Control
about a file. Fix Control Blocks Blocks
Carefully read the question and answer accordingly.
State whether True or False.
The command "mv" is used to move and also rename a
file. false true
Carefully read the question and answer accordingly. In FILE_NAME_
UNIX a file name may not exceed ___________. None of the options. MAX
Carefully read the question and answer accordingly.
Which Command is used to find out what directory you
are working in? pwd more
Carefully read the question and answer accordingly.
Which of the following is a valid type of File in z/OS. All PS,PDS & VSAM PS
Carefully read the question and answer accordingly.
Which of the following is the Korn shell ( ksh) initialization
script. .kshrcs .kshrc
Carefully read the question and answer accordingly.
State whether True or False.
Partitioned Data Set is similar to File in Windows. true false

Carefully read the question and answer accordingly.


State whether True or False.
Files are used to store a variety of different types of
information, such as programs, documents,
spreadsheets, videos, sounds, pictures and record-based
data. true false
Carefully read the question and answer accordingly. Statement I is
State which statement below are ture. TRUE &
Statement I : "ls -r" Displays files in reverse order. Statement I is FALSE & Statement II is
Statement II: "ls -R" Displays subdirectories as well. Statement II is TRUE FALSE
Carefully read the question and answer accordingly. File
ownership is an important component of an OS that
provides a secure method for storing files.
Ther are Total __ number of permissions on a file which
can be defined in UNIX. 8 10
Carefully read the question and answer accordingly. In
mainframe system the block of data is called as a
________. tablespace table
Carefully read the question and answer accordingly.
Which command can be used to display/create a new
file. crt ctr
Virtual
Storage
Carefully read the question and answer accordingly. Virtual System Advancement
What does VSAM stands for? Advancement Method Method
Carefully read the question and answer accordingly.
Which command is used to change the permissions of a
file or directory? chmod change
Carefully read the question and answer accordingly.
Which of the following is the C shell ( csh) initialization
script. .cshr .cshc

Carefully read the question and answer accordingly.


Which command is used if you want to work on a
computer different from the one you are currently working
on because that remote machine might be faster. chmd pwd
Carefully read the question and answer accordingly. A
dataset in z/OS should have a Unique name of Max. __
characters. 64 40
Carefully read the question and answer accordingly.
Which option is specified to display invisible files in "ls"
command "-d" "-b"
Carefully read the question and answer accordingly. In
UNIX ___ command lists all files in the directory that
match the name if specified. rm ts
Carefully read the question and answer accordingly. Files
are termed as _________ in z/OS. Record Datasets
Carefully read the question and answer accordingly.
State whether True or False.
Files can be renamed using the "rm" command. false true
Carefully read the question and answer accordingly. File Control
What does FCB stands for ? Fic Content Blocks Blocks
Carefully read the question and answer accordingly.
Which of the following is the Bourne shell ( sh)
initialization script. .rhosts .cshrc

Carefully read the question and answer accordingly.


Which of the following is not hidden/invisible file in UNIX? .kshrc .profile
Carefully read the question and answer accordingly.
State whether True or False.
Physical Sequential dataset is similar to Folder in
Windows false true
Carefully read the question and answer accordingly.
Which command is use to remove a directory? clean rm
Carefully read the question and answer accordingly.
Which of the following is not valid permission of a file or
folder in Windows 7? Read Write
Carefully read the question and answer accordingly.
Thread lifecycle has how many states? 3 6
Carefully read the question and answer accordingly. A
runnable thread enters the ____________ state when it
completes its task or otherwise terminates. Timed Waiting Waiting
Carefully read the question and answer accordingly.
State whether True or False.
A thread transitions back to the runnable state only when
another thread signals the waiting thread to continue
executing. true false
Carefully read the question and answer accordingly. A
thread in ______________ state is considered to be
executing its task. Runnable Terminated
Carefully read the question and answer accordingly.
State whether True or False.
Multithreading is the ability of an operating system to
concurrently run programs that have been divided into
subcomponents or threads. false true

Carefully read the question and answer accordingly.


State whether True or False.
Multithreading in an interactive application may allow a
program to continue running even if part of it is blocked
or is performing a lengthy operation, thereby increasing
responsiveness to the user. true false
Carefully read the question and answer accordingly.
State whether True or False.
Threads in Windows 7 are represented as objects that
are created, maintained, and destroyed by the Process
Manager. false true
Carefully read the question and answer accordingly.
State whether True or False.
All thread of a single process does not share the same
resources that are assigned to their corresponding
process. true false

Carefully read the question and answer accordingly.


State whether True or False.
Thread refers to a path through a program’s instructions
that can be scheduled for execution separately false true
Carefully read the question and answer accordingly. A
thread in ______________ state transitions back to the
runnable state when that time interval expires or when
the event it is waiting for occurs Waiting Terminated
Choice3 Choice4 Choice5 Grade1 Grade2 Grade3 Grade4

i=9 i=11 1 0 0 0

None of these ocompile time error 0 0 1 0


factorial=facto factorial=facto
rial*num; + rial+num;
+num; --num; 0 1 0 0

4 11 16 21 16 21 0 0 0 1
 continue
jump;  break;
sum=sum+nu sum=sum+nu
m; m; 1 0 0 0

Inifinite loop 97531 0 0 1 0


None of these
16 26 options 0 0 0 1

Infinite Loop Loop will be


when 0 is terminated
given None of the when zero is
continuously listed options given 0.5 0.5 0 0

4030 4033 0 1 0 0
5 20 0 0 1 0

loop will go None of these


Default Case infinite state. option. 0 0 1 0

O 2 1 0 0 0
None of these 2 7 10 11 16
options. 19 0 0 0 1

Compile-time
Evening error 0 0 0 1

2122 1212 1 0 0 0
10 12 11 12 10 11 11 12 1 0 0 0

Compile Time
24 Error 0 1 0 0
Compile-time
All The Best error 0 1 0 0

Default block
Run time error will also be
-Break is Compile-time executed
missing in error while when the
case executing with operator "-"
statement. "-" Operator given 0 0 0 0

480 60 0 1 0 0
ve. Do
something! You're al 0 0 0 1

fgets(); None of the


returns null on listed options
error are true 1 0 0 0

I am a boy I am a bo 0 0 0 1

Read and
Append Write Write 0 0 0 0

abort(); exit(expr); 0 0 0 1
XYZ file will
XYZ file will contain
be black "Hello" 0 0 0 1

a mode c mode 1 0 0 0

fgets should
fclose(fp); be replaced
need to be with
used. fgets(str,fp); 0 0 1 0

Li Life 1 0 0 0

none of the
listed options data in a file 1 0 0 0

None of the
Arrays listed options 0 0 1 0

selection Sort insertion sort 0 0 0 1


A tree
with&nbsp;n&
nbsp;nodes
has
exactly&nbsp;
n branches or None of the
degree. options. 0.5 0.5 0 0

Represents
Predefined Represents
Process Stored data
symbol symbol 1 0 0 0

Array Radix sort 0 1 0 0

Decision Process Procedure 0 0 1 0

A serial
search
continues
searching
element by A serial
element either search is
until a match useful when
is found or the amount of
until the end data that must
of array is be searched
found. is large. 0 0 0 1

None of the
options. FIFO lists 0 0 0 1

Merging Traversal 0 0 0 1
Specify the
Direct the problem
output to a completely
printer and clearly 0 0 0 1
84,75 84,84 0 0 1 0

20 20 20 10 0 0 0 1

29 343 0 0 1 0

return goback 0 0 1 0
as the name in an
of a variable expression 0 1 0 0

18 10 1 0 0 0

Datatype of
array a[]
should not be Data Type of
given n is missing 0.5 0 0 0.5

Value is 2.5, This will


invalid case produce error. 0 0 0 1
Excessive use
of global
All of the variable can
options. be avoided 0 0 1 0
One Looping
One function constructs 0 0 1 0
No need to
worry about
the allocation
Automatic and de-
array bounds allocation of
checking arrays 1 0 0 0

scanf(); gets(); 0 0 0 1

00001202 11101202
4 4 0 0 1 0
The array size
The element would
will be set to appropriately
0. grow. 1 0 0 0

8 7 74 0 0 0 1

0,5,5 0,5,4 2,4, 5 0 0 0 1

Address of the
First element last element
of the array of array 0 1 0 0
Welcome To Compilation
P Welcome error 0 0 0 0

It is a formal It is
parameter declaration 0 0.5 0.5 0

ogramming Programming
Programming ogramming
Programming Programming 0 0 1 0

None of the
listed options both 0 1 0 0
Electronic Extensible
Data Markup
Interchange Language All the listed
(EDI) (XML) options 1 0 0 0

Gateways        Firewalls         
      Net Beans. 0 0 1 0

Server Protocol Client 0 0 0 0


Complex
All the listed Traffic business logic
options congestion involved 0.5 0 0 0.5

None of the Web Server File Server


listed options program program 0 0 0 1
Divided
between client
Middle Tier     and server The Database
        alternatively Server 0 0 1 0

Interacts with
end user with Initiates a Processes
GUI request requests 0 0.33 0.33 0.33

Voice Over IP None of the


(VOIP). IPTV listed options 0 0 1 0

Transaction
Server File Server 1 0 0 0

It is Easy to
updated and
modernise
system, both
Faster hardware and
Response and software as
flexibility to the Reduce
changing companies operation and
environment evolved and maintenance
of business has new cost to a large
world outside. requirements. extent. 1 0 0 0
Accepts
connections
Interacts with from large
end user with All the listed number of
GUI options clients 0.33 0.33 0 0
uses more
than three uses three
sets of sets of
computers in computers in
which the which the
client is clients are
responsible responsible
forpresentatio for
n, one set of presentimentl
servers is ogic, one set
responsible of servers are
for data responsible
access logic for application
and data logic, and one
storage,and set of
application serversare
logic is spread responsible
across two or for the data
more different access logic
sets of and data
servers storage 0 0.5 0.5 0

All the given Business logic


options of data access 0.5 0.5 0 0

printer file
mainframe server. 1 0 0 0

NNTP              SMTP             
    MOM 1 0 0 0

0 1

extranet opranet Internet 1 0 0 0

Server            
   O.S. Protocol 0 0 1 0

Easier All the listed


maintenance options 0 1 0 0

POWER(5#6) POWER(5^6) 0 1 0 0

All of the
listed options Financial Logical 0 0 0 1
Group of
Group of rows workbooks 0 0 0 1
All the listed
options AVG(C1:C5) C1:C5 0 0 0 1

Single Click
on the
Double click Worksheet tab
on the by holding
Worksheet tab SHIFT key
and type the and type the
new name new name 0 0 1 0
Option 2 ---
option 1 --- SUM(G1:G9,
SUM(G1,H1) H1:H9) Both 2 and 3 1 0 0 0
None of the
ADD(G1:G2) G1+G2 listed options 0 0 0 1

Transpose Index 0 0 1 0

All the given


options Line Chart 0 1 0 0
Formula
All the listed based
options conditions 0.5 0 0 0.5

time() date() 0 1 0 0

HIGH(C1:C15
MAX(C1,C15) ) 0 1 0 0

Sheet2.D7 Sheet2!D7 1 0 0 0
Exponentiatio
Subtraction,C n,
omparison,Mu Multiplication,
ltiplication,Exp Subtraction,C
onentiation omparison 0 1 0 0

The data in
the table
should be
sorted in The data in
ascending the table need
order, while not be sorted,
using while using
VLOOKUP VLOOKUP
function function 0 0.5 0.5 0
Option 2 --- Option 3 --- Option 1 ---
Text, Values Text, Values Text, Values
and Formulas and Charts and Functions 1 0 0 0

0 1

None of the CTRL+Shift


ALT key listed options Key 0 1 0 0
Option 1 --- Option 3 --- Option 2
AVERAGE(G AVERAGE(G ---AVERAGE(
1,H1) 1:G9,H1:H9) G1:H9) 0 1 0 0
A column is
not wide
enough to A value of the
display the name is
name misspelled 0 1 0 0

All the listed Shrink to Fit


options option 0 1 0 0
None of the
listed options Value_if_true Value_if_false 0 1 0 0
option 1 --- option 2 --- option 3 ---
Bar charts Line graphs Pie charts 1 0 0 0
Two columns Two columns
will be will be
inserted after inserted after
column O column N 1 0 0 0

It sums cells
All the listed with values or
options labels 1 0 0 0

Custom Decimal Date 0 0 1 0

SUMIF(Sum_r
ange,
Criteria_range
SUMIF(Range 1,Criteria1,Crit
, Criteria, Sum eria_range2,C
Range) riteria2,…) 0 0 1 0
Cells
inbetween None of the
K15 and K27 listed options 1 0 0 0

Referencing Functioning 0 0 1 0
Two rows will Two rows will
be inserted be inserted
after Row 4 after Row 3 1 0 0 0
<a
href="http://w
ww.example.c
om">example
</a> <a>B</a> 0 0 1 0

<list> <dl> 1 0 0 0
Heading Heading
information information is
has a shown as a
hyperlink size six 0 1 0 0

noresize save 0 0 1 0
<embed
<embed audio="song.
src="song.mid mid"
" width="500" width="500"
height="10" > height="10" > 0 0 1 0

<ul type="1"> <il type="1"> 0 1 0 0

Inches Centimeters 0 1 0 0
None of the
256 given options 0 0 1 0

<html><body> <html><body>
<h1 <h1
style="font- style="font-
family:verdan family:verdan
a;">A a;">A
heading</h1> heading</h1>
<p style="font- <p style="font-
family:arial;col family:arial,col
or:red;font- or:red;font-
size:20px;">A size:20px">A
paragraph.</p paragraph.</p
></body></ht ></body></ht
ml> ml> 0 0 1 0
Redirect to a
new domain rewrite url 0 0 1 0
href align 0 0 1 0
It connects
your web site It hides
to an programming
operating instructions
environment. from view. 1 0 0 0

pink red 0 1 0 0

None of the
listed options <fat> <dark> 0 1 0 0
1x1 pixel
transparent
image align=+2 0 0 1 0
<a
href="mailto:a <mail
@b.com"> href="a@b"> 0 0 1 0

1 1 0 0

row span col span 0 0 1 0

<prefor> <pre format>


</prefor> </pre format> 0 1 0 0

To collect None of the


users input listed options 0 0 1 0

Transaction
document Web Server 1 0 0 0

None of the
Fonts listed options 0 1 0 0
<a href="url"
target="_blank <a href="url"
"> target="new"> 0 0 1 0

<ol list="5"> <ol start="3"> 0 0 0 1

<img <img
src="http://ww src="http://ww
w.google.com/ w.google.com/
logo.png" alt logo.png"
text="Logo of alt="Logo of
website"/> website"/> 0 0 0 1
Space to the
Space to the top and
left and right bottom 0 0 1 0

<h1 alignment <h1 align =


= "left"></h1> "left"></h1> 0 0 0 1

<SUB> <b> 0 1 0 0

<td
<td leftalign> valign="left"> 1 0 0 0

CPU Simulator 1 0 0 0

both linking
and compiling Linking 0 0 0 1

All the listed


Padding options 0 1 0 0

0 1
stores data allows the
indefinitely computer to
unless you store data
delete it electronically 0 0 0 1

dynamic
linking Static linking 0 0 1 0

0 1

Storage
both device 0 0 0 1

floppy disk core memory 1 0 0 0

Converting
the source
code into None of the
object code listed options 0 0.5 0.5 0
All the listed
BCD options 0 1 0 0

CPS MIPS 0 0 0 1
All the given Microsoft
options Word 0.5 0 0 0.5

JIT Java Compiler 0 0 1 0

0 1

Machine All the listed


language options 1 0 0 0
All the listed
options RAM 0.5 0.5 0 0

1 0
All the listed
Device driver options 0.5 0 0.5 0
All the listed Virtual
options Memory 0 1 0 0
Both source
and
destination only source
address address 0 0 1 0
devices and networks and
processes resources 0 0 1 0
Wireless
networks are
Wireless faster than
networks are wired
convenient. networks. 0 0 0 1

IP address Subnet 0 0 0 1
Protocol
defines how
data is
communicate All the listed
d options 0 0 0 1
All the listed Easier access
options to resources 0 0 1 0

ARP ICMP 0.5 0.5 0 0


Unicast Broadcast
address address 0 0 0 1

Router Broad band 0 1 0 0

constructs
packets of
data and send
None of the them across
given options the network 1 0 0 0

SYSID Process ID 0 1 0 0

space located
socket that in the front of
enables a computer to
information to install
move through additional
a system. drives. 0 0 1 0

Networking LAN 0 1 0 0

SMTP&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp;&nbsp;
&nbsp; ARP 0 0.5 0 0.5

Ethernet Parallel 0 1 0 0
A network
with more A network
than one exit with only one
and entry entry and no
point. exit point. 1 0 0 0

All the listed A packet may


options be lost 0 0 1 0
dial-up WWAN 0 0 0 1
32 bits 128 bits 0 0 0 1
Circuit
Cell switched switched
network network 1 0 0 0

Process Performance 0 1 0 0

"d" "mn" "dm" 0 0 1 0

@ & % 0 0 0 1

1 0

PID ProcessID 0 0 1 0
Disk and Deadlock &
Execution Execution
Monitor Monitor 0 0 1 0
all of the
specified
option preemptive 0 0 0 1

"jobs -l" "jb -l" 0 0 1 0

"bf" "bg" 0 1 0 0

"getid" "getpid" 0 0 0 1

CPU Speed Memory Size 1 0 0 0

1 0

0 1
all of the
specified
option interogative 0 1 0 0
Multiprocessin Multiprogram
g ming 0 0 1 0

0 1
all of the
specified
option preemptive 0 1 0 0

0 1

prcs prc 1 0 0 0
prcs – ef |
prs – ef | grep grep
username username 1 0 0 0

“/proc/cpudeta
“/proc/cpuinfo” ils” 0 0 1 0

"-f" "-e" 0 0 1 0

MultiJob
Control Job Control 0 0 0 1
Symmetric Symmetric
Multiprogram Multiprocessin
ming g 0 0 0 1

df rm 0 0 1 0

Secondary Central Primary 0 0.5 0 0.5


Task
Task Manager Manager--
-- Application Cpu Usage 1 0 0 0

df du 0 0 0 1

None of the Virtual


options. Memory 1 0 0 0
swapping mapping 0 0 0 1

du rm 1 0 0 0

16 gigabytes 4 gigabytes 0 0 0 1

Contiguous
None of the memory
options. allocation 0 1 0 0

Frames Slots 0 0 0 1

Slots Pages 0 0 0 1

group set map set 1 0 0 0

Memory Data
Management Management 0 0 1 0

Stack Heap 0 0 0 1

Stack Thread 0 0 1 0

0 1

Frames Pages 0 0 1 0
0 1

Paged
Memory None of the
Management options. 0 0 1 0

six three 0 0 0 1
Program
Program content
control Blocks Blocks 1 0 0 0

Computer Computer
Hardware and Hardware and
its Utilities. Applications 1 0 0 0

Multi-user Embedded Real-time 0 1 0 0

Command
Debugger Processor 0 1 0 0

1 0

Kernel Shell 0 0 0 1

four three 0 0 0 1

0 1

Process File
Management Management 0 0 1 0
Intelligent Interactive
System Software
Productivity None of the Productivity
Facility listed options Facility 1 0 0 0

0 1
Operating
System All of them 0 0 1 0

0 1

Interactive
Distributed Processing 0 0 0 1

Command
Complier Processor Shell 0 0.5 0.5 0

Batch
RTOS Processing 0 0 0 1
none of the
listed options System 0 0 0 1

0 1
Non of the Time Sharing
options Option 0 0 0 1

I. UTILITIES
I. APPS II. II.
UTILITIES III. OPERATING
OPERATING SYSTEM III.
SYSTEM IV. APPS IV.
COMPUTER COMPUTER
HARDWARE HARDWARE 0 0 1 0

I/O System Process None of the


Management Management listed options 0 0 0 0

1 0

1 0

Statement I is
FALSE & Both
Statement II is Statement I &
TRUE II are TRUE 0 0 0 1
Command
Debugger Processor 0 0 0 1

1 0

None of the
CLI listed options 1 0 0 0

controlling &
sharing prioritizing controlling 0 1 0 0
A thread with
a higher
priority has A running
become ready thread needs The time slice
to run. to wait. has elapsed. 0 1 0 0

both High
level
(memory) &
Low level
(CPU) None of the
scheduler listed options 0 1 0 0

0 1

II -> I -> III -> II -> III -> IV ->


IV I 0 1 0 0
zero (lowest) zero (lowest)
to 15 to 31
(highest). (highest). 0 0 0 1

None of the
options heap 1 0 0 0
Make sure
To maintain a each process
constant is consumes
amount of specific
work for the amount of
processor. memory. 0 0 0 1

Four Three 1 0 0 0

1 0

64 22 0 0 0 1

find grep grp 0 0 0 1

Fic Content File Content


Blocks Blocks 0 1 0 0

0 1

FILE_MAX NAME_MAX 0 0 0 1

ncftp print 1 0 0 0
Only PS &
VSAM PDS PDS 1 0 0 0

.kcshr .kshc 0 1 0 0

0 1

1 0

Both Both
Statement I & Statement I &
II are TRUE II are FALSE 0 0 1 0
12 9 0 0 0 1

Record cell 0 0 1 0

cat create 0 0 1 0
Virtual
Storage Virtual System
Access Access
Method Method 0 0 1 0

cmhd chmd 1 0 0 0

.cshrcs .cshrc 0 0 0 1

grep rsh 0 0 0 1

33 44 0 0 0 1

"-a" "-f" 0 0 1 0

top ls 0 0 0 1
None of the
table options. 0 1 0 0

1 0
Fix Control File Content
Blocks Blocks 0 1 0 0

.kshrc .profile 0 0 0 1

.rhosts .cshrcs 0 0 0 1
1 0

remove rmdir 0 0 0 1

Read & None of the


execute Options Full control 0 0 0 1

2 5 4 0 0 0 1

New Terminated Runnable 0 0 0 1

1 0

Waiting Timed Waiting New 1 0 0 0

0 1

1 0

0 1

0 1

0 1
Timed Waiting New Runnable 0 0 1 0
Grade5 AnswerDescriptQuestionMedia AnswerMedia Author Reviewer Is Numeric

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT
0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT
TEXT TEXT

0 TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT
TEXT TEXT

1 TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

1 TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT
1 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

1 TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT
0 TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0.33 TEXT TEXT


TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT
TEXT TEXT

0 TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
0 TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

1 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
TEXT TEXT

TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

0 TEXT TEXT

TEXT TEXT

0 TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT

TEXT TEXT
0 TEXT TEXT
Is Numeric

You might also like