Sie sind auf Seite 1von 55

Computer Notes </> Sidebar * * * * * * * Classic </?view=classic> Flipcard </?view=flipcard> Magazine </?view=magazine> Mosaic </?view=mosaic> Sidebar </?

view=sidebar> Snapshot </?view=snapshot> Timeslide </?view=timeslide>

<//www.blogger.com/post-edit.g?blogID=8633853204657085964&from=pencil> <http://www.blogger.com/home> How Many Type of Control Statement in Java <http://jyoticomputernotes.blogspot.com/2012/05/normal-0-microsoftinternet explorer4_6310.html>

What is the difference between Procedural and Object Oriented Programming in Java <http://jyoticomputernotes.blogspot.com/2012/05/normal-0-microsoftinternet explorer4_28.html>

Computer Terms <http://jyoticomputernotes.blogspot.com/2012/05/normal-0-microsoftinternet explorer4.html>

How does memory chip parity protect me from memory errors? <http://jyoticomputernotes.blogspot.com/2012/01/how-does-memory-chip-parit y-protect-me.html>

OSI Reference Model <http://jyoticomputernotes.blogspot.com/2012/01/osi-reference-model.html>

CDAC Old Solved Paper ( Teacher Job 2012) <http://jyoticomputernotes.blogspot.com/2012/01/cdac-old-solved-paper-teac her-job-2012.html>

What is the DBA Role and DBA Responsibilities <http://jyoticomputernotes.blogspot.com/2012/01/what-is-dba-role-and-dba.h tml> 1

Jan 11 <http://jyoticomputernotes.blogspot.com/2012/01/cdac-old-solved-paper-teacher-jo b-2012.html>

CDAC Old Solved Paper ( Teacher Job 2012) <http://jyoticomputernotes.blogspot.com/2012/01/cdac-old-solved-paper-teacherjob-2012.html> <//www.blogger.com/post-edit.g?blogID=8633853204657085964&postID=8243110310712 449884&from=pencil>

*aSample Question Paper 01 *Sr.* *No.* *Question* *Option1* *Option2* *Option3* *Option4* *Answer* 01

________performs and supervises the execution of instructions and directs other devices of computer to act as per their designated functions. ALU Control Unit RAM Main Memory 2 02 All of the following are input devices EXCEPT Touch screen Punch Cards Mouse None of these options 4 03

Magnetic disk is a ________ storage device Direct access Indirect access Random access None of these options 1 04 Which of the following are not Hard disk Zip disk Disk packs Floppy disk Winchester Disk 3 05 Which of these keys belong to QWERTY keyboard Numeric Keypad null Alphanumeric Keys All of these options 4 06 Collection of Programs is Software Instructions Hardware Procedure 1 07 _______is a program execution. Procedure Process Algorithm

All of these options 2 08 _______ is an operating system MS-DOS WINDOWS LINUX All of these options 4 09 The conversion of digital data to analog form is _______ Modulation Demodulation Sampling Modem 1 10 The first generation machines used _________ Vaccum Tube Transistors IC`s None of these options 1 11 The input interfaces transforms the data into _________code hexa binary octal decimal 2 12 Super computers use __________ and __________ technologies to solve complex problems faster

RISC AND CISC MULTIPROCESSING AND PARELLEL PROCESSING PARELLEL PROCESSING AND RISC FUZZY LOGIC AND NEUTRAL TECHNIQUE 2 13 Different types of user interfaces include System calls Command language Job control language All of these options 4 14 _______ is a device capable of changing signals from one form to another. Trasistor Transducer Sampler Scanner 2 15 The interface that enables similar networks to communicate is called Bus network Router Cable modem Bridge 4 16 A value written into a program instruction that does not change during the execution of program. Identifiers Constants Objects

Operators 2 17 Algorithms can be represented in various ways EXCEPT PROGRAMS FLOWCHARTS DECISION CHARTS SPREADSHEET 4 18 _________ symbol is used for Processing of data. Oval Parallelogram Rectangle Diamond 3 19 The ______ symbol is used to indicate the comments/remarks on the contents of a procedure in order to clarify some point of the flowchart. Document Annotaion Arrow Connector 2 20 All of the following are computer Language Processors EXCEPT: Compiler Translation Software Interpreter None of these options 4 21 Language Primarily used for internet-based applications

ADA C++ JAVA FORTRAN 3 23 The errors that occur in computer program is________ Syntax error Logical error Syntax error and Logical error None of these options 3 24 Program errors are known as ________ Virus Bugs Errors All of these options 2 25 The component of data base management system is ________ Data definition Language Data manipulation Language Data definition Language and Data manipulation Language None of these options 3 26 The file organization method which stores records in no specific order is called: Direct Indexed Sequential Sequential Batch

1 27 C can be used on Only MS-DOS operating system only unix operating system only windows operating system All of these options 4 28 Which of the following is not a valid identifier? name_23 __tail__ 2ndday None of these options 3 29 void main() { int A=0, B=0, C=0, D=0; if((A==B)&&(A*B<=B)) { if(D==1) C=1; else if(A==1) C=2; } else C=3; if((B==0)&&(A==B)&&(A!=1)) D=1; } What are the final values of C and D? 0 0 0 0 1 1 1 3 30 #include<stdio.h> void main() { int x=10; (x<0)?(int a =100):(int a =1000); printf(" %d",a); } Error 1000 100 None of these options

1 31 If `a` is an integer variable, a = 5/2; will return a value: 2.5 3 2 0 3 32 What is the output of the following code : #include<stdio.h> void main() { extern int out; printf("%d",out); } int out=100; Run time error Compile time error 100 Garbage value 3 34 What is the output of the following code? #include<stdio.h> void main() { int a = 0; printf("\n %d\t", (a = 10/a)); } 0 1 Compile Time error Runtime Error 4 35 Write a for loop which will read five characters (use scanf) and deposit them into the character based array words, beginning at element 0. for( loop = 0; loop < 5; loop++ )scanf( for( loop = 0; loop <= 5; loop++ )scanf( for( loop = 0; loop < 4; loop++ )scanf( None of these options 1 36 #include<stdio.h> void main() { (printf("%d",printf("%d"))) while (1) break; { else if

continue;

} } The output is

Compile time error Goes into an infinite loop Garbage values None of these options 3 37 What is the output of the following code? #include<stdio.h> char *someFun() { char *temp = "String constant"; return temp; } main() { puts (someFun()); } String constant Null value Error None of these options 1 38 What is the output Check(int); void int Check(int a) break; } 1 0 Error None of these options 3 39 The expression temp2 * temp3; f() + g() * h() f() + (g() * h()) Any of these options None of these options 4 40 If you don`t initialize a static array, what will be the elements set to? temp1 = f(); temp2 = g(); temp3 = h(); temp5 = temp1 * temp4; is equivalent to temp4 = of the following code? #include<stdio.h> int main() { printf("\n%d\t",Check(100)); } { if(a%2==0) { return 1; return 0; }

0 an undetermined value a floating point number the characterconstant `\0` 1 41 Elements in an array are identified by a unique _______. symbol order subscript data type 3 42 What is the output of the following code? #include<stdio.h> void main() { int arr[2][3][2]={{{2,4},{7,8},{3,4},}, {{2,2},{2,3},{3,4}, }}; printf("\n%d",**(*arr+1)+2+7); } 16 7 11 Error 1 43 What is the output of the following code? #include<stdio.h> void main() { int arr[] = {10,20,30,40,50}; int x,*ptr1 = arr, *ptr2=&arr[3]; x = ptr2 - ptr1; printf("\n%d\t",x); } 6 3 Compile Time error Runtime Error 2 44 An address is a ________, while a pointer is a _________. variable, location variable, position

constant, variable None 3 45 #include"stdio.h" main() { int *p1,i=25; p2=&i; p1=p2; p2=p1; printf("%d",i); } code is : Program will not compile 25 Garbage value Address of I 2 46 main() { char thought[2][30]={"Don`t walk in front of me..","I am not follow"}; printf("%c%c",*(thought[0]+9),*(*(thought+0)+5)); } What is the output of this program? k k Don`t walk in front of me I may not follow k 4 47 ptr equivalent of a[i][j] is ((*a+i)+j) *(*(a+i)+j) **a+i+j none of these options 2 48 Given the statement, following is true? maruti.engine.bolts = 25; which of the void *p2; p1=&i; The output of the above

structure bolts is nested within structure engine structure engine is nested within structure maruti structure maruti is nested within structure engine structure maruti is nested within structure bolts

2 49 struct num { int no; char name[25]; }; void main() { struct num n1[]={{25,"rose"},{20,"gulmohar"},{8,"geranium"},{11,"dahalia"}}; printf("%d%d"n1[2].no,(*&n1+2)->no+1); } What is the output of this program? 8 8 8 9 9 8 8 , unpredictable 2 50 What is the output of the following program? void main() { struct player { char name[30]; unsigned char player_number; float batting_average }; printf("size = %d", sizeof (struct player)); } size = 32 size= 35 size= 36 size= 33 3 51 A _______ is a linear list in which additions and deletions take place at the same end. Stack Queue Linked list None of the above 1 52 Stack can be represented using Arrays Arrays or linked list Only linked list None of the above

2 53 Stack is not used in Recursion Quick Sort Postfix Notation Simulation 4 54 Which of the following is not an operation of queue, assuming that queue has items `Q` and `X`? empty(Q) deque(Q,X) enque(Q,X) push(Q,X) 4 55 Consider a linked list of n elements. What is the time taken to insert an element after an element pointed by some pointer? O(log2n) O(n) O(1) O(n log2n) 3 56 The node of the circular doubly linked list must have: One data and two address fields One data and one address fields Two data and two address fields Two data and one address fields 1 57 The function of the C Preprocessor is: macro replacement

conditional inclusion file inclusion All of the above. 4 58 The statement that prints out the character set from A-Z, is for( a = `z`; a < `a`; a = a - 1) for( a = `a`; a <= `z`; a = a + 1) for( a = `A`; a <= `Z`; a = a + 1) for( a = `Z`; a <= `A`; a = a + 1) 3 59 /*consider that file zzz.h starts here*/ printf("Hello"); /*and ends here*/ void main() { #include "zzz.h" printf("World"); } What is the output of the above program World Hello HelloWorld Compilaion Error 3 60 The function called menu which prints the text string "Menu choices", and does not pass any data back, and does not accept any data as parameters, looks like void menu( void ) { printf("Menu choices"); } int menu( void ) { printf("Menu choices"); } int menu( char string[] ) { printf("%s", string); } None of the above 4 61 Which of the following are correctly formed #define statements #define INCH PER FEET 12 #define SQR (X * X) (X) #define SQR (X* X * X) printf("%c", &a); printf("%c", &a); printf("%c", a); printf("%c", a);

#define SQR(X) (X) * (X) 4 62 When is linear queue said to be empty ? Front==rear Front=rear-1 Front=rear+1 Front=rear+1 1 63 The data type created by the data abstraction process is called Class Structure Abstract Data type User Define Data type 3 64 Peer-to-peer relationship is a type of _________. Association Aggregation Link None of these options 3 65 An object has _____. State Behaviour Identity. All of these options. 4 66 A derived class

Inherits data members and member functions from base class. Inherits constructors and destructor. Object can access protected members with the dot operator. Inherits data members and member functions from base class as well as Inherits constructors and destructor. 1 67 Reusability can be achieved through. Inheritance. Composition. Association. All of these options 4 68 An object containing other object is called_____. Containing Composition Containing and Composition None of these options 2 69 UML stands for Unique modeling language. Unified modeling language Unified modern language Unified master laqnguage 2 70 The term given to the process of hiding all the details of an object that do not contribute to its essential characteristics is called _____________. data-hiding. packaging. encapsulation.

grouping 3 71 If constructor is not provided then Compiler will not compile the class Object creation is not possible All Objects data will be stored in same memory area so overwriting of data will happen Default constructor will be provided 4 72 Method overloading is _________ Overloading different member function of a class A feature in which member function with same name and different signature. Overloading without argument pasing. None of these options 1 73 WATERFALL : CASCADE :: snow : freeze missile : launch tree : exfoliate wave : undulate 4 74 SATURINE : MERCURIAL :: redundant : wordy saturn : venus heavenly : starry wolf : sly 3 75 EXPLOSION : DEBRIS ::

flood : water famine : food fire : ashes disease : germ 1 76 DOCUMENTS : ARCHIVE :: artifacts : museum actors : stage tools : worker instruments : musicians 1 78 TENACITY : WEAK :: apathy : caring pity : strong immorality : wrong frequency : known 1 79 BANDAGE : WOUND :: stamp : envelope gloves : hands diaper : baby cast : fracture 4 80 RESOLVED : DOUBT :: confirmed : suspicion announced : candidacy included : guest suggested : idea

1 81 PROHIBITED : REFRAIN :: innocuous : forbid deleterious : embark required : decide compulsory : comply 4 82 ASSUAGE : humiliate intensify convert solidify 2 83 COURT : reject uncover infect subject 1 84 In 1950, transylyvania earned $ 1 million in tourist revenue.By 1970, tourist revenue doubled and in 1980, it reached the sum of $4 million Each of the following, if true may explain the trend in tourist revenue except: The number of tourists has increased from 1950 to 1980 average expenditure per tourist has increased Average stay per tourist has increased the number of total hotel rooms has increased. 4 85 Each of the following could be the number of white puppies in the

shelter EXCEPT 4 5 6 8 2 86 sushil is the son of the teacher. mohan is the teacher and he has a son and daughter therefore mohan is the father of sushil definitely true probably true cannot say probably false 2 87 Typically the entrepreneur is seen as an individual who owns and operates a small business. But, simply to won and operate a small business or even a big business does not make someone an entrepreneur. If this person is a true entrepreneur, then new products are being created, new ways of providing services are being implemented. Which of the following conclusion can be best drawn from the above passage. An owner of a large business may be an entrepreneur. Someone who develops an enterprise may be considered an entrepreneur. Entrepreneurs do not own and operate small businesses. Entrepreneurs are the main actors in economic growth. 2 89 During 1985, advertising expenditures on canned food products increased by 20%, while canned food consumption rose by 25%.Each of the following, if true, could help explain the increase in food consumption except: Advertising effectiveness increased. Canned food prices decreased relative to substitutes. Canned food products are available in more stores. Can opener production doubled. 1 90

Once a company has established an extensive sales network in a foreign market and therefore has achieved substantial sales, it seems that thesemarket should be treated in a very similar fashion to those in one`s own courtry. It is therefore those countries where only initial sale and representation have been developed where marketing methods will have to differ from domestic activities Sales network can be the same in both foreign and domestic market Extensive sales networks are preferable to less developed ones. some countries develop economically faster than others larger markets abroad are more adaptable to domestic marketing methods 4 91 starting from a point x jayant walked 15metres towards the west he turned to his left and walked 20 metres he then turned to his left and walked 15 metres he then further turned to his right and walked 12 metres how far is jayant from the point x and in which direction? 32 metres south 47 metres east 42 metres north 27 metres south 1 92 Every town with a pool hall has its share of unsavory characters. This is because the pool hall attracts gamblers and all gamblers are unsavory. Which of the following, if true cannot be inferred from the above? All gamblers are unsavory. All pool halls attract gamblers. Every town has unsavory characters. All gamblers are attracted by pool halls. 3 93 In winning its bitter,protracted battle to acquire Blue industries, Inc., Bell industries has fulfilled its goal to lessen its reliance on tobacco holdings, while the $5.2 billion deal may spur more takeover activity in the insurance, analysts said. Blue Industries is in the tobacco industry. Belle Industries is in the insurance business Blue Industries is in the insurance business.

More divestment takes place in the tobacco 3 94 Every town with a pool hall has its share of unsavory characters. This is because the pool hall attracts gamblers and all gamblers are unsavory. which of the following, if true cannot be inferred from the above? All gamblers are unsavory All pool halls attracts gamblers Every town has unsavory characters All gamblers are attracted by pool halls 3 95 Which of the following equations can be used to find a number x, if the difference between the square of this number and 21 is the same as the product of 4 times the number? x - 21 = 4x x^2 - 21 = 4x x^2 = 21-4x x + 4x^2 =21 2 96 How many terms of the series -9 , -6 , -3 ,.........must be taken such that the sum may be 66? 11 13 9 10 1 97 If the measures of the three angles of a triangle are (3x + 15), (5x 15), and (2x + 30), what is the measure of each angle? 75 60 45

25 2 98 A boy takes a 25 question test and answers all queations. His score is obtained by giving him 4 points for each correct answer, and then subtracting 1 point for each wrong answer. He obtains a score of 70, how many questions did he answer correctly? 17 18 19 20 3 99 Which is a better investment? 14% stock at Rs.120 or 10% stock at Rs.90 ? First investment is better Second investment is better Both are equally good None of the above. 1 100 I sell 20 boxes for Rs. 132 gaining thereby the cost price of 4 boxes. What is the cost price of each? 5.0 4.8 5.5 6.6 3 101 If the ratio of women to men in a meeting is 4 to 1, what percent of the persons in the meeting are men? 20% 25% 33 1/3% 80% 1

102 .03 times .05 is 15% 1.5% 0.15% 0.015% 3 103 What is the length of side BC ? 3 5 (34)^1/2 7 3 104 If the lengths of the two sides of right triangle adjacent to the right angle are 8 and 15 respectively, then the length of the side opposite the right angle is 15.8 16 17 17.9 3

*Sample Question Paper 02 * *Sr.* *No. * *Question* *Option1* *Option2* *Option3* *Option4* *Answer*

01 ________performs and supervises the execution of instructions and directs other devices of computer to act as per their designated functions. ALU Control Unit RAM Main Memory 2 02 ______Gate is the Universal gate NAND OR AND NOR 2 03 Magnetic disk is a ________ storage device Direct access Indirect access Random access None of these options 1 04 Modern magnetic tapes use 8 bit ________code format for data recording EBCDIC BCD ASCII All of these options 1 05 SCSI Interface helps in Extends the computer`s Bus outside the computer Analog to Digital and Digital to Analog Conversions Projects information from a computer on a large screen It is an Interface unit between I/O device and Ports 1 06 ___________ is the Software made available on Hardware stored in ROM. Firmware Fireware Casetool Abstraction 1 07 Different types of user interfaces include System calls Command language Job control language All of these options 4 08 A process is selected for running from the READY queue in FIFO sequence. If the process runs beyond a certain fixed length of time, it is interrupted and returned to the end of the READY queue. This is known as SJF Round Robin Relocation FCFS 2 09 The interface that enables similar networks to communicate is called Bus network Router Cable modem Bridge 4 10 _______ computers perform the complex processing by directly measuring the discrete physical quantities. Analog Digital Hybrid Personal 2 11 _______is not a Modulation Technique Amplitude Phase Frequency Light 4 12 The fifth generation computers worked on the principle of_________ RISC processor CISC processor Parellel process or None of these options is correct 3 13 Physical devices of a computer is a____________ Hardware Software User software None of these options 1 14 In the third generation of computers which of the following type of machines was introduced? Mini computers Micro computers Main frame Computers Super computer 1 15 Digitization is composed of __________ and __________. Scanning and Encoding Sampling and Quantisation Selection and Sorting None of these options 2 16 _____ contains the addresses of all the records according to the contents of the field designed as the record key. Index Subscript Array File 1 17 The programming language that was designed for specifying algorithm Address ASCII ALGOL None of these options 3 18 Connector is used as a substitute for Processing Decision Flow Lines Input Output 3 19 Advantages of using flow charts is Effective Analysis Efficien t Coding Time consuming Effective Analysis and Efficient Coding 4 20 The following statement is valid in context with sub-programming: It is a program written so that it can be used without rewriting. Also Known as Functions May be Intrinsic or Programmer Written All of these options 4 21 Language wherein Encapsulation and Abstraction of data is done is called as: Assembly Language Object oriented programmingLanguage

Pascal language Cobol 2 22 During system evolution __________ is to be considered Time analysis Ease of maintenance Failure rate All of these options 4 23 _________ is a point at which the debugger stops during program execution and awaits a further command. Memory Dump Watch point Break point None of these options 3 24 Commonly used file organization are: Sequential Direct and Random Indexed Sequential All of these options 4 25 The file organization method which stores records in no specific order is called: Direct Indexed Sequential Sequential Batch 1 26 C language came into existence in the year 1971 1958 1972 1983 3 27 The correct statement to read a double is double d; scanf("%f", &d); double d; scanf("%lf", &d); Any of theseoptions None of these options 2 28 Which is the correct statement to check whethera number is in the range of 100 to 1000 value != 99 && value !=1000 value <= 100 || value <=1000 value >= 100 && value <=1000 value >= 100 || value <=1000 3 29 What is the output of the following code #include<stdio.h> main() { int x=10, j=20; y=x, y?(x,y)?x: y: y; printf("%d %d", x,y); } Compile time error 10 10 Runtime error None of theabove 2 30 The value of the expression 3 ^ 2 & ~ 1 is : 3 2 1 0 3 31 What is the output of the following code? #include<stdio.h> void main() { int a=14; a += 7; a -= 5; a *= 7; printf("\n%d",a); } 112 98 89 None of these options 1 32 What is the output of the following code #include<stdio.h> main() { int a = 5; printf("%d %d %d %d %d",a++, a--,++a,--a,a); } 5 5 6 6 5 5 6 6 5 5 4 5 6 5 4 4 5 5 4 5 4 33 The statement which reproduces the following output, is 1 22 333 4444 55555 a = 1; while(a <= 5){ while(b <= a){printf("%d ", a);b = b + 1;} ;a = a + 1;} a = 1; while(a <= 5){b = 1;

while(b <= a){ printf("%d", a);b = b + 1;} printf(" ");a = a + 1;} a = 1; while(a <= 5){ while(b <= 5){printf("%d", a);b = b + 1;} a = a + 1;printf(" ");} a = 1; while(a <= 5){printf(" ");b = 1; while(a <= b){printf("%d", a);b = b + 1;} a = a + 1;} 2 34 #include<stdio.h> void main() { while (1) { if (printf("%d",printf("%d"))) break; else continue; } } The output is Compile time error Goes into an infinite loop Garbage values None of these options 3 35 What does the term `call-by-value` refer to? Passing a copy of a variable into a function Passing a pointer to a variable into a function Choosing a random value for a variable A function that does not return any values 1 36 What is the output of the following code? #include <stdio.h> main() { char string[] = "Hello World"; display(string); } void display(char *string) { printf("%s", string); } Hello World Garbage value Compile time error None of theabove 3 37 What is the output of the following code? #include<stdio.h> func(a,b) int a,b; { return (a= (a==b)); } main() { int process(), func(); printf("The value of process is %d", process(func,3,6)); } process (int (*pf) (), int val1, int val2) { return((*pf) (val1,val2)); } Error Garbage value The value of process is 0 Null Value 3 38 What is the output of the following code? #include<stdio.h> void main() {

int arr[2][3][2]={{{2,4},{7,8},{3,4},}, {{2,2},{2,3},{3,4}, }}; printf("\n%d",**(*arr+1)+2+7); } 16 7 11 Error 1 39 The statement int n[4] = { 11, -13, 17, 105} assigns the value 17 to n[3] is wrong; it gives an error message assigns the value 17 to n[2] assigns the value -13 to n[2] 3 40 What is the output of the following code? #include<stdio.h> void main() { int i; int a[5] = {1,2,3}; for(i=0;i<5;i++) printf("\n%d",a[i]); } No output 1 2 3 garbage garbage 1 2 3 0 0 There is a run t ime error 3 41 What is the output of the following code? #include<stdio.h> void main() { int arr[] = {10,20,30,40,50}; int *ptr = arr; printf("\n %d\t %d\t",*++ptr, *ptr++); } 30 20 30 10 20 30 30 30 2 42 What is the output of the following code ? void main() { int i = 100, j = 200; const int *p=&i; p = &j; printf("%d",*p); } 100 200 300 None of theabove 2 43 void main() { float x[2][3]={{1.1,1.2,1.3}, {2.1,2.2,2.3}}; printf("%1.1f", *(*(x+1))); } What does the printf statement is the above code print 1.1 2.3 2.1 2.2 3 44 #include<stdio.h> void main() { int I,fun1(),fun2(),fun3(); int (*f[3])(); f[0]=fun1; f[1]=fun2; f[2]=fun3; for(I=0;I<3;I++) (*f[I])(); } fun1(){ printf("what");fun2();} fun2(){printf("happened");} fun3(){printf("Tulika");} What is the output of this program? what happened Tulka what happened what happened happened Tulika Error:Invalid pointer assignment 3 45 Interpret the following statement : void(*b)(int *); b is a pointer to a function which takes a pointer to

an int and returns a void invalid statement b is a pointer to a void which can be typecast as a pointer to int b is a pointer of type int which is a pointer to a void 1 46 struct { int acct_no; float balance; } customer, *pc = & customer; The member acct_no can be accessed by a. pc->balance b. *pc->balance c. *pc.balance d. (*pc).balance a and b a and c b and d a and d 4 47 What is the output of the following code? #include<stdio.h> void main() { union result { int marks; char grade; } res; res.marks = 90; res.grade = `A`; printf("\n%d\t%c",res.marks,res.grade); } 90 A garbage A Error garbage garbage 2 48 The memory allocated to the union is equal to Memory needed for storing the largest variable Memory needed for storing the smallest variable Compiler dependent None of these options 1 49 Transform this expression to infix form? AB+C*DE--FG+$ $+*ABC--FGDE$ $+GF--ED*C+BA ((A+B)*C- (D-E))$(F+G) None of theabove 3 50 A _______ is a linear list in which additions and deletions take place at the same end. Stack Queue Linked list None of theabove 1 51 A list of data items usually words or bytes with the accessing restriction that elements can be added or removed at one end of the list, is known as Stack Memory Linked list Heap 1 52 Queue has ------indices 0ne two three none 2 53 Before deleting an element from list we make sure that it is an list it is not a invalid list it is not an empty list it must be full. 3 54 Which of the following is a tabular listing of contents of certain registers and memory location at different times during the execution of a program? Loop program Program trace Subroutine program Byte sorting program 2 55 What is time required to insert an element in a stack with linked implementation? O(1) O(log2n) O(n) O(n log2n) 1 56 What is the output of the following code? #include<stdio.h> void main() { int i=5,j=0; while ( i-- && ++j) { printf ("\n%d\t%d\n",i,j); } } 5 1, 4 2, 3 3, 2 3, 1 4, 4 0, 3 0, 2 0, 1 0, 0 0, 4 1, 3 2

, 2 3, 1 4, 0 5, None of these options 3 57 Why doesn`t /strcat(string, `!`);/ work? Perhaps string doesn`t have enough memory. "!" is not allowed as a character. "!" instead of "!" should be used. None of theabove. 4 58 struct num { int no; char name[25]; }; void main() { struct num n1[]={{25,"rose"},{20,"gulmohar"},{8,"geranium"},{11,"dahalia"}}; printf("%d%d"n1[2].no,(*&n1+2)->no+1); } What is the output of this program? 8 8 8 9 9 8 8 , unpredictable 2 59 What is the output of the following code? #include<stdio.h> void main() { int arr[]={0,1,2,3,4,5,6}; int i,*ptr; for(ptr=arr+4,i =0; i<=4; i++) printf("\n%d",ptr[-i]); } Error 6 5 4 3 2 0 garbage garbage garbage garbage 4 3 2 1 0 4 60 struct time { int hours; int minutes; int second; } t; struct time *tt; tt = &t; Looking at the above declarations, which of the following refers to seconds correctly: tt.seconds (*tt).seconds time.t tt->seco nds 4 61 Default constructor: Requires no parameter Requires at least one parameter Can be overridden None of these options 1 62 Constructors___________ have return value doesn`t have ret urn value always return object of the owner class depends on requirement 2 63 An object has _____. State Behaviour Identity. All of t hese options. 4 64 A derived class Inherits data members and member functions from base class. Inherits constructors and destructor. Object can access protected members with the dot operator. Inherits data members and member functions from base class as well as Inherits constructors and destructor. 1 65 Which is a logical abstract base class for a class called "CricketPlayer"? Bank. Athlete. Sport. Team. 3 66 Complex object composing of other object is called_____? Aggregation. Assosiation. Composition. None of these options 1 67 Inheritance in UML can be represented by: A line with an arrow-head pointing in direction of parent or superclass. Only with a line between base class & derived classes. Diamond shape between

classes. Cannot be represented in UML. 1 68 Which of the following do you think is used to seperate the base classes in a base class list? Comma (,) Colon (:) Semi-colon (;) Tilde (~) 1 69 Inheritance is a way to Pass arguments and improve data hiding. Pass arguments and add features to existing classes without rewriting them. Make general classes into more specific classes and add features to existing classes. Improve data hiding and encapsulation 3 70 According to OOP, What is the kind of relationship we should not have for two classes. Aggregation. Composition. Inheritance. Friend. 1 71 Odoriferous : Smell :: rancid : taste myopic : vision euphonious : sound decrepit : age 3 72 RAIN : DELUGE :: pond : ocean desert : camel ore : ir on street : road 1 73 CONE : PINE :: fruit : berry bulb : flower acorn : oak needle : fir 3 74 Horse : colt :: bird : eaglet child : adult seed : fruit sheep : lamb 4 75 BLUEPRINT : CONSTRUCTION :: itinerary : trip signal : light tenant : premises volume : library 1 76 MANDATORY : OPTIONAL :: pious : indignant competent : inep t opaque : ornate chaste : celibate 2 77 Imitation : Individuality :: determination: success recklessness : courage vanity : conformity debauchery : morality 4 78 INTRANSIGENT : conclusive workable recognizable amenable 4 79 TEMERITY : foolhardiness negligence timidity care 3 80 SALIENT : insignificant climactic worrisome awesome 1 81 The movement to ownership by unions is the latest step in the progression from management ownership. Employee ownership to employee ownership can save depressed and losing companies. All the following statements, if true provide support for the claim above EXCEPT Employee-owned companies generally have higher productive Employee participation in mangaement raises morale Employee union owner drives up salaries and wages Employee union ownership enable worker to share in the profits. 3 82 Rock and roll music started in the 1950s as a young mans medium and rock is still best performed by men in their twenties and thirties. As rock performers grow into their forties and even fifties, they are simply less physically capable of producing the kind of exciting music they did when they were younger. All of the following assumptions underline the argument above EXCEPT: As rock performers mature, their performances tend to become less exciting Rock music is dominated by male performers Women performers have always played a significant role in rock music The physical demands of performing rock are better met by the young 3 83 A politician wrote the following: "I realize there are shortcomings to the questionaire method. However, since I send a copy of the quetionnaire to every home in the district, I believe the results are quite representative.... I think the numbers received are so large that it is quite accurate even though the survey is not done scientifically" Most people who received the questionnaire have replied Most people in the district live in homes. the questionnair

e method of data collection is unscientific A large, absolute number of replies is synonymous with accuracy 4 84 Typically the entrepreneur is seen as an individual who owns and operates a small business. But, simply to won and operate a small business or even a big business does not make someone an entrepreneur. If this person is a true entrepreneur, then new products are being created, new ways of providing services are being implemented. Which of the following conclusion can be best drawn from the above passage. An owner of a large business may be an entrepreneur. Someone who develops an enterprise may be considered an entrepreneur. Entrepreneurs do not own and operate small businesses. Entrepreneurs are the main actors in economic growth. 2 85 During 1985, advertising expenditures on canned food products increased by 20%, while canned food consumption rose by 25%.Each of the following, if true, could help explain the increase in food consumption except: Advertising effectiveness increased. Canned food prices decreased relative to substitutes. Canned food products are available in more stores. Can opener production doubled. 1 86 A worldwide ban on the production of certain ozone-destroying chemicals would provide only an illusion of protection. Quantities of such chemicals, already produced, exist as coolants in millions of refrigerators. When they reach the ozone layer in the atmosphere, their action cannot be halted. So there is no way to prevent these chemicals from damaging the ozone layer further. Which of the following, if true, most seriously weakens the argument above? It is impossible to measure with accuracy the quantity of ozone-destroying chemicals that exist as coolants in refrigerators. In modern societies, refrigeration of food is necessary to prevent unhealthy and potentially life-threatening conditions. Even if people should give up the use of refrigerators, the coolants already in existing refrigerators are a threat to atmospheric ozone. The coolants in refrigerators can be fully recovered at the end of the useful life of the refrigerators and reused. 4 87 Every town with a pool hall has its share of unsavory characters. This is because the pool hall attracts gamblers and all gamblers are unsavory. Which of the following, if true cannot be inferred from the above? All gamblers are unsavory. All pool hallsattract gamblers. Every town has unsavory characters. All gamblers are attracted by pool halls. 3 88 Looking at a potrait, A said "her mother`s only son is my cousin`s father". My cousin is the daughter of my maternal uncle who has an only sister. whose potrait was "A" looking at? A`s Uncle A`s sister A`s grandmohter A`s mother 4 89 Which of the following is an acceptable schedule starting from Monday to Friday? L, M, N, O, P M, N, O, N, M O, N, L, P, M P, O, L, M, L 1 90 If F sits directly opposite L and between K and M, which guest must sit directly opposite M? G H J K 3 91 Which of the following equations can be used to find a number x, if the difference between the square of this number and 21 is the same as the product of 4 times the number? x - 21 = 4x x^2 - 21 = 4x x^2 = 21-4x x + 4x^2 =21 2 92 If x + 1/x = 5, then value of x^3 + 1/x^3 is 125 110 45 75 2 93 The price of 4 rolls, 6 muffins, and 3 loaves of bread at a certain bakery is $9.10. The price of 2 rolls, 3 muffins, and a loaf of bread at the same bakery is $3.90. What is the price of a loaf of bread at this

bakery? $1.10 $1.20 $1.25 $1.30 4 94 The volume of a cube is numerically equal to the sum of its edges. What is its total area in square units? 66 183 36 72 4 95 There are 4 quarts in a gallon. A gallon of motor oil sells for Rs.12 and a quart of the same oil sells for Rs.5. The owner of a rental agency has 6 machines and each machine needs 5 quarts of oil. What is the minimum amount of money she must spend to purchase enough oil ? Rs.84 Rs.94 Rs.96 Rs.102 2 96 If a certain chemical costs Rs.50 for 30 gallons, then how many gallons of the chemical can be purchased for Rs.625? 12.5 24 325 375 4 97 The population of a town increases 4% annually but is decreased by emigration annually to the extent of 1/2%. What will be the increase percent in three years? 10 9.8 10.8 10.5 3 98 An employer reduces the number of employees in the ratio 9:8 and increases the wages in the ratio 14:15. The difference in the amount of the bill, if the earlier bill was Rs.1890, is Rs.92.00 Rs.95.50 Rs.90.00 Rs.94.50 3 99 The towns of Andover and Diggstown are 840 miles apart. On a certain map, this distance is represented by 14 inches. The towns of Lincoln and Charleston are 630 miles apart. On the same map, the distance between them in inches is 9^1/2 10 10.5 11 3 100 If x = K + 1 / 2 and K = 3 / 2, then x = ? 1/2 1 2 5/2 3

*Sample Qestion Paper 03 * *Sr.* *No.* *Question* *Option1* *Option2* *Option3* *Option4* *Answer* 01 The input interfaces transforms the data into _________code hexa binary octal decimal 2 02

The following is not a type of computers Analog Digital Hybrid Logical 4 03 ______ holds data as the CPU works with it. Processor Memory Processor and Memory None of these options 2 04 The connectivity channel between CPU and Memory is________ BUS Cache Memory Control Unit None of these options 1 05 Which of these is an electronic card. Magnetic Strip Card Smart Card ATM Card Punch Card 2 06 The branch that deals with systematic application of the principles of computer science is________ computer engineering software engineering IT engineering

None of these options 2 07 ___________ is a multi tasking system. MS-DOS Unix Linux None of these options 3 08 ________ is used by operating system to map file names to their corresponding file attributes and file data, and also to provide greater flexibility to users in file naming Directories Diary Paging File 1 09 ______ is the smallest unit of data Frame Header Byte Bit 4 10 The job of the _____ layer in OSI model is to provide node-to-node communication and to hide all the details of the communication subnet from the session layer. Data-Link Physical Transport Presentation 3

11 Which of these keys belong to QWERTY keyboard Numeric Keypad null Alphanumeric Keys All of these options 4 12 ______is collection of the facts or informational raw material and become information after processing. Data Database Computer Main Memory 1 13 SCSI Interface helps in Extends the computer`s Bus outside the computer Analog to Digital and Digital to Analog Conversions Projects information from a computer on a large screen It is an Interface unit between I/O device and Ports 1 14 Which of these is not a output device. Monitor Plotter Keyboard COM 3 15 _______ is not a network type DAN WAN

LAN MAN 1 16 _____ contains the addresses of all the records according to the contents of the field designed as the record key. Index Subscript Array File 1 17 A sequence of precise and un ambiguous instructions for solving a problem in a finite number of operation is___________ ALGOL Algorithm Procedure None of these options 2 18 ___________ symbol is used to show data transmission from one location to other. Annotation Offline Storage Merge CommunicationLink 4 19 __________ is the analysis tool used for planning program logic Protocol None of these options PROLOG Pseudocode

4 20 A language which allows instructions to be represented by letters (i.e abbrevation) is_______ Machine language Assembly Language Scientific Language Programming language 2 21 Language wherein Encapsulation and Abstraction of data is done is called as: Assembly Language Object oriented programming Language Pascal language Cobol 2 23 During system evolution __________ is to be considered Time analysis Ease of maintenance Failure rate All of these options 4 24 The errors that occur in computer program is________ Syntax error Logical error Syntax error and Logical error None of these options 3 25 Standard methods of organizing data are: File-oriented approach

Database-oriented approach File-oriented approach and Database-oriented approach Object Oriented approach 3 26 A file management system typically supports the following types of files, EXCEPT: Transaction file Storage file Master file Backup file 2 27 Which of the following are keywords of the "C" language? ii.else iii.then iv.elseif All are keywords only i,ii and iii are keywords only i,ii and iv are keywords only i and ii are keywords 2 28 All of the following are C basic data types except: int float char Union 4 29 void main() { int A=0, B=0, C=0, D=0; if((A==B)&&(A*B<=B)) { if(D==1) C=1; else if(A==1) C=2; } else C=3; if((B==0)&&(A==B)&&(A!=1)) D=1; } What are the final values of C and D? 1 0 0 0 i.if

0 1 1 1 3 30 Which statement sets the 3rd lowermost bit of an unsigned integer x to 0, leaving other bits unchanged? ^3; x|(~3); x&(~3); x&3; 4 31 What is the output of the following code? void main() { a=0, b=2, x=4, y=0; printf("\n%d\t,",(a==b)); printf("\n%d\t,",(a!=y)); printf("\n%d\t,",(b<=x)); printf("\n%d\t,",(y > a)); } 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 4 32 What is the output of the following code? #include<stdio.h> void main() { char str1[]="India", str2[]="India"; if(str1==str2) printf("\nBoth the string are same"); else printf("\nBoth the string are not same"); } Both the string are same Both the string are not same Compile Time error Runtime Error 2 33 What is the output of the following code? #include<stdio.h> void main() { int a = 0; printf("\n %d\t", (a = 10/a)); } 0 1 int

Compile Time error Runtime Error 4 34 What is the output of the following code? #include<stdio.h> void main() { int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("\n%d\t",s); } } 1 2 3 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 4 5 6 7 8 9 3 35 The break statement is used to exit from: an if statement a for loop a program the main() function 2 36 I have a function extern int f(int *); which accepts a pointer to an int. How can I pass a constant by reference? f(&5); int five = 5; f(&five); int five = 5; f(five); f(5); 1 37 What is the output of the following code? #include <stdio.h> main() { void swap(); int x=10, y=8; swap(&x, &y); printf("x=%d y=%d",x,y); } void swap(int *a, int *b) { *a ^= *b, *b ^= *a, *a ^= *b; } x=8 y=10 x=10 y=8 Null value

Error 1 38 Recursive Functions Are necessary to solve a certain class of problems Take less main storage space Are executable faster than iterative ones None 1 39 What is the output of the following code? #include<stdio.h> void main() { int arr[2][3][2]={{{2,4},{7,8},{3,4},}, {{2,2},{2,3},{3,4}, }}; printf("\n%d",**(*arr+1)+2+7); } 16 7 11 Error 1 40 What is the difference between the 5`s in these two expressions? num[5]; num[5]; first is particular element, second is type first is array size, second is particular element first is particular element, secondis array size both specify array size 2 41 How can I dynamically allocate a two-dimensional array? int **array1 = (int **)malloc(nrows * sizeof(int *)); for(i = 0; i < nrows; i++) array1[i] = (int *)malloc(ncolumns * sizeof(int)); int **array2 = (int **)malloc(nrows * sizeof(int *)); array2[0] = (int *)malloc(nrows * ncolumns * sizeof(int)); for(i = 1; i < nrows; i++) array2[i] = array2[0] + i * ncolumns; int *array3 = (int *)malloc(nrows * ncolumns * sizeof(int)); Any of the above. int

1 42 #include<stdio.h> void main() printf("%u",***(&(*(&Q)))); } value of p is printed address of p is printed value of I is printed address of I is printed 3 43 What is the output of the following code? #include<stdio.h> void main() { int arr[]={0,1,2,3,4,5,6}; int i,*ptr; for(ptr=arr+4,i =0; i<=4; i++) printf("\n%d",ptr[-i]); } Error 6 5 4 3 2 0 garbage garbage garbage garbage 4 3 2 1 0 4 44 This pointer for any class internally declared as int *this; X *thid; const X *this; X *const this; 4 45 #include<stdio.h> void prg(int); main() { int a=10,j=3,i=2; prg(a); a*=( i + j ); printf("%d",a); } void prg(x) { int x; int k=2; x*=k; return (x); } What is the output of this program? 10 20 50 None of these 3 { int I=10,*p=&I,**q=&p; What is the output of this program?

46 Consider the program segment given below. (The italicized numbers represent program line numbers) : 1. #include<stdio.h> 2. int y; 3. void main() 4. { 5. int x,*px,**ppx;void f1(int *); 6. x = 10; 7. y = 1000; 8. px = &x; 9. ppx = &px; 10. f1(px); 11. printf("%d",*px); 12. } 13. void f1(int *p) 14. { 15. *p = 20; 16. printf("%d",*p); 17. } The printf() at line 11 prints the value: 10 1000 20 None of these options 3 47 Consider the declaration : struct sample { unsigned int a; unsigned int b; }; struct sample v; The size of v.b is 1 bit 6 bits 5 bits None of the above 4 48 The correct way for a structure in C to contain a pointer to itself is typedef struct { char *item; NODEPTR next; } *NODEPTR; struct node { char *item; struct node *next; }; typedef struct node *NODEPTR; Both are correct. None of above. 2 49 The main purpose of declaring a union. To allow the same storage location to store data of different data types at different times. To use it instead of structure To allow the same storage location to storedata of differentdata types at the same time. None of the above

1 50 The operation for adding an entry to a stack is traditionally called: Add Append Insert Push 4 51 Pushdown list means: Stack Queue Linked list All of the above 1 52 Stack is not used in Recursion Quick Sort Postfix Notation Simulation 4 53 When is linear queue said to be empty ? Front==rear Front=rear-1 Front=rear+1 Front=rear+1 1 55 Queue has ------indices 0ne two

three none 2 56 In case of a linked list Every link node has a pointer to the next link code Links have arrays of pointer to next link Arrays are used to hold the list All of the above 1 57 How can I print a `%` character in a printf format string? I tried \%, but it didn`t work. Try \% Try %% Try $% None of these options 2 58 #include<stdio.h> void prg(int); main() { int a=10,j=3,i=2; prg(a); a*=( i + j ); printf("%d",a); } void prg(int x) { int k=2; x*=k; return (x); } What is the output of this program? 10 20 50 None of these options 3 59 What will happen if you try to put so many values into an array when you initialize it that the size of the array is exceeded? Nothing Possible system malfunction Error message from the compiler Other data may be overwritten

3 60 What is the output of the following code? #include<stdio.h> void main() { int x=25, y=50, z=75, *ptr; ptr = &x; *ptr *=2; ptr = &y; *ptr *=3; ptr = &z; *ptr *=4; printf("\n %d\t %d\t %d\t", x, y ,z); } Error 50 150 600 50 150 300 50 75 100 3 61 What is the output of the following code : #include<stdio.h> void main() { extern int out; printf("%d",out); } int out=100; Run time error Compile time error 100 Garbage value 3 62 What is the output of the following code? #include<stdio.h> void main() { int a = 20,b=100; int &n = a; n=a++; n = &b; printf("\n%d, %d",a, n); } 21, 21 20, 21 21, 22 Error 4 63 Encapsulation is Information hiding Data Binding Information hiding and Data Binding None of these options 3

64 If constructor is not provided then Compiler will not compile the class Object creation is not possible All Objects data will be stored in same memory area so overwriting of data will happen Default constructor will be provided 4 65 The use of constructor is ______. to initialize the objects of it`s class. to allocate memory for the objects of it`s class only To initialize the objects of it`s class as well as to allocate memory for the objects of it`s class None of these options. 1 66 __________ is the capability to share and extent the functionality of an existing class. Polymorphism. Inheritance. Abstraction. Both Polymorphism and Inheritance 2 67 Inheritance through interface is called ________. Implementation inheritance. Definition inheritance. Delegation inheritance. Interface inheritance model. 2 68 Complex object composing of other object is called_____ Aggregation

Assosiation Composition None of these options 1 69 The (+) sign and (-) sign to the left of the attributes & methods signify: Whether the methods & attributes are public or private. Whether the methods & attributes are global or local. Whether the methods & attributes are overloaded or overridden. Used only with attributes not with methods.. 1 70 Which are the main three features of OOP language? Data Encapsulation, Inheritance & Exception handling Inheritance, Polymorphism & Exception handling Data Encapsulation, Inheritance & Polymorphism Overloading, Inheritance & Polymorphism 3 71 Which of the following programming technique focuses on the algorithm. Procedural language Object oriented language Object based language Structural language 1 72 A derived class Inherits data members and member functions from base class. Inherits constructors and destructor. Object can access protected members with the dot operator. Inherits data members and member functions from base class as well as Inherits constructors and destructor.

1 73 IGNOMINY : DISLOYALTY :: fame : heroism death : victory derelict : fool martyr : man 1 6 Polymorphism. 8 Overloading 2 Both Inheritance & Overloading

85 The gateway of india is in mumbai mumbai is in maharashtra thereforethe gateway of india is in maharashtra false cannot say true probably false 3 86 sushil is the son of the teacher. mohan is the teacher and he has a son and daughter therefore mohan is the father of sushil definitely true probably true cannot say probably false 2 87 Prof. Tembel told his class that the method of student evaluation of teachers is not valid measure of teaching quality. Students should fill out questionnaires at the end of the semester when courses have been

completed. Which of the following, if true, provides support for Prof. Tembel`s proposal ? Prof. Tembel received low rating from his students. Students filled up the questionnaire after the midterm exam. Students are interested in teachers evaluation. Teachers are not obligated to use the survey results. 2 88 The Pistons points than points. The true, which have more points than the Nuggets. The Bullets have less the Lakers. The Nuggets and the Suns have the same number of Suns have more points than the Bullets. If the above is of the following must also be true?

The Pistons have more points than the Bullets. The Nuggets have fewer points than the Lakers. The Lakers have more points than the Pistons. 1 89 A person hearing this advertisement countered, being overweight is always caused by unhappiness and unattractiveness being overweight is the only cause of unhappiness and unattractiveness unhappiness and unattractivenesscan cause someone to be overweight unhappiness necessarily leads to being overweight 2 90 If the 2nd and 4th saturdays and all sundays are declared holidays ,what would be the minimum no of working days of any month of any year 24 25 23 22 4 91 If G sits at the head of the table, and F in the middle seat on one side of the table and immediately on K`s left, the guest seated directly opposite F must be

G H J L 3 92 An employment questionnaire asks the prospective employee, "If XYZ company hires you, will you continue to use drug?" The prospective employee may not wish to indicate "yes" or "no" because 1. a simple "yes" or "no" answer could indict the applicant. 2. The question contains an implication to which the applicant may not wish to lend credence. 3. The question presents a moral judgment. 1 only 2 only 1 and 2 only 2 and 3 only 3 93 If the operation * is defined by *a = a^2 - 2, then *(*5) is 23 527 529 623 2 94 On the number line shown, which point corresponds to the number 2.27? I H G F 3 95 It is between 10 and 11 that the hour and minute hands of a watch are exactly coincident. What is the time? 56 mts. past 10

54 6/11 mts. past 10 35 6/11 mts. past 10 57 6/11 past 10 2 96 A trapezium ABCD is formed by adding the rectangle ABEF whose area is 6 sqr. inches and two right triangles AFD and BEC equal in area of t sq.inches. What is the area of the trapezoid in square inches? 2t + 6 5t + 25 2.5t + 12.5 (t + 5)^2 1 97 A manufacturer of jam wants to make a profit of Rs.75 when he sells 300 jars of jam. It costs 65 paise each to make the first 100 jars of jam and 55 paise each to make each jar after the first 100. What price should he charge for the 300 jars of jam ? Rs.175 Rs.225 Rs.240 Rs.250 4 98 By selling 12 marbles for a rupee, a shopkeeper loses 20%. In order to gain 20% in the transaction he should sell the marbles at the rate of how many marbles for a rupee? 8 6 4 3 1 99 To a sugar solution of 3 liters containing 40% sugar one liter of water is added. The percentage of sugar in the new solution is 33

30 15 None of the above. 2 You Find More Computer notes <http://ecomputernotes.com/> Posted 11th January 2012 by Jyoti <http://www.blogger.com/profile/16619837385207608613> 0 Add a comment Add a comment <javascript:;> No more comments <javascript:;> Followers Followers Blog Archive Blog Archive * 2012 <http://jyoticomputernotes.blogspot.in/search?updated-min=2012-01-01T00:00:0 0-08:00&updated-max=2013-01-01T00:00:00-08:00&max-results=7>7 o May <http://jyoticomputernotes.blogspot.in/2012_05_01_archive.html>3 + How Many Type of Control Statement in Java <http://jyoticomputernotes.blogspot.in/2012/05/normal-0-microsoftint ernetexplorer4_6310.html> + What is the difference between Procedural and Obje... <http://jyoticomputernotes.blogspot.in/2012/05/normal-0-microsoftint ernetexplorer4_28.html> + Computer Terms <http://jyoticomputernotes.blogspot.in/2012/05/normal-0-microsoftint ernetexplorer4.html> o January <http://jyoticomputernotes.blogspot.in/2012_01_01_archive.html>4 About Me About Me Jyoti <http://www.blogger.com/profile/16619837385207608613> My Photo <http://www.blogger.com/profile/16619837385207608613> Loading Send feedback <http://www.google.com/support/forum/p/blogger> Dynamic Views template. Powered by Blogger <http://www.blogger.com>.

Das könnte Ihnen auch gefallen