0% found this document useful (0 votes)
13 views5 pages

STD: Xi MARKS: 50 Subject: Computer Science Time: 45 Mins Choose The Best Answer

Uploaded by

padmashinipmhss
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views5 pages

STD: Xi MARKS: 50 Subject: Computer Science Time: 45 Mins Choose The Best Answer

Uploaded by

padmashinipmhss
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

STD: XI MARKS: 50

SUBJECT: COMPUTER SCIENCE TIME: 45 MINS

CHOOSE THE BEST ANSWER:-

1. Commercial programs made available to the public illegally are


known as
a) Freeware b) Warez c) Free software d) Software
2. Name the volatile memory?
a) ROM b) PROM c) RAM d) EPROM
3. How many characters can be handled in Binary Coded Decimal
System?
a) 64 b) 255 c) 256 d) 128
4. For 11012 what is the Hexadecimal equivalent?
a) F b) E c) D d) B
5. 2^50 is referred as
a) Kilo b) Tera c) Peta d) Zetta
6. What is the 1‘s complement of 00100110?
a) 00100110 b) 11011001 c) 11010001 d) 00101001
7. Which one of the following is the main memory?
a) ROM b) RAM c) Flash drive d) Hard disk
8. How many bytes does 1 Kilo Byte contain?
a) 1000 b) 8 c) 4 d) 1024
9. NAND is called as ________ Gate
a) Fundamental Gate b) Derived Gate
c) Logical Gate d) Electronic gate
10. Which of the following is not the part of a microprocessor unit?
a) ALU b) Control unit c) Cache memory d) register
11. Which generation of computer used IC‘s?
a) First b) Second c) Third d) Fourth
12. Which of the following is a CISC processor?
a) Intel P6 b) AMD K6 c) Pentium III d) Pentium IV
13. Which is the fastest memory?
a) Hard disk b) Main memory c) Cache memory d) Blue-Ray
disc
14. Operating system is a
a) Application Software b) Hardware
c) System Software d) Component
15. Which of the following OS is a commercially licensed Operating
system?
a) Windows b) UBUNTU c) FEDORA d) REDHAT
16. The Shortcut Key used to rename a file in Windows?
a) F2 b) F4 c) F5 d) F6
17. Which of the following activities is algorithmic in nature?
a) Assemble a bicycle.
b) Describe a bicycle.
c) Label the parts of a bicycle.
d) Explain how a bicycle works.
18. Omitting details inessential to the task and representing only the
essential features of the task is known as
a) Specification b) Abstraction
c) Composition d) Decomposition
19. What was the original name given to C++?
a) CPP b) Advanced C c) C with Classes d) Class with C
20. The smallest individual unit in a program is:
a) Program b) Algorithm c) Flowchart d) Tokens
21. Which of the following operator is extraction operator of C++?
a) >> b) << c) <> d) ^^
22. Which of the following is called as compile time operators?
a) sizeof b) pointer c) virtual d) this
23. How many categories of data types available in C++?
a) 5 b) 4 c) 3 d) 2
24. Which of the following data types is not a fundamental type?
a) signed b) int c) float d) char
25. Which of the character is used as suffix to indicate a floating point
value?
a) F b) C c) L d) D
26. Which operator to be used to access reference of a variable?
a) $ b) # c) & d) !
27. The multi way branching statement:
a) if b) if … else c) switch d) for
28. Which function is used to check whether a character is
alphanumeric or not.
a) isalpha() b) isdigit() c) isalnum() d) islower()
29. Which is return data type of the function prototype of add(int,
int);?
a) int b) float c) char d) double
30. Which of the following is the scope operator?
a) > b) & c) % d) ::
31. Which of the following is the collection of variables of the same
type that are referenced by a common name?
a) int b) float c) Array d) class a) int b) float c) Array d) class
32. int age[]={6,90,20,18,2}; How many elements are there in this
array?
a) 2 b) 5 c) 6 d) 4
33. cin>>n[3]; To which element does this statement accepts the
value?
a) 2 b) 3 c) 4 d) 5
34. By default, the string ends with which character?
a)\0 b) \t c) \n d) \b
35. The term is used to describe a programming approach based on
classes and objects is
a) OOP b) POP c) ADT d) SOP
36. Which of the following is a user defined data type?
a) Class b) Float c) Int d) Object
37. The identifiable entity with some characteristics and behavior is.
a) Class b) Object c) Structure d) Member
38. The mechanism by which the data and functions are bound
together into a single unit is known as
a) Inheritance b) Encapsulation c) Polymorphism d) Abstraction
39. Which of the following is the most important advantage of
inheritance?
a) Data hiding b) Code reusability c) Code modification d)
Accessibility
40. Write once and use it multiple time‖ can be achieved by
a) Redundancy b) Reusability c) Modification d) Composition

41. Legal recognition for transactions are carried out by

a) Electronic Data Interchange b) Electronic Data Exchange


c) Electronic Data Transfer d) Electrical Data Interchange
42. The variables declared inside the class are known as data members
and the functions are known as
a) Data functions b) Inline functions c) Member Functions d)
attributes
43. A member function can call another member function directly,
without using the dot operator called as
a) Sub function b) Sub member
c) Nesting of member function d) Sibling of member function
44. The member function defined within the class behave like
a) Inline functions b) Non inline function
c) Outline function d) Data function
45. Which of the following Access Specifier protects data from
inadvertent modifications?
a) Private b) Protected c) Public d) Global

class x
{
int y;
public:
x(int z)
{
y=z;
}
} x1[4];
int main()
{
x x2[10];
return 0;
}

46. How many objects are created for the above program
a) 10 b) 14 c) 5 d) 2

47. Which of the following constructor is executed for the following


prototype?
add display( add &); // add is a class name
a) Default constructor b) Parameterized constructor
c) Copy constructor d) Non Parameterized constructor
48. Which of the following refers to a function having more than one
distinct meaning?
a) Function overloading b) Member overloading
c) Operator overloading d) Operations overloading
49. Which of the following reduces the number of comparisons in a
program?
a) Operator overloading b) Operations overloading
c) Function overloading d) Member overloading
50. The type of inheritance that reflects the transitive nature is
a) Single Inheritance b) Multiple Inheritance
c) Multilevel Inheritance d) Hybrid Inheritance

You might also like