MCQs CS ALL2023-24
MCQs CS ALL2023-24
14.Tautology means
a) logical statement is always false b) logical statement is always true
c) logical statement true and false d) none of the above
15.Fallacy means
a) logical statement is always false b) logical statement is always true
c) logical statement true and false d) none of the above
16.Another name of Boolean algebra is
a) Switching algebra b) Relational algebra c) Logical algebra d) None of the above
17.Canonical Sum of Product expression represented using _________symbol
a) $ b) π c) & d) ∑
18.Canonical Product of Sum expression represented using _________symbol
a) $ b) π c) & d) ∑
19.Minterm notation of XYZ is _____________
a) m7 b) M7 c) m5 d) M5
20.A K-Map of n variables is made up of_________number of squares
a) 2n b) 3n c) 4n d) 5n
21.TheMaxterm notation for the expression X+Y’+Z
a) m2 b) m5 c) M2 d) M5
22.According to Boolean law 1+X=_____
a) 0 b) 1 c) X d) None
23.The X+X.Y=X is______
a) Associate Law b) Involution Law c) Complementarity Law d) Absorption Law
24.In a K-map a group of 4variables is called____
a) Quad b) Pair c) Octet d) None of the above
25.In a K-map a group of 8variables is called____
a) Quad b) Pair c) Octet d) None of the above
26.Who invented(developed) Boolean Algebra ?
a) Charles Babbage b) George Boole c) Blaise Pascal d) Dr.Herman Hollerith
27.Find the minterm notation for X=0, Y=1, Z=0
a) m2 b) M3 c) M2 d) m4
28.In Reduction rule, Quad removes______variables from four variables K-map.
a) 4 b) 2 c) 3 d) 1
29.In Reduction rule, Octet removes______variables from four variables K-map.
a) 4 b) 2 c) 3 d) 1
30.In Reduction rule, Pair removes______variables from four variables K-map.
a) 4 b) 2 c) 3 d) 1
31.Karnaugh Map used to_____
a) Boolean expression b) Reduce an expression c) Addition expression d) Logical expression
32. The X+X=X is____________
a) Involution Law b) Indempotence Law c) Commutative Law d) Associative Law
33.In a K Map a Group of four variables is called
a) Pair b) Octet c) Quad d) None of above
34.In a K Map a Group of eight variables is called
a) Pair b) Octet c) Quad d) None of above
35.According to Complimentary law X+X’=__________
a) 1 b) 0 c) Either o or 1 d) None of above
36.Involution law states that [M-23]
a) (X’)’=X b) X.X=X c) X+X=X d) (X’)’=0
37.The Boolean algebra is also called__________ [J-23]
a) Variable b) Switching algebra c) Operator d) Digital algebra
II PUC COMPUTER SCIENCE (41) MCQs CHAPTER WISE MOST IMP QUESTION & ANSWER
12.Advantages of inheritance is
a) Reusing existing code b) Easy to extend c) Memory utilization d) All the above
13.Symbol used while defining derived class
a) : : b) ; c) . d) :
14.Which type of class is designed only to act a base class?
a) Abstract class b) Virtual class c) Derived class d) None of these
15.__________inheritance is a combination of Hierarchiacal and Multilevel inheritance
a) Hybrid b) Hierarchical c) Multiple d) All of these
16.What is the other name of Hybrid inheritance
a) Single inheritance b) Virtual Inheritance c) Multiple Inheritance d) All of above
17.If no visibility mode is specified then by default the visibility mode is considered as__
a) Private b) Protected c) Public d) Explicit
18._________class is one that is not used to create an object
a) Virtual b) Abstract c) Derived d) Private
19.The ______basically controls the access specifier to be for inheritance member of base
class in the derived class
a) Overloading b) Visibility mode c) Inheritance d) Polymorphism
20.Which inheritance indicates this example?
Grand father
Father
Son
a) Single b) Multiple c) Multilevel d) Hierarchical
21.Which is the default visibility mode?
a) Protected b) Private c) Public d) None of the above
22.Which operator is used in defining derived class?
a) dot(.) operator b) ~ operator c) : operator d) :: operator
23.If a class is derived from more than one base class, it is known as___
a) Single level inheritance b) Multilevel inheritance
c) Multiple inheritance d) Hybrid inheritance
24. A pre-existing class is called____
a) base class b) derived class c) sub class d) new class
25.A class which is created from base class is called
a) base class b) super class c) derived class d) preexisting class
26. A combination of 2 or more type of inheritance is
a) single level b) multi level c) hybrid inheritance d) hierarchical inheritance
27.Derived class is called___________ [M-23]
a) Sub class b) Super class c) Main class d) First class
28.If a class is derived from a single base class it is called as_____inheritance.[J-23]
a) single b) multilevel c) multiple d) hierarchical
II PUC COMPUTER SCIENCE (41) MCQs CHAPTER WISE MOST IMP QUESTION & ANSWER
CH11: POINTERS(MCQs)-Q#9
1.The variable which stores the address of another variable.
a) Arrays b) Pointers c) Files d) All of the above
2.Address operator symbol is
a) * b) + c) - d) &
3.Which of the following operator is used to declare pointer?
a) & b) * c) + d) =
4.Which of the following operator is used to address-of operator in pointer?
a) & b) * c) + d) =
5.How do you declare a pointer?
a) datatype *pointer_variable; b) datatype &pointer_variable;
c) datatype normal_variable; d) datatype variable_name;
6.Pointer is used to store
a) Memory address b) Value c) Data d) Information
7.Which of the following is the correct way to declare a pointer?
a) int *ptr; b) int ptr; c) int &ptr; d) All of the above
8.Which of the following operator is used to initialize pointer?
a) * b) & c) = d) ~
9.Memory allocated during runtime is memory allocation
a) Compile time b) Dynamic c) Static d) None of the above
10.New operator is used to create memory during
a) Compile time b) Runtime c) Static time d) None of the above
11.Operator is used delete memory created during run time
a) new b) delete c) NOT d) AND
12.Which of the following is the correct way to declare array of pointers?
a) int *ptr; b) int &ptr; c) int ptr[5]; d) int *ptr[5];
13.Which of the following is the correct syntax to declare a pointer?
a) datatype &var; b) datatype *var; c) datatype var; d) None of these
14.Which of the following is the correct way to declare a pointer variable?
a) int ptr; b) int *ptr; c) int *&ptr; d) int &ptr;
15.Dynamic memory is allocated during_______
a) Runtime b) Compile time c) Variable declaration time d) Debugging
16.The Memory allocated during the compilation time is
a) Static memory b) Random memory c) Dynamic memory d) Synchronous memory
17.In the dynamic memory allocation the amount of memory to be allocated is:
a) Pre known b) At run time c) At compile time d) None of these
18.Which symbol is used to capture the address into a pointer?
a) * b) & c) % d) ~
19.What is the other name of free store
a) Heap memory b) Static memory c) Dynamic memory d) None of these
20. The memory allocated during runtime
a) Static b) Dynamic c) Free Space d) Memory Leak
21.Which of the following is the correct way to declare a pointer? [M-23]
a) int *ptr b) int ptr c) int &ptr d) All of the above
22._________operator is used to free dynamic memory. [J-23]
a) new b) delete c) double d) memory leak
II PUC COMPUTER SCIENCE (41) MCQs CHAPTER WISE MOST IMP QUESTION & ANSWER
5.A Software that is neither open nor freely available is called as____
a) OSS b) FLOSS
c) Proprietary software d) Freeware
6.Which is not a type of e-commerce?
a) B2B b) B2C c) B2D d) C2B
7.What does URL stands for? (or) URL stands for__?
a) Uniform Resource Locator b) Uniform Resource Latch
c) Universal Resource Locator d) Universal Resource Latch
8.Which of the following is a web browser?
a) HTML b) DHTML c) XML d) None of the above
9.The software is freely accessible and can be freely used is
a) Free software b) Proprietary software
c) Community software d) Priority software
10._____________navigates through the world wide web(www) and display webpages
a) Web browser b) Website c) Web server d) URL
11.FLOSS stands for?
a) Free Libre/Livre and Open-Source Software b) Free Live and Open-Source Software
c) Free Level and Open-Source Software d) All of the above
12.The general syntax for URL is:
a) type://address/path b) type://address//path
c) type://address://path d) None of the above
13.The services of e-commerce is
a) E-Mail b) E-Banking c) Digital Cash d) All of the above
14.Which of the following software is provided to user on limited trail basis?
a) Shareware b) FLOSS c) Freeware d) Free Software
15.What is the other name for shareware?
a) Trailware b) Freeware c) Hexaware d) None of these
16._____is the trade of goods and services with the help of telecommunication and computer
a) E-Commerce b) E-Mail c) E-Banking d) Digital Cash
17.Software licensed under exclusive legal rights of the copy right holder.
a) Proprietary software b) Free software
c) Open-source software d) All the above
18.Which of the following is not related to shareware?
a) Source code not available b) Modification to the software are not allowed
c) Software is completely free of cost d) All of the above
19.___________is a collection of computer networks all over the world.[M-23]
a) Intranet b) Internet c) Telnet d) Interspace
20.The documents residing on websites are called_________[J-23]
a) Web server b) Web pages c) Web browser d) Free software
CH17: WEB DESIGNING(MCQs)- Q#15
1.The tag is used for underlining the text
a) <B> b) <U>
c) <I> d) <P>
2.Collection of web pages is called_____
a) Folder b) File c) Website d) Word Document
3.The tag which is used to resize the text
a) <B> b) <H1> c) <U> d) <P>
II PUC COMPUTER SCIENCE (41) MCQs CHAPTER WISE MOST IMP QUESTION & ANSWER
Answer: 16. Database 17. attribute, 18. redundancy, 19. Table 20.data mining,
Answer: 16. Hierarchical model 17. Number, 18. Database, 19. Record, 20. Primary Key
Answer: 16. Data ,17. Tuple, 18. Oracle,19. Data Independence, 20. Data Warehouse,
Answer: 16. Information, 17. Database, 18. One tier,19. Primary, 20. Data
warehouse
Answer: 16. Tuple,17. Field,18. Table, 19. Primary Key, 20. File
Answer: 16. Record, 17. Attribute, 18. Domain, 19. Entity, 20. Tuple
Answer: 16. Entity, 17. Data mining, 18. string,19.ER diagram, 20.end users,
Answer: 16. E-R Diagram,17. Table, 18. Metadata ,19.Fields, 20. Security
Answer: 16.Schema, 17. Redundancy, 18. Tuple, 19. Security, 20. Primary Key
II PUC COMPUTER SCIENCE (41) MCQs CHAPTER WISE MOST IMP QUESTION & ANSWER