Chapter 4: Pointers | class 12th | mcqs of computer science

Pointers-mcqs


1. What is the base data type of a pointer variable by which the memory would be allocated to it?

a) int
b) float
c) No datatype
d) Depends upon the type of the variable to which it is pointing
e) unsigned int
View Answer

Answer: E
No explaination is given for this question.


2. Prior to using a pointer variable it should be

a) Declared
b) Initialized
c) Both declared and initalized
d) None of these
View Answer

Answer: C
Using a pointer variable, without initializing it, will be disastrous, as it will have a garbage value.


3. In C a pointer variable to an integer can be created by the decalaration

a) int p*;
b) int *p;
c) int +p;
d) int $p;
View Answer

Answer: B
No explaination is given for this question.


4. A pointer variable can be

a) Passed to a function
b) Changed within a function
c) Returned by a function
d) Can be assigned an integer value
View Answer

Answer: C
No explaination is given for this question.


5. What will be the output of the following C code?
void main() {
  int a[] = {1,2,3,4,5}, *p;
  p = a;
  ++*p;
  printf("%d ", *p);
p += 2;
  printf("%d ", *p);
}

a) 24
b) 34
c) 22
d) 23
View Answer

Answer: D
No explaination is given for this question.


6. What is the output of the following C code?
  char *ptr;
  char mystring[] = "abcdefg";
  ptr = myString;
  ptr += 5;

a) fg b) efg c) defg d) cdefg e) bcdefgView Answer

Answer: A
No explaination is given for this question.


7. Will this program compile?
int main() {
  char str[5] = "LetsFind";
  return 0;
}

a) True
b) False
View Answer

Answer: A
C doesn’t do array bounds checking at compile time, hence this compiles.But, the modern compilers like Turbo C++ detects this as ‘Error: Too many initializers’.GCC would give you a warning.


8. Is the NULL pointer same as an uninitialised pointer?

a) True
b) False
View Answer

Answer: B
No explaination is given for this question.


9. Which of the following statements correct about k used in the below statement?
char ****k;

a) k is a pointer to a pointer to a pointer to a char
b) k is a pointer to a pointer to a pointer to a pointer to a char
c) k is a pointer to a char pointer
d) k is a pointer to a pointer to a char
View Answer

Answer: B
k is a pointer to a pointer to a pointer to a pointer to a char.


10. What will be the output of the program.
char *p = 0;
char *t = NULL;

a) Yes
b) No
View Answer

Answer: B
NULL is #defined as 0 in the ‘stdio.h’ file. Thus, both p and t are NULL pointers

Read More

Chapter 3: Data File Handling | class 12th | mcqs of computer science

File Handling MCQ Questions Class 12 Computer Science with Answers

Question: Storage devices of a computer can be broadly classified into_______categories.

  • a) One
  • b) Two
  • c) Three
  • d) Four

Answer: Two

Question: _______storage is temporary.

  • a) Volatile
  • b) Non-volatile
  • c) Movable
  • d) Immovable

Answer: Volatile

Question: In_______storage values stored in variables are lost when a computer is shutdown.

  • a) Volatile
  • b) Non-volatile
  • c) Movable
  • d) Immovable

Answer: Volatile

Question: A Java program that stores a value in a________uses Random Access Memory (RAM).

  • a) Cell
  • b) Program
  • c) Variable
  • d) All of these

Answer: Variable

Question: Apart from variables, objects and their references are generally stored in______

  • a) ROM
  • b) PROM
  • c) RAM
  • d) Hard Disk

Answer: RAM

Question: Once the program terminates or the computer shuts down, the data is________from RAM.

  • a) Stored
  • b) Lost
  • c) Available
  • d) Accessible

Answer: Lost

Question: _______storage is permanent storage.

  • a) Volatile
  • b) Non-volatile
  • c) Movable
  • d) Immovable

Answer: Non-volatile

Question: Data is not_______when a computer loses power in a Non-volatile storage.

  • a) Stored
  • b) Lost
  • c) Available
  • d) Accessible

Answer: Lost

Question: When a Java program is saved on a disk, it is using______storage.

  • a) Temporary
  • b) Provisional
  • c) Conditional
  • d) Permanent

Answer: Permanent

Question: A computer_______is a collection of data stored on a non-volatile device.

  • a) File
  • b) Desktop
  • c) Directory
  • d) Device

Answer: File

Question: _______exist on permanent storage devices, such as hard disks, USB drives, optical disks and compact discs.

  • a) Files
  • b) Manuals
  • c) Directories
  • d) Devices

Answer: Files

Question: Data stored in files is often called_______data.

  • a) Text
  • b) Persistent
  • c) Informative
  • d) Binary

Answer: Persistent

Question: Files can be further classified broadly into_______categories.

  • a) One
  • b) Two
  • c) Three
  • d) Four

Answer: Two

Question: ______files contain data that can be read in a text editor.

  • a) Text
  • b) Manuscript
  • c) Memo
  • d) Binary

Answer: Text

Question: In the_______files the data has been encoded using a scheme such as ASCII or Unicode.

  • a) Text
  • b) Memo
  • c) Informative
  • d) Binary

Answer: Text

Question: ______files can be data files that contain facts, such as payroll file that contains employee numbers, names and salaries.

  • a) Binary
  • b) Memo
  • c) Program
  • d) Text

Answer: Text

Question: Some_______files can be program files or application files mat store software instructions.

  • a) Binary
  • b) Memo
  • c) Program
  • d) Text

Answer: Text

Question: are examples of editors through which text files can be created.

  • a) G edit
  • b) vi
  • c) pico
  • d) All of these

Answer: All of these

Question: The extensions of the files created through the above editor can have an extension like_________

  • a) Text
  • b) Java
  • c) C
  • d) All of these

Answer: All of these

Question: _____files contain data that has not been encoded as text.

  • a) Binary
  • b) Memo
  • c) Informative
  • d) Text

Answer: Binary

Question: The contents of a_______file are in binary format, which means the data is access terms of bytes.

  • a) Binary
  • b) Memo
  • c) Informative
  • d) Text

Answer: Binary

Question: The Binary files extensions examples are_______

  • a) Jpeg
  • b) Mp3
  • c) Class
  • d) All of these

Answer: All of these

Question: Java language supports various operations that can be performed on file or on_______

  • a) Programs
  • b) Attributes
  • c) Directories
  • d) Queries

Answer: Directories

Question: _______operations that can be performed on files using Java programs.

  • a) Determining the path of a file or a directory
  • b) Opening a file
  • c) Writing to a file
  • d) All of these

Answer: All of these

Question: _______operations that can be performed on files using Java programs.

  • a) Reading from a file
  • b) Closing or deleting a file
  • c) Querying the attributes of a file
  • d) All of these

Answer: All of these

Question: Java provides built-in_______that contains methods to help with the tasks related to file.

  • a) Variables
  • b) Packages
  • c) Classes
  • d) Devices

Answer: Classes

Question: The Java classes are present in package.

  • a) Java, bytes
  • b) Java.io
  • c) Java.util
  • d) Java.method

Answer: Java.io

Question: Java uses the concepts of______in file handling.

  • a) File systems
  • b) Streams
  • c) Packages
  • d) Classes

Answer: Streams

Question: Java provides_____different categories of java classes to perform I/O operations on bytes and characters.

  • a) One
  • b) Two
  • c) Three
  • d) Four

Answer: Two

Question: Which of the following is not a Binary file extension ?

  • a) Jpeg
  • b) Mp3
  • c) Class
  • d) txt

Answer: txt

Question: Which of the following is not a Text file extension ?

  • a) Txt
  • b) Java
  • c) Jpeg
  • d) C

Answer: Jpeg

Question: The_______class encapsulates information about the properties of a file or a directory.

  • a) Java.io.file
  • b) Java.oi.file
  • c) Java.util.io
  • d) Java.io.util

Answer: Java.io.file

Question: ________class can be used to access attributes of files and directions.

  • a) File
  • b) I/O
  • c) Java
  • d) util

Answer: File

Question: A programmer can do______a file or a directory.

  • a) Create
  • b) Rename
  • c) Delete
  • d) All of these

Answer: All of these

Question: The creation of a file Object that belongs to_____class does not imply that the file or directory exists.

  • a) File
  • b) I/O
  • c) Java
  • d) Util

Answer: File

Question: The______of a file can also be accessed like its permissions, length of a file or last modification time.

  • a) Features
  • b) Attributes
  • c) Qualities
  • d) Traits

Answer: Attributes

Question: A file________encapsulates a path name or reference to a physical file or a directory on the hard disk.

  • a) Method
  • b) Class
  • c) Object
  • d) Handler

Answer: Object

Question: There are nearly______that can be used to perform various operations on a file or a directory.

  • a) 25 methods
  • b) 30 methods
  • c) 35 methods
  • d) 20 methods

Answer: 30 methods

Question: _______does not provide any method to read from a file or write into a file.

  • a) File class
  • b) File method
  • c) File object
  • d) File operator

Answer: File class

Question: There are several_______classes to perform to read from a file or write into a file.

  • a) File
  • b) Stream
  • c) Package
  • d) Object

Answer: Stream

Question: By using the file class, one can create a______to any file by providing its absolute path in string format or by providing the relative path.

  • a) Location
  • b) Reference
  • c) Stream
  • d) Object

Answer: Reference

Question: The file class provides_______constructors to refer a file or a directory.

  • a) File (String path)
  • b) File (String directory_path, String file_name)
  • c) File (File directory, String file_name)
  • d) All of these

Answer: All of these

Question: In Linux, “password” file is present in_______directory stores the information of the users existing in the system.

  • a) “/etc”
  • b) “/pwd”
  • c) “/file”
  • d) “/dir”

Answer: “/etc”

Question: Suppose one wants to display its attributes, then its Java file object can be created using_______ways.

  • a) One
  • b) Two
  • c) Three
  • d) Four

Answer: Three

Question: _______method of file class returns true if the file or directory exists, otherwise returns false.

  • a) Boolean exists( )
  • b) Boolean is File()
  • c) Boolean is Directory( )
  • d) Boolean is Hidden( )

Answer: Boolean exists( )

Question: ______method of file class returns true if the file exists, otherwise returns false.

  • a) Boolean exists ( )
  • b) Boolean is File( )
  • c) Boolean is Directory( )
  • d) Boolean is Hidden( )

Answer: Boolean is File( )

Question: _____method of file class returns true if the directory exists, otherwise returns false.

  • a) Boolean exists( )
  • b) Boolean is File( )
  • c) Boolean is Directory( )
  • d) Boolean is Hidden( )

Answer: Boolean is Directory( )

Question: _______method of file class returns true if the file or directory is hidden.

  • a) Boolean exists ( )
  • b) Boolean is File( )
  • c) Boolean is Directory( )
  • d) Boolean is Hidden( )

Answer: Boolean is Hidden( )

Question: ______method of file class returns the absolute path of the file exists or directory.

  • a) String[ ] list( )
  • b) String get Path( )
  • c) String get Name( )
  • d) String get Absolute Path()

Answer: String get Absolute Path()

Question: ________method of file class returns the name of the file or directory referred by the object.

  • a) String[ ] list( )
  • b) String get Path( )
  • c) String get Name( )
  • d) String get Absolute Path()

Answer: String get Name( )

Question: _______method of file class returns the path to the file or directory.

  • a) String[ ] Hst( )
  • b) String get Path( )
  • c) String get Name( )
  • d) String get Absolute Path()

Answer: String get Path( )

Question: _______method of file class returns the name of the files and directories in a directory.

  • a) String[ ] list( )
  • b) String get Path( )
  • c) String get Name( )
  • d) String get Absolute Path()

Answer: String[ ] list( )

Question: _______method of file class returns the number of bytes in that file.

  • a) Long length( )
  • b) File[ ] list Files( )
  • c) Both (A) and (B)
  • d) None of these

Answer: Long length( )

Question: ________method of file class returns an array of abstract path names denoting the files in the directory.

  • a) Long length ( )
  • b) File[ ] list Files( )
  • c) Both (A) and (B)
  • d) None of these

Answer: File[ ] list Files( )

Question: ______method to list all the files present in a directory.

  • a) Display()
  • b) List( )
  • c) Dir()
  • d) Files()

Answer: List( )

Question: To modify a file or display the contents of a file, the concept of______has to be understood.

  • a) Files
  • b) Streams
  • c) Packages
  • d) Objects

Answer: Streams

Question: Java uses______classes to carry out read and write operations on files.

  • a) Files
  • b) Streams
  • c) Packages
  • d) Objects

Answer: Streams

Question: ______is an input device.

  • a) Monitor
  • b) Speaker
  • c) Keyboard
  • d) Plotter

Answer: Keyboard

Question: ______is an output device.

  • a) Monitor
  • b) Speaker
  • c) Keyboard
  • d) Plotter

Answer: Monitor

Question: ________can be classified as both input and output device as data can be stored and read from the files.

  • a) Monitor
  • b) Speaker
  • c) Keyboard
  • d) Hard disk

Answer: Hard disk

Question: _________are manufactured by various companies and come with different storage capacities like 500GB or 1 TB.

  • a) Monitor
  • b) Speaker
  • c) Keyboard
  • d) Hard disk

Answer: Hard disk

Question: ______can be connected using different cables like USB or SATA.

  • a) Hard disk
  • b) Scanner
  • c) Printer
  • d) Mouse

Answer: Hard disk

Question: A Java programmer does not need to worry about the technical details like type of______or its capacity while developing a program to perform read / write operations over the files

  • a) Hard disk
  • b) Scanner
  • c) Printer
  • d) Mouse

Answer: Hard disk

Question: The above point is possible because Java language provides functionality of______

  • a) Files
  • b) Streams
  • c) Directories
  • d) Objects

Answer: Streams

Question: A______is an abstract representation of an input or output device that is used as a source or destination for data.

  • a) File
  • b) Directory
  • c) Stream
  • d) Disk

Answer: Stream

Question: Visualize a______as a sequence of bytes that flows into the program or that flows out of the program.

  • a) File
  • b) Directory
  • c) Stream
  • d) Disk

Answer: Stream

Question: One can write data or read data using_______

  • a) Files
  • b) Streams
  • c) Directories
  • d) Objects

Answer: Streams

Question: When data is written to stream, the stream is called an________

  • a) Output stream
  • b) Input stream
  • c) I/O stream
  • d) Both (A) and (B)

Answer: Output stream

Question: The_______can transfer data from the program to a file on a hard disk or a monitor or to some other computer over the network.

  • a) Output stream
  • b) Input stream
  • c) I/O stream
  • d) Both (A) and (B)

Answer: Output stream

Question: An______is used to read data from an external device to the program.

  • a) Output stream
  • b) Input stream
  • c) I/O stream
  • d) Both (A) and (B)

Answer: Input stream

Question: _______can transfer data from keyboard or from the file on a hard disk to the program.

  • a) Output stream
  • b) Input stream
  • c) I/O stream
  • d) Both (A) and (B)

Answer: Input stream

Question: The main reason for using streams for input or output operations is to make our program independent of the_______involved.

  • a) Hard Disks
  • b) Keyboards
  • c) Printers
  • d) Devices

Answer: Devices

Question: _______is advantage of using streams.

  • a) Programmer does not need to worry about the technical details of the device.
  • b) The program can work for a variety of input/ output devices without any changes to the source code.
  • c) Both (A) and (B)
  • d) None of these

Answer: Both (A) and (B)

Question: To understand byte streams and character streams, one needs to differentiate between character and byte______

  • a) Representation
  • b) Collection
  • c) Numbers
  • d) Particulars

Answer: Representation

Question: If ‘5’ is represented as a Character, its ASCII value will be______

  • a) 51
  • b) 52
  • c) 53
  • d) 54

Answer: 53

Question: If 5 is represented as a character, its binary representation will be_______

  • a) 53
  • b) 5
  • c) 101
  • d) 00110101

Answer: 00110101

Question: If ‘5’ is represented as a binary number, then its value will be______

  • a) 53
  • b) 5
  • c) Five
  • d) 101

Answer: 5

Question: If ‘5* is represented as a binary number, then its binary representation will be_______

  • a) 00000101
  • b) 11001100
  • c) 10101100
  • d) 11111000

Answer: 00000101

Question: A character is generally stored using ASCII or Unicode format but when it is used for calculation purpose and then it’s________value is meaningful.

  • a) Binary
  • b) Actual
  • c) Objective
  • d) Text

Answer: Binary

Question: In the statement int i = 32, the_____is true.

  • a) Declares ‘i’ as an integer type variable
  • b) That T stores number 32.
  • c) Both (A) and (B)
  • d) None of these

Answer: Both (A) and (B)

Question: The number 32 can be represented as two separate_______’3′ and ‘2’.

  • a) Numbers
  • b) Values
  • c) Characters
  • d) All of these

Answer: Characters

Read More

Chapter 2: Basic Concepts of OOP Classes & Objects | class 12th | mcqs of computer science

Object Oriented Concepts MCQ Questions Class 12 Computer Science with Answers

Question: In Object-oriented methodology, the focus is on which of the following entities ?

  • a) Data
  • b) Functions
  • c) Objects
  • d) All of the above

Answer: Objects

Question: Which of the following best suits to Java ?

  • a) A procedural programming language
  • b) An object oriented programming language
  • c) A Query language
  • d) All of the above

Answer: An object oriented programming language

Question: Which of the following is used to distinguish objects from each other?

  • a) Attributes
  • b) State
  • c) Behavior
  • d) All of the above

Answer: State

Question: Which of the following is used to define common features of similar objects?

  • a) Class
  • b) Object
  • c) Methods
  • d) All of the above

Answer: Class

Question: Which of the following is not a visibility symbol ?

  • a) ~
  • b) *
  • c) #
  • d) –

Answer: *

Question: Which of the following is provided using encapsulation ?

  • a) Data protection
  • b) Data sharing
  • c) Separation of data and methods
  • d) All of these

Answer: Data protection

Question: Which of the following is enabled by data abstraction ?

  • a) Data protection
  • b) Data hiding
  • c) To hide implementation details of method manipulating the data
  • d) All of these

Answer: To hide implementation details of method manipulating the data

Question: With which of the following options polymorphism cannot be achieved ?

  • a) Method overloading
  • b) Operator overloading
  • c) Data hiding
  • d) All of these

Answer: Data hiding

Question: An aggregation model refers to which of the following relationships ?

  • a) ‘is-a’ relationship
  • b) ‘is-like’ relationship
  • c) ‘a-part-of relationship
  • d) All of these

Answer: ‘is-a’ relationship

Question: An inheritance model refers to which of the following relationships ?

  • a) ‘is-a’ relationship
  • b) ‘has-a’ relationship
  • c) ‘a-part-of relationship
  • d) All of these

Answer: ‘is-a’ relationship

Question: In class diagram, composition is represented using which of the following symbols ?

  • a) Empty diamond symbol
  • b) Filled diamond symbol
  • c) Empty triangle symbol
  • d) All of these

Answer: Filled diamond symbol

Question: Object-oriented programming concepts started originating in the_______

  • a) 1950s
  • b) 1960s
  • c) 1970s
  • d) 1980s

Answer: 1960s

Question: Since mid______object-oriented programming had become the main programming paradigm used in the creation of new software.

  • a) 1950s
  • b) 1960s
  • c) 1970s
  • d) 1980s

Answer: 1980s

Question: Some of the popular programming languages that support______programming are C++, Java, C#, VB.net, ASP.net and PHP.

  • a) Object-oriented
  • b) Structural
  • c) Modular
  • d) Procedural

Answer: Object-oriented

Question: The way of programming can be divided into______categories.

  • a) Four
  • b) Three
  • c) Two
  • d) One

Answer: Two

Question: Java is a_____programming language.

  • a) Object-oriented
  • b) Structural
  • c) Modular
  • d) Procedural

Answer: Object-oriented

Question: The categories are______and object-oriented.

  • a) Objective
  • b) Structure/procedural
  • c) Modular
  • d) Functional

Answer: Structure/procedural

Question: In_______programming, the focus is on writing functions or procedures which operate on data.

  • a) Procedural
  • b) Modular
  • c) Functional
  • d) None of these

Answer: Procedural

Question: In object-oriented_____the focus is on objects which contain data and functionality together.

  • a) Pattern
  • b) Prototype
  • c) Paradigm
  • d) Example

Answer: Paradigm

Question: The power of object-oriented programming language enables the programmer to create modular, reusable and_____code.

  • a) Complete
  • b) Accomplished
  • c) Perfect
  • d) Executable

Answer: Executable

Question: Flexibility is gained by being able to change or replace______without disturbing other parts of code.

  • a) Modules
  • b) Parts
  • c) Functions
  • d) Methods

Answer: Modules

Question: Object-oriented programming uses_____as its fundamental building block.

  • a) Method
  • b) Class
  • c) Object
  • d) Procedure

Answer: Object

Question: A computer language is object-oriented if they support four specific object properties called

  • a) Abstraction
  • b) Encapsulation
  • c) Polymorphism and Inheritance
  • d) All of these

Answer: All of these

Question: C# is a______programming language.

  • a) Object-oriented
  • b) Structural
  • c) Modular
  • d) Procedural

Answer: Object-oriented

Question: In the real world______are the entities of which the world is comprised.

  • a) Methods
  • b) Classes
  • c) Objects
  • d) Procedures

Answer: Objects

Question: Some objects can be______things like person, car or a cup of coffee.

  • a) Abstract
  • b) Concrete
  • c) Real
  • d) Solid

Answer: Concrete

Question: Some objects may be______that do not represent things which can be touched or seen.

  • a) Abstract
  • b) Concrete
  • c) Real
  • d) Solid

Answer: Abstract

Question: All objects have unique______and are distinguishable from each other.

  • a) Personality
  • b) Objects
  • c) Procedures
  • d) Identity

Answer: Identity

Question: In object-oriented terminology characteristics are known as properties or_______

  • a) Features
  • b) Attributes
  • c) Values
  • d) States

Answer: Attributes

Question: To uniquely distinguish one person from other,the______of its characteristics is used.

  • a) Worth
  • b) Cost
  • c) Value
  • d) Property

Answer: Value

Question: When two people have same name, they can be distinguished using other attributes like______

  • a) Color
  • b) Name
  • c) Birth-date
  • d) Behavior

Answer: Birth-date

Question: To identifythe value of the attributes is used.

  • a) Personality
  • b) Objects
  • c) Procedures
  • d) Identity

Answer: Objects

Question: There is always a behavior associated with

  • a) Personality
  • b) Objects
  • c) Procedures
  • d) Identity

Answer: Objects

Question: The behavior of objects is also known as

  • a) Method
  • b) Technique
  • c) Process
  • d) Procedure

Answer: Method

Question: The_______of the object can change due to its behavior.

  • a) State
  • b) Method
  • c) Status
  • d) Class

Answer: State

Question: Object can be described in terms of

  • a) What it is called (identity)
  • b) What it is (its state)
  • c) What it does (behavior)
  • d) All of these

Answer: All of these

Question: In object-oriented programming, attributes that describe the object are also referred to as_____fields.

  • a) Information
  • b) Method
  • c) Data
  • d) Name

Answer: Data

Question: The data attributes and behavioral methods associated with an object are collectively referred to as its____or features.

  • a) Component
  • b) Associate
  • c) Part
  • d) Member

Answer: Member

Question: _______system uses the concept of class that enables to express the set of objects that are abstractly equivalent, differing only in the values of their attributes.

  • a) Object-oriented
  • b) Value-oriented
  • c) Data-oriented
  • d) All of these

Answer: Object-oriented

Question: ______can be considered as a blueprint for various objects.

  • a) Method
  • b) Class
  • c) Object
  • d) Member

Answer: Class

Question: A class is a_______for multiple objects with similar features.

  • a) Image
  • b) Representation
  • c) Template
  • d) Guide

Answer: Template

Question: A class describes a group of objects with similar______and common behaviour.

  • a) Features
  • b) Attributes
  • c) Values
  • d) States

Answer: Attributes

Question: _______in the same class share a common semantic purpose.

  • a) Methods
  • b) Classes
  • c) Objects
  • d) Members

Answer: Objects

Question: _______is a general concept used to embody all the common features of a particular set of objects.

  • a) Method
  • b) Class
  • c) Object
  • d) Member

Answer: Class

Question: The class______presents a collection of classes, constraints and relationship among classes.

  • a) Diagram
  • b) Map
  • c) Drawing
  • d) Figure

Answer: Diagram

Question: _______can be used to create models of object-oriented software to help with design of an application.

  • a) ULM
  • b) UML
  • c) LUM
  • d) MUL

Answer: UML

Question: _______is a visual modeling language defined and maintained by the Object Management Group.

  • a) ULM
  • b) UML
  • c) LUM
  • d) MUL

Answer: UML

Question: _______specifies several diagrams for representing different aspects of a software application.

  • a) ULM
  • b) UML
  • c) LUM
  • d) MUL

Answer: UML

Question: The purpose of the class________is to model the static view of an application.

  • a) Diagram
  • b) Map
  • c) Drawing
  • d) Figure

Answer: Diagram

Question: The class’s diagrams are only diagrams which can be directly mapped with object-oriented.

  • a) Methods
  • b) Procedures
  • c) Languages
  • d) Attributes

Answer: Languages

Question: In class diagram, a class is represented with an icon using a rectangle split into______sections to present name, attributes and behaviour.

  • a) One
  • b) Two
  • c) Three
  • d) Four

Answer: Three

Question: In the class diagram, the name is in the______section.

  • a) Top
  • b) Middle
  • c) Centre
  • d) Bottom

Answer: Top

Question: In the class diagram, the attributes or methods are in the_____section.

  • a) Top
  • b) Middle
  • c) Centre
  • d) Bottom

Answer: Middle

Question: In the class diagram, the behaviour or operations are in the_____section.

  • a) Top
  • b) Middle
  • c) Centre
  • d) Bottom

Answer: Bottom

Question: Full form of UML is______

  • a) Unified Modelling Language
  • b) United Modelling Language
  • c) United Model of Languages
  • d) None of these

Answer: Unified Modelling Language

Question: Full form of OMG is______

  • a) Oriented Management Group
  • b) Oriented Managing Group
  • c) Object Management Group
  • d) Object Management Grouping

Answer: Object Management Group

Question: In UML notation, an attribute is declared using the following syntax :

  • a) [][:[=]]
  • b) [][:]]
  • c) [][:] ]
  • d)[:[=]]

Answer: [] [:]]

Question: In an attribute declaration, the______brackets are optional.

  • a) Round
  • b) Chain
  • c) Angle
  • d) Square

Answer: Square

Question: In an attribute declaration, the values should be specified in the_____brackets.

  • a) Round
  • b) Chain
  • c) Angle
  • d) Square

Answer: Angle

Question: In an attribute declaration, the______can be private, protected, public or package.

  • a) Visibility
  • b) Invisible
  • c) Evident
  • d) Obvious

Answer: Visibility

Question: In an attribute declaration, the private visibility is represented by_____symbol.

  • a) –
  • b) #
  • c) +
  • d) ~

Answer: –

Question: In an attribute declaration, the protected visibility is represented by______symbol.

  • a) –
  • b) #
  • c) +
  • d) ~

Answer: #

Question: In an attribute declaration, the public visibility is represented by_____symbol.

  • a) –
  • b) #
  • c) +
  • d) ~

Answer: +

Question: In an attribute declaration, the package visibility is represented by_____symbol.

  • a) –
  • b) #
  • c) +
  • d) ~

Answer: ~

Question: Attribute generally refers to a______

  • a) Variable
  • b) Property
  • c) Value
  • d) Class

Answer: Variable

Question: _______type and initial value identify the type of data stored and its value at the start of the program.

  • a) Data
  • b) Date
  • c) Value
  • d) Class

Answer: Data

Question: ______is an example of declaring attribute.

  • a) Name:- string;
  • b) Name : string
  • c) Name ++string
  • d) Name = string

Answer: Name : string

Question: In UML notation, an operation is declared using_____syntax:

  • a) [](parameter list separated by comma):
  • b) [](parameter list separated by comma):
  • c) [](parameter list separated by comma):
  • d) None of these.

Answer: [](parameter list separated by comma):

Question: ________diagrams are independent of the programming language used for coding an application.

  • a) ULM
  • b) UML
  • c) LUM
  • d) MUL

Answer: UML

Question: _______are presented using their state during execution of an application.

  • a) Methods
  • b) Procedures
  • c) Classes
  • d) Objects

Answer: Objects

Question: Objects are_______

  • a) Dynamic
  • b) Vibrant
  • c) Colorful
  • d) All of these

Answer: Dynamic

 

Question: An object is also called an______

  • a) Image
  • b) Illustration
  • c) Instance
  • d) Occurrence

Answer: Instance

Question: For any computer program, two or more elements are data and________

  • a) Method
  • b) Function
  • c) Information
  • d) Procedure

Answer: Function

Question: Structured/Procedural programming views the two core elements as______separate entities.

  • a) One
  • b) Two
  • c) Three
  • d) None of these

Answer: Two

Question: ________programming views the two coreentities as single entity.

  • a) Object-oriented
  • b) Structured
  • c) Procedural
  • d) Instance

Answer: Object-oriented

Question: In______programming, data can be altered by any component of the program.

  • a) Object-oriented
  • b) Structured
  • c) Procedural
  • d) Instance

Answer: Procedural

Question: In object-oriented programming, the problem of modification can be solved using______

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Encapsulation

Question: Data and the methods that______data are guarded against modification or misuse by other components of the program.

  • a) Change
  • b) Modify
  • c) Manipulate
  • d) Imitate

Answer: Manipulate

Question: The mechanism of providing protection to data and methods of a program is called______

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Encapsulation

Question: ______is possible by wrapping data and methods into a single unit known as class and declaring them as private.

  • a) Encapsulation
  • b) Abstraction
  • c) Messaging
  • d) Polymorphism

Answer: Encapsulation

Question: ________members of the class are not available directly to outside world.

  • a) Private
  • b) Public
  • c) Void
  • d) Static

Answer: Private

Question: Data can be made available via public______to the outside world.

  • a) Messages
  • b) Methods
  • c) Function
  • d) Declarations

Answer: Methods

Question: Encapsulation provides______hiding capability.

  • a) Information
  • b) Data
  • c) Code
  • d) Class

Answer: Data

Question: _______keeps the data safe from unintended actions and inadvertent access by outside objects.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Encapsulation

Question: ________programming discourages direct access to common data by other programs.

  • a) Object-oriented
  • b) Structured
  • c) Procedural
  • d) Instance

Answer: Object-oriented

Question: Only the object that______the data can change its content.

  • a) Holds
  • b) Possesses
  • c) Owns
  • d) Creates

Answer: Owns

Question: Other objects can view or change this data by sending message to the “owner”.

  • a) Vendor
  • b) Businessman
  • c) Owner
  • d) Viewer

Answer: Owner

Question: Data______is a process of representing the essential features of the objects without including implementation detail.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: _______is a concept that hides the complexity; it says what it does, but not how it is done.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: Data______thus is a technique that relies on the separation of interface and implementation.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: A user defined______with necessary input data parameters also provides data abstraction.

  • a) Messages
  • b) Methods
  • c) Function
  • d) Declarations

Answer: Function

Question: The signature of the function means the name of the function, number and type of parameters and the return type of______

  • a) Parameters
  • b) Methods
  • c) Parts
  • d) Variables

Answer: Parameters

Question: Data_____provides the skeleton or templates for the programmers use. The system hides certain details of how data is stored, created and maintained.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: All that is______to the rest of the world is the abstract behaviour of the data type.

  • a) Invisible
  • b) Hidden
  • c) Seen
  • d) Visible

Answer: Visible

Question: ______or structures (struct) in C/C++, classes / Java are examples for data abstraction.

  • a) ADVT
  • b) TDA
  • c) DAT
  • d) ADT

Answer: ADT

Question: Full form of ADT is________

  • a) Abstraction Date Type
  • b) Abstract Date Type
  • c) Abstract Data Type
  • d) Abstract Data Template

Answer: Abstract Data Type

Question: In___it is simply defined a data type and a set of operations on it. The implementation of operations is not seen.

  • a) ADVT
  • b) TDA
  • c) DAT
  • d) ADT

Answer: ADT

Question: Encapsulation_____data by making them inaccessible from outside.

  • a) Hides
  • b) Protects
  • c) Displays
  • d) Harms

Answer: Protects

Question: _______enables to represent data in which the implementation details are hidden.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: In object-oriented terminology, a call to a method is referred to as a______

  • a) Message
  • b) Function
  • c) Call
  • d) Letter

Answer: Message

Question: ________represents ‘has-a’ or ‘a-part-of relationship between classes.

  • a) Aggregation
  • b) Polymorphism
  • c) Work
  • d) Messaging

Answer: Aggregation

Question: ______represents non-exclusive relationship between two classes.

  • a) Polymorphism
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Aggregation

Question: In_____the class that forms part of the owner class can exist independently.

  • a) Polymorphism
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Aggregation

Question: The life of an______of the part class is not determined by the owner class.

  • a) Variable
  • b) Parameter
  • c) Operator
  • d) Object

Answer: Object

Question: Although the motherboard is part of the computer, it can exist as a separate item independent of the_______

  • a) Workstation
  • b) System
  • c) Computer
  • d) Processor

Answer: Computer

Question: Basic aggregation is represented using an empty_______symbol next to the whole class.

  • a) Square
  • b) Diamond
  • c) Triangle
  • d) Circle

Answer: Diamond

Question: ________represents exclusive relationship between two classes.

  • a) Composition
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Composition

Question: ______is a strong type of aggregation where the lifetime of the part class depends on the existence of the owner class.

  • a) Composition
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Composition

Question: If an object of aggregating class is deleted, its part_______object also gets deleted.

  • a) Function
  • b) Message
  • c) Class
  • d) Variable

Answer: Class

Question: When an object of class Person is deleted, the object of class Name is also______

  • a) Removed
  • b) Deleted
  • c) Detached
  • d) Attached

Answer: Deleted

 

Question: _______property suits best with Java.

  • a) A Structured Language
  • b) An Object-oriented Language
  • c) A Procedural Language
  • d) An Interpreting Language

Answer: An Object-oriented Language

Question: is provided while using encapsulation.

  • a) Data Protection
  • b) Data Hiding
  • c) Data Sharing
  • d) Data and Methods Separation

Answer: Data Protection

Question: The focus is on_____entity in an object-oriented methodology.

  • a) Functions
  • b) Data
  • c) Classes
  • d) Objects

Answer: Objects

Question: In class diagram, basic aggregation is represented using which of the following symbols ?

  • a) Empty triangle symbol
  • b) Filled triangle symbol
  • c) Filled diamond symbol
  • d) Empty diamond symbol

Answer: Empty diamond symbol

Question: The data type for NAME variable should be______

  • a) String
  • b) Char
  • c) Date
  • d) Int

Answer: String

Question: The data type for BIRTHDATE variable should be____

  • a) String
  • b) Char
  • c) Date
  • d) Int

Answer: Date

Question: The data type for GENDER variable should be

  • a) String
  • b) Char
  • c) Double
  • d) Int

Answer: Char

Question: The data type for NO_OF_STUDENTS variable should be_______

  • a) String
  • b) Char
  • c) Double
  • d) Int

Answer: Int

Question: _______is used to define common features of similar objects.

  • a) Class
  • b) Procedure
  • c) Object
  • d) Method

Answer: Method

Question: The output of the function sqrt(25) is_______

  • a) 5
  • b) 10
  • c) 15
  • d) 20

Answer: 5

Question: A user defined______with necessary input data parameters also provides data abstraction.

  • a) Messages
  • b) Methods
  • c) Function
  • d) Declarations

Answer: Function

Question: The signature of the function means the name of the function, number and type of parameters and the return type of______

  • a) Parameters
  • b) Methods
  • c) Parts
  • d) Variables

Answer: Parameters

Question: Data_____provides the skeleton or templates for the programmers use. The system hides certain details of how data is stored, created and maintained.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: All that is______to the rest of the world is the abstract behaviour of the data type.

  • a) Invisible
  • b) Hidden
  • c) Seen
  • d) Visible

Answer: Visible

Question: ______or structures (struct) in C/C++, classes / Java are examples for data abstraction.

  • a) ADVT
  • b) TDA
  • c) DAT
  • d) ADT

Answer: ADT

Question: Full form of ADT is________

  • a) Abstraction Date Type
  • b) Abstract Date Type
  • c) Abstract Data Type
  • d) Abstract Data Template

Answer: Abstract Data Type

Question: In___it is simply defined a data type and a set of operations on it. The implementation of operations is not seen.

  • a) ADVT
  • b) TDA
  • c) DAT
  • d) ADT

Answer: ADT

Question: Encapsulation_____data by making them inaccessible from outside.

  • a) Hides
  • b) Protects
  • c) Displays
  • d) Harms

Answer: Protects

Question: _______enables to represent data in which the implementation details are hidden.

  • a) Polymorphism
  • b) Abstraction
  • c) Messaging
  • d) Encapsulation

Answer: Abstraction

Question: In object-oriented terminology, a call to a method is referred to as a______

  • a) Message
  • b) Function
  • c) Call
  • d) Letter

Answer: Message

Question: ________represents ‘has-a’ or ‘a-part-of relationship between classes.

  • a) Aggregation
  • b) Polymorphism
  • c) Work
  • d) Messaging

Answer: Aggregation

Question: ______represents non-exclusive relationship between two classes.

  • a) Polymorphism
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Aggregation

Question: In_____the class that forms part of the owner class can exist independently.

  • a) Polymorphism
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Aggregation

Question: The life of an______of the part class is not determined by the owner class.

  • a) Variable
  • b) Parameter
  • c) Operator
  • d) Object

Answer: Object

Question: Although the motherboard is part of the computer, it can exist as a separate item independent of the_______

  • a) Workstation
  • b) System
  • c) Computer
  • d) Processor

Answer: Computer

Question: Basic aggregation is represented using an empty_______symbol next to the whole class.

  • a) Square
  • b) Diamond
  • c) Triangle
  • d) Circle

Answer: Diamond

Question: ________represents exclusive relationship between two classes.

  • a) Composition
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Composition

Question: ______is a strong type of aggregation where the lifetime of the part class depends on the existence of the owner class.

  • a) Composition
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Composition

Question: If an object of aggregating class is deleted, its part_______object also gets deleted.

  • a) Function
  • b) Message
  • c) Class
  • d) Variable

Answer: Class

Question: When an object of class Person is deleted, the object of class Name is also______

  • a) Removed
  • b) Deleted
  • c) Detached
  • d) Attached

Answer: Deleted

 

Question: _______property suits best with Java.

  • a) A Structured Language
  • b) An Object-oriented Language
  • c) A Procedural Language
  • d) An Interpreting Language

Answer: An Object-oriented Language

Question: is provided while using encapsulation.

  • a) Data Protection
  • b) Data Hiding
  • c) Data Sharing
  • d) Data and Methods Separation

Answer: Data Protection

Question: The focus is on_____entity in an object-oriented methodology.

  • a) Functions
  • b) Data
  • c) Classes
  • d) Objects

Answer: Objects

Question: In class diagram, basic aggregation is represented using which of the following symbols ?

  • a) Empty triangle symbol
  • b) Filled triangle symbol
  • c) Filled diamond symbol
  • d) Empty diamond symbol

Answer: Empty diamond symbol

Question: The data type for NAME variable should be______

  • a) String
  • b) Char
  • c) Date
  • d) Int

Answer: String

Question: The data type for BIRTHDATE variable should be____

  • a) String
  • b) Char
  • c) Date
  • d) Int

Answer: Date

Question: The data type for GENDER variable should be

  • a) String
  • b) Char
  • c) Double
  • d) Int

Answer: Char

Question: The data type for NO_OF_STUDENTS variable should be_______

  • a) String
  • b) Char
  • c) Double
  • d) Int

Answer: Int

Question: _______is used to define common features of similar objects.

  • a) Class
  • b) Procedure
  • c) Object
  • d) Method

Answer: Method

Question: The output of the function sqrt(25) is_______

  • a) 5
  • b) 10
  • c) 15
  • d) 20

Answer: 5

Question: _______is generally referred to as ‘is-a-kind-of relationship between two classes.

  • a) Composition
  • b) Aggregation
  • c) Inheritance
  • d) Abstraction

Answer: Inheritance

Question: ________refers to the capability of defining a new class of objects that inherits the characteristics of another existing class.

  • a) Inheritance
  • b) Composition
  • c) Aggregation
  • d) Messaging

Answer: Inheritance

Question: In object-oriented terminology_______class is called sub class or child class or derived class.

  • a) Latest
  • b) New
  • c) Old
  • d) Super

Answer: New

Question: The existing class is called______class or parent class or base class.

  • a) Sub
  • b) New
  • c) Super
  • d) Child

Answer: Super

Question: The data_______and methods of the super class are available to objects in the sub class without rewriting their declarations.

  • a) Attributes
  • b) Properties
  • c) Operators
  • d) Features

Answer: Attributes

Question: The above feature (mention in above question provides) reusability where existing method can be reused without______

  • a) Introduction
  • b) Availability
  • c) Definition
  • d) Redefining

Answer: Redefining

Question: Additionally new data and method members can be added to the______class as an extension.

  • a) Sub
  • b) New
  • c) Super
  • d) Child

Answer: Sub

Question: In a class diagram, inheritance is represented using an arrow pointing to______class.

  • a) Sub
  • b) New
  • c) Super
  • d) Child

Answer: Super

Question: _________is another name for inheritance or ‘is a’relationship.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Generalization

Question: ________refers to a relationship between two classes where one class is a specialized version of another.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Generalization

Question: Common attributes and methods are defined in______class.

  • a) Sub
  • b) New
  • c) Super
  • d) Child

Answer: Super

Question: _________class is a specialized version with additional attributes and methods.

  • a) Sub
  • b) New
  • c) Super
  • d) Child

Answer: Sub

Question: A_______can be derived using more than parent classes.

  • a) Method
  • b) Program
  • c) Class
  • d) Variable

Answer: Class

Question: When a class is derived from two or more classes, it is known as multiple________

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Inheritance

Question: In_____class inherits from other classes in order to share, reuse or extend functionality.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Inheritance

Question: In_______classes do not inherit from other classes, but are ‘composed of other classes.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Composition

Question: _________as methodology is playing a significant role in analysis, design and implementation of software system.

  • a) Object-oriented
  • b) Structure-oriented
  • c) Procedure-oriented
  • d) Aggregation-oriented

Answer: Object-oriented

Question: When a class contains objects of other class, the container class is called______class or whole class or aggregating class.

  • a) Sub
  • b) Owner
  • c) Super
  • d) Whole

Answer: Owner

Question: The class that is contained in owner class is known as_______class or part class or aggregated class.

  • a) Sub
  • b) Owner
  • c) Subject
  • d) Super

Answer: Subject

Question: ________represents non-exclusive relationship between two classes.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Aggregation

Question: represents exclusive relationship between two classes.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Composition

Question: When there is ‘is-a’ or ‘a-kind-of relationship between two classes, there is_____relationship.

  • a) Aggregation
  • b) Composition
  • c) Inheritance
  • d) Generalization

Answer: Inheritance

Question: General features or common features of two classes are implemented in the______class.

  • a) Sub
  • b) Owner
  • c) Subject
  • d) Super

Answer: Super

Question: Special features of two classes are implemented in sub class.

  • a) Sub
  • b) Owner
  • c) Subject
  • d) Super

Answer: Sub

Question: In class diagram, composition is represented using which of the following symbols ?

  • a) Empty triangle symbol
  • b) Filled triangle symbol
  • c) Filled diamond symbol
  • d) Empty diamond symbol

Answer: Filled diamond symbol

Question: An inheritance model refers to which of the following relationships ?

  • a) Has-a-relationship’
  • b) A-part-of relationship
  • c) Is-a-part-of relationship
  • d) Is-a’ relationship

Answer: Is-a’ relationship

Question: Which of the following is enabled by data abstraction ?

  • a) Data protection
  • b) Data hiding
  • c) Hide implementation details
  • d) Hide relationship details

Answer: Hide implementation details

Question: Polymorphism cannot be achieved by which of the following ?

  • a) Operator overloading
  • b) Data hiding
  • c) Method overloading
  • d) None of these

Answer: Data hiding

Question: Which of the following model refers to an aggregation ?

  • a) A-part-of relationship
  • b) Is-like’ relationship
  • c) Is-a’ relationship
  • d) Has-a’ relationship

Answer: A-part-of relationship

Question: _______is used to distinguish objects from each other.

  • a) Attributes
  • b) Behaviour
  • c) State
  • d) All of these

Answer: State

Read More

Chapter 1: Overview of CPP | class 12th | mcqs of computer science

Computer Science (C++) MCQ

1 . In C++ every statement end with

  • colon(:)
  • Comma (,)
  • dot (.)
  • Semicolon (;)

Answer

Semicolon (;)

2. Base class is

  • normal class
  • derived class
  • child class
  • all of these

Answer

normal class

3. Which of the following is not a feature of C++.

  • Operator overloading
  • Inheritance
  • Namespace
  • Reflection

Answer

Reflection

4. Which of the following is not a member of the class?

  • Static function
  • Friend function
  • Virtual function
  • Const function

Answer

5. Which of the following is the correct class of the object cout?

  • iostream
  • istream
  • ostream
  • ifstream

Answer

ostream

6. Which of the following is not a type of inheritance?

  • Multiple
  • Multilevel
  • Distributive
  • Hierarchical

Answer

Distributive

7. In protected inheritance, a public data member of the base class will be treated in a derived class as.

  • public
  • private none of the above
  • protected
  • none of the above

Answer

public

8. main is a/an

  • keyword
  • object
  • function
  • none of the above

Answer

function

9. A set of arithmetic operators are.

  • + , – , * , / , %
  • < , > , >= , <=
  • &&, ||, !
  • none of the above

Answer

+ , – , * , / , %

10. A set of logical operators are.

  • + , – , * , / , %
  • < , > , >= , <=
  • &&, ||, !
  • none of the above

Answer

&&, ||, !

11. Which of the following concepts means determining at runtime what method to invoke.

  • Data hiding
  • Dynamic loading
  • Dynamic typing
  • Dynamic binding

Answer

Dynamic binding

12. is a way of combining data with functions into an object.

  • Object
  • Encapsulation
  • Inheritance
  • Constructor

Answer

13. eof is an acronym of

  • the ending of line
  • ending of files
  • end of file
  • None of the above

Answer

end of file

14. C++ language has been developed by

  • Dennis Ritchie
  • Ken Thompson
  • Martin Richard
  • Bjarne Stroustrup

Answer

Bjarne Stroustrup

15. Which operator has the lowest precedence?

  • Size
  • Urinary
  • Assignment
  • Comma

Answer

Assignment

16. The ternary operator operates on how many operands?

  • 1
  • 2
  • 3
  • 4

Answer

3

17. An instance of a class is called…….

  • private
  • object
  • public
  • None of the above

Answer

object

18. Which of the following library function below by default aborts the Program.

  • end ( )
  • terminate ( )
  • abort ( )
  • exit ( )

Answer

exit ( )

19. The individual elements in an array are called

  • encrypted
  • Decrypted
  • Subscripted
  • Identifier

Answer

Subscripted

20. The default access level assigned to members of the class is.

  • Private
  • Public
  • Protected
  • None of these

Answer

Private

Read More

Chapter 17 शिरीष के फूल | class 12th | mcqs for Hindi Aroh

शिरीष के फूल Class 12 Hindi Aroh MCQ


Q1. लेखक ने शिरीष की तुलना किसके साथ की है?
A.भिखारी के साथ✗
B.अवधूत के साथ✓
C.साधु के साथ✗
D.गृहस्थ के साथ✗
Ans: अवधूत के साथ


Q2. ‘शिरीष के फूल’ के रचयिता का क्या नाम है?
A.डॉ० नगेन्द्र✗
B.रामवृक्ष बेनीपुरी✗
C.उदय शंकरभट्ट✗
D.आचार्य हजारी प्रसाद द्विवेदी✓
Ans: आचार्य हजारी प्रसाद द्विवेदी


Q3. आरग्वध किस पेड़ का नाम है?
A.आम का✗
B.नीम का✗
C.अमलतास का✓
D.शिरीष का✗
Ans: अमलतास का


Q4. अमलतास कितने दिनों के लिए फूलता है?
A.15-20 दिन✓
B.1-2 महीने✗
C.2 सप्ताह✗
D.4 सप्ताह✗
Ans: 15-20 दिन


Q5. किस ऋतु के आने पर शिरीष लहक उठता है?
A.शीत ऋतु✗
B.शिरीष ऋतु✗
C.वसंत ऋतु✓
D.वर्षा ऋतु✗
Ans: वसंत ऋतु


Q6. किस महीने तक शिरीष के फूल मस्त बने रहते हैं?
A.चैत्र✗
B.वैसाख✗
C.ज्येष्ठ✗
D.आषाढ़✓
Ans: आषाढ़


Q7. शिरीष की डालें कैसी होती हैं?
A.कमजोर✓
B.मजबूत✗
C.मोटी✗
D.पतली✗
Ans: कमजोर


Q8. द्विवेदी जी ने ‘शिरीष के फूल’ नामक पाठक में संस्कृत के किस महान कवि का उल्लेख किया है ?
A.बाणभट्ट✗
B.भवभूति✗
C.कालिदास✓
D.भास✗
Ans: कालिदास


Q9. “धरा को प्रमान यही तुलसी जो फरा सो झरा, जो बरा सो बुताना” कथन किस कवि का है?
A.कबीरदास✗
B.सूरदास✗
C.तुलसीदास✓
D.बिहारी✗
Ans: तुलसीदास


Q10. कौन सपासप कोड़े चला रहा है?
A.रावण✗
B.अत्याचारी राजा✗
C.ब्रह्मा✗
D.महाकाल देवता✓
Ans: महाकाल देवता


Q11. शिरीष का वृक्ष कहाँ से अपना रस खींचता है ?

A.पानी से✗
B.मिट्टी से✗
C.वायुमंडल से✓
D.खाद से✗
Ans: वायुमंडल से


Q12. ‘मेघदूत’ किस कवि की रचना है?
A.कालिदास✓
B.व्यास✗
C.वाल्मीकि✗
D.भवभूति✗
Ans: कालिदास

Read More

Chapter 15 चार्ली चैप्लिन यानी हम सब | class 12th | mcqs for Hindi Aroh

चार्ली चैप्लिन यानी हम सब Class 12 Hindi Aroh MCQ


Q1. देवानंद ने चार्ली का अनुकरण करते हुए किन फ़िल्मों में अभिनय किया?
A.गाइड और हरे रामा हरे कृष्णा✗
B.नौ दो ग्यारह और तीन देवियाँ✓
C.ज्यूल थीफ और जुआरी✗
D.गैम्बलर और जॉनी मेरा नाम✗
Ans: नौ दो ग्यारह और तीन देवियाँ


Q2. चार्ली की फ़िल्मों की प्रमुख विशेषता क्या है?
A.विदेशी न लगना✓
B.विदेशी लगना✗
C.पागल दिखना✗
D.बुद्धिमान दिखना✗
Ans: विदेशी न लगना


Q3. भारत में स्वयं पर हँसने की परंपरा किस पर्व में देखी जा सकती है?
A.होली✓
B.दीवाली✗
C.दशहरा✗
D.शिवरात्रि✗
Ans: होली


Q4. चार्ली किस भारतीय साहित्यकार के अधिक नज़दीक हैं?
A.यशपाल✗
B.जयशंकर प्रसाद✗
C.प्रेमचन्द✓
D.अमृतलाल नागर✗
Ans: प्रेमचन्द


Q5. किन दो महान भारतीयों ने चार्ली का सान्निध्य चाहा था?
A.लाल बहादुर शास्त्री और इंदिरा गांधी✗
B.सरदार पटेल और सुभाष चंद बोस✗
C.लोकमान्य तिलक और भगत सिंह✗
D.जवाहर लाल नेहरू और महात्मा गांधी✓
Ans: जवाहर लाल नेहरू और महात्मा गांधी


Q6. चार्ली चैप्लिन यानी हम सब’ के लेखक का क्या नाम है?
A.विष्णु खरे✓
B.हज़ारी प्रसाद द्विवेदी✗
C.विष्णु प्रभाकर✗
D.महादेवी वर्मा✗
Ans: विष्णु खरे


Q7. ‘मेकिंग ए लिविंग’ फिल्म को बने हुए कितने साल हो चुके हैं?
A.50 साल✗
B.60 साल✗
C.75 साल✓
D.80 साल✗
Ans: 75 साल


Q8. चार्ली ने अपनी फिल्मों में किन दो रसों का मिश्रण किया है?
A.वीर रस और रौद्र✗
B.श्रृंगार रस और वीर रस✗
C.हास्य रस और वीभत्स रस✗
D.करुण रस और हास्य रस✓
Ans: करुण रस और हास्य रस


Q9. लेखक के विचारानुसार आने वाले कितने वर्षों तक चार्ली के नाम का मूल्यांकन होता रहेगा?
A.पचास वर्षों तक✓
B.पच्चीस वर्षों तक✗
C.साठ वर्षों तक✗
D.चालीस वर्षों तक✗
Ans: पचास वर्षों तक


Q10. चार्ली की फ़िल्में किस पर आधारित हैं?
A.कल्पना पर✗
B.यथार्थ पर✗
C.भावनाओं पर✓
D.विचारों पर✗
Ans: भावनाओं पर


Q11. चार्ली की जो फ़िल्में हमें अलग प्रकार की भावनाओं का एहसास कराती हैं, उनमें से दो के नाम लिखिए।
A.रेल ऑफ़ सिटी और छिविटेड✗
B.मेट्रोपोलिस और द रोवंथ सील✓
C.वीक एण्ड तथा सन्डे✗
D.पोटिक्स और कोमेक्स✗
Ans: मेट्रोपोलिस और द रोवंथ सील


Q12. चार्ली की माँ किस प्रकार की नारी थी?
A.परित्यक्ता✓
B.विदूषी✗
C.लोकप्रिय अभिनेत्री✗
D.नौकरी पेशा✗
Ans: परित्यक्ता


Q13. चार्ली की माँ किस प्रकार की अभिनेत्री थी?
A.लोकप्रिय✗
B.सामान्य✓
C.सर्वश्रेष्ठ✗
D.घटिया✗
Ans: सामान्य


Q14. परिस्थितियों ने चार्ली को किस प्रकार का चरित्र बना दिया?
A.घुमंतू✓
B.अमीर✗
C.गरीब✗
D.शिक्षित✗
Ans: घुमंतू


Q15. चार्ली को किससे संघर्ष करना पड़ा?
A.राजाओं से✗
B.नेताओं से✗
C.फ़िल्म निर्माताओं से✗
D.जटिल परिस्थितियों से✓
Ans: जटिल परिस्थितियों से

Read More

अपठित काव्यांश | class 12th | mcqs for Hindi Unseen Passages अपठित बोध

अपठित काव्यांश प्रश्न उत्तर सहित भाग -1  


सुख-दुख मुस्काना नीरज से रहना,
वीरों की माता हूँ वीरों की बहना।
मैं वीर नारी हूँ साहस की बेटी,
मातृभूमि-रक्षा को
वीर सजा देती।
आकुल अंतर की पीर राष्ट्र हेतु सहना,
वीरों की माता हूँ वीरों की बहना।
मात-भूमि जन्म-भूमि
राष्ट्र-भूमि मेरी,
कोटि-कोटि वीर पूत
द्वार-द्वार दे री।
जीवन-भर मुस्काए भारत का अँगना,
वीरों की माता हूँ वीरों की बहना।

1- सुख दुख में मुस्कुराते हुए कैसे रहना चाहिए
(क) धीरज
(ख) धीर
(ग) शीर
(घ) वीर

2- आकुल अंतर की पीड़ा किसके लिए सहनी चाहिए
(क) राष्ट्र
(ख) समाज
(ग) जाति
(घ) धर्म

3- मातृभूमि जन्मभूमि………….. मेरी। उपयुक्त शब्द खाली स्थान में भरिए
(क) देवभूमि
(ख) गांव भूमि
(ग) शहर भूमि
(घ) राष्ट्रभूमि

4- भारत का अंगना कब तक मुस्कुराए
(क) जीवन भर
(ख) उम्र भर
(ग) मुट्ठी भर
(घ) पल भर

5- माता के लिए पर्यायवाची छांटिए
(क) जननी
(ख) दादी
(ग) नानी
(घ) बुआ

उत्तर- 1-क, 2-क, 3-घ, 4-क, 5-क

अपठित काव्यांश प्रश्न उत्तर सहित भाग -2  


हर किरण, तेरी संदेश वाहिका
पवन, गीत तेरे गाता
तेरे चरणों को छूने को
लालायित हिमगिरि का माथा!
तुझसे ही सूर्य प्रकाशित है
आलोक सृष्टि में तेरा है,
संपूर्ण सृष्टि का रोम-रोम
चिर ऋणी, उपासक तेरा है!
अगणित आकाश गंगाएँ
नन्हीं बूंदें तेरे आगे
तू आदि-अंत से मुक्त
काल-अस्तित्व हीन तेरे आगे!
हे जगत् नियंता, जगत-पिता,
है व्याप तेरा कितना ईश्वर,
तेरे चरणों में नत मस्तक,
कितनी धरती, कितने अंबर!

1- ईश्वर के चरण चुमने के लिए कौन लालायित रहता है
(क) पहाड़
(ख) नदियां
(ग) दरिया
(घ) हिमगिरी

२- किसका रोम रोम तेरा चिर ऋणी है
(क) छोटी सृष्टि
(ख) बड़ी सृष्टि
(ग) कम सृष्टि
(घ) संपूर्ण सृष्टि

3- तू आदि……….से मुक्त। रिक्त स्थान की पूर्ति कीजिए
(क) अब
(ख) तक
(ग) अंत
(घ) जब

4- सत्य कथन पर सही का चिन्ह लगाइए
(क) ईश्वर के चरणों में धरती अंबर नतमस्तक हैं
(ख) ईश्वर के चरणों में अंबर और हवा नतमस्तक हैं
(ग) ईश्वर के चरणों में धरती और आग नतमस्तक हैं
(घ) ईश्वर के चरणों में आग और हवा नतमस्तक

5- जगत पिता किसे कहा गया है
(क) ईश्वर
(ख) आज
(ग) संसार
(घ) समाज

उत्तर – 1-घ, 2-घ 3-ग, 4-क, 5-क

अपठित काव्यांश प्रश्न उत्तर सहित भाग -3 


क्षमा शोभती उस भुजंग को, जिसके पास गरल हो। 

उसको क्या जो दंतहीन, विषरहित, विनीत, सरल हो। 

तीन दिवस तक पंथ माँगते रघुपति सिंधु किनारे ।
बैठे पढ़ते रहे छंद अनुनय के प्यारे-प्यारे।।
उत्तर में जब एक नाद भी उठा नहीं सागर से।
उठी अधीर धधक पौरुष की आग राम के शर से।।
सिंधु देह धर ‘त्राहि-त्राहि’ करता आ गिरा शरण में।
चरण पूज दासता ग्रहण की, बँधा मूढ़ बंधन में ।।
सच पूछो, तो शर में ही बसती है दीप्ति विनय की।
संधि-वचन संपूज्य उसी का जिसमें शक्ति विजय की। ।

1- ‘क्षमा शोभती उस भुजंग को, जिसके पास गरल हो’ पंक्ति द्वारा कवि क्या कहना चाहता है?
(क) दुर्बल व्यक्ति का जीवन बेकार है?
(ख) विषैले सर्प किसी को क्षमा नहीं करते
(ग) क्षमा करने की बात उसी व्यक्ति को शोभा देती है, जिसके पास बल हो।
(घ) दुर्बल व्यक्ति किसी को क्षमा करने योग्य नहीं होता।

2- ‘पौरूष की आग राम के शर से’ पंक्ति में निहित अलंकार का नाम चुनिए
(क) रूपक
(ख) अनुप्रास
(ग) उत्प्रेक्षा
(घ) अनुप्रास

3- जब राम की प्रार्थना का समुद्र पर कोई प्रभाव नहीं पड़ा तो राम ने क्या किया सबसे उपयुक्त विकल्प चुनिए
(क) राम को बहुत क्रोध आ गया।
(ख) राम ने धनुष संभाल लिया।
(ग) राम ने सागर को सुखाने का निश्चय कर लिया।
(घ) राम ने सागर को सबक सुखाने के लिए अपने तरकश से एक अग्निबाण निकाल लिया।

4- ‘संधि वचन संपूर्ण उसी का जिसमें शक्ति विजय की’ पंक्ति का आशय स्पष्ट कीजिए
(क) दुर्बल व्यक्ति कोई काम नहीं कर सकता।
(ख) दुर्बल व्यक्ति की बात कोई नहीं मानता।
(ग) दुर्बल व्यक्ति का सभी उपहास करते हैं।
(घ) दुर्बल व्यक्ति से संधि प्रस्ताव का कोई औचित्य नहीं है।

5- अनुप्रयुक्त पर्यायवाची शब्द छांटिए
(क) भुजंग
(ख) नाग
(ग) विष
(घ) उरग

उत्तर – 1-ग, 2-क, 3-घ, 4-घ, 5-ग

अपठित काव्यांश प्रश्न उत्तर सहित भाग -4  


लोहे के पेड़ हरे होंगे, तू गान प्रेम का गाता चल,
नम होगी यह मिट्टी जरूर, आँसू के कण बरसाता चल। 

सिसकियों और चीत्कारों से, जितना भी हो आकाश भरा, 

कंकालों का हो ढेर, खप्परों से चाहे हो पटी धरा।
आशा के स्वर का भार, पवन को लेकिन, लेना ही होगा, 

जीवित सपनों के लिए मार्ग मुर्दों को देना ही होगा।
रंगों के सातों घट उड़ेल, यह अँधियाली रंग जाएगी,
उषा को सत्य बनाने को जावक नभ पर छितराता चल । 

आदर्शों से आदर्श भिड़े, प्रजा प्रज्ञा पर टूट रही,
प्रतिमा प्रतिमा से लड़ती है, धरती की किस्मत फूट रही 

आवर्तों का है विषम जाल, निरुपाय बुद्धि चकराती है, 

विज्ञान-यान पर चढ़ी हुई सभ्यता डूबने जाती है।
जब-जब मस्तिष्क जयी होता, संसार ज्ञान से चलता है, 

शीतलता की है राह हृदय, तू यह संवाद सुनाता चल।

1- लोहे के पेड़ किसके प्रतीक हैं ?
(क) नकली पेड़
(ख) मशीनें
(ग) मशीनी संस्कृति
(घ) विज्ञान

2- नम होगी यह मिट्टी जरूर कहकर कवि किस ओर संकेत कर रहा है ?
(क) प्रेम के बल पर शुष्क हृदयों में भाव भरे जा सकते हैं
(ख) वर्षा न होने के कारण सूखी मिट्टी वर्षा आने पर नम जरूर हो जाएगी
(ग) सूखी आंखें फिर आंसुओं से नम हो जाएंगी
(घ) इतने आंसू बहाओ की मिट्टी गीली हो जाए

3- दुख और निराशा के वातावरण में मनुष्य का क्या कर्तव्य होना चाहिए ?
(क) सपने देखें और साकार करें
(ख) आशा का संचार करें
(ग) मिट्टी नम करें
(घ) विज्ञान यान पर सवार हो

4- प्रेम की भावना से इस भौतिक बौद्धिक संसार पर विजय पाई जा सकती है यह भाव किस पंक्ति से व्यंजित हो रहा है ?
(क) जीवित सपनों के लिए मार्ग मुर्दों को देना ही होगा
(ख) आशा के स्वर का भार पवन को लेकिन लेना ही होगा
(ग) जब जब मस्तिष्क जयी होता संसार ज्ञान से चलता है
(घ) शीतलता की है राह ह्रदय, तू यह संवाद सुनाता चल

5- विज्ञान यान में कौन सा अलंकार है?
(क) अनुप्रास अलंकार
(ख) उपमा अलंकार
(ग) रूपक अलंकार
(घ) अन्योक्ति अलंकार

उत्तर- 1-ग, 2-क, 3-ख, 4-घ, 5-ग

Read More

अपठित गद्यांश | class 12th | mcqs for Hindi Unseen Passages अपठित बोध

यदि आप इस गद्यांश का चयन करते हैं तो कृपया उत्तर पुस्तिका में लिखिए कि आप प्रश्न संख्या 1 में दिए
गए गद्यांश-1 पर आधारित प्रश्नों के उत्तर लिख रहे हैं।

परिश्रम कल्पवृक्ष है। जीवन की कोई भी अभिलाषा परिश्रम रूपी कल्पवृक्ष से पूर्ण हो सकती है। परिश्रम
जीवन का आधार है, उज्ज्वल भविष्य का जनक और सफलता की कुंजी है। सृष्टि के आदि से अद्यतन काल
तक विकसित सभ्यता और सर्वत्र उप्रति परिश्रम का परिणाम है। आज से लगभग पचास साल पहले कौन
कल्पना कर सकता था कि मनुष्य एक दिन चाँद पर कदम रखेगा या अंतरिक्ष में विचरण करेगा पर निरंतर
श्रम की बदौलत मनुष्य ने उन कल्पनाओं एवं संभावनाओं को साकार कर दिखाया है। मात्र हाथ पर हाथ
घरकर बैठे रहने से कदापि संभव नहीं होता।

किसी देश, राष्ट्र अथवा जाति को उस देश के भौतिक संसाधन तब तक समृद्ध नहीं बना सकते जब तक कि
वहाँ के निवासी उन संसाधनों का दोहन करने के लिए अथक परिश्रम नहीं करते। किसी भूभाग की मिट्टी
कितनी भी उपजाऊ क्यों न हो, जब तक विधिवत परिश्रमपूर्वक उसमें जुताई, बुआई, सिंचाई, निराई-गुड़ाई
नहीं होगी, अच्छी फसल प्राप्त नहीं हो सकती। किसी किसान को कृषि संबंधी अत्याधुनिक कितनी ही
सुविधाएं उपलब्ध करा दीजिए, यदि उसके उपयोग में लाने के लिए समुचित श्रम नहीं होगा, उत्पादन क्षमता
में वृद्धि संभव नहीं है। परिश्रम से रेगिस्तान भी अत्र उगलने लगते हैं हमारे देश की स्वतंत्रता के पश्चात हमारी
प्रगति की द्रुतगति भी हमारे श्रम का ही फल है। भाखड़ा नांगल का विशाल बाँध हो या युबा या श्री हरिकोटा
केरॉकेट प्रक्षेपण केंद्र, हरित क्रांति की सफलता हो या कोविड 19 की रोकथाम के लिए टीका तैयार करना,
प्रत्येक सफलता हमारे श्रम का परिणाम है तथा प्रमाण भी है।

जीवन में सुख की अभिलाषा सभी को रहती है। बिना श्रम किए भौतिक साधनों को जुटाकर जो सुख प्राप्त
करने के फेर में है, वह अंधकार में है। उसे वास्तविक और स्थायी शांति नहीं मिलती। गांधीजी तो कहते थे कि
जो बिना श्रम किए भोजन ग्रहण करता है, वह चोरी का अत्र खाता है। ऐसी सफलता मन को शांति देने के
बजाए उसे व्यथित करेगी। परिश्रम से दूर रहकर और सुखमय जीवन व्यतीत करने वाले विद्यार्थी को ज्ञान
कैसे प्राप्त होगा? हवाई किले तो सहज ही बन जाते हैं, लेकिन वे हवा के हल्के झोंके से ढह जाते हैं। मन में मधुर
कल्पनाओं के संजोने मात्र से किसी कार्य की सिद्धि नहीं होती। कार्य सिद्धि के लिए उद्यम और सतत
उद्यम आवश्यक है। तुलसीदास ने सत्य ही कहा है-सकल पदारथ है जग माहीं करमहीन न पावत नाहीं।।
अर्थात इस दुनिया में सारी चीजें हासिल की जा सकती हैं लेकिन वे कर्महीन व्यक्ति को कभी नहीं मिलती हैं।

अगर आप भविष्य में सफलता की फसल काटना चाहते हैं, तो आपको उसके लिए वीज आज ही बोने होंगे.
आज बीज नहीं बोयेंगे, तो भविष्य में फ़सल काटने की उम्मीद कैसे कर सकते हैं? पूरा संसार कर्म और फल
के सिद्धांत पर चलता है इसलिए कर्म की तरफ आगे बढ़ना होगा।

यदि सही मायनों में सफल होना चाहते हैं तो कर्म में जुट जाएं और तब तक जुटे रहें जब तक कि सफल न हो
जाएँ। अपना एक-एक मिनट अपने लक्ष्य को समर्पित कर दें। काम में जुटने से आपको हर वस्तु मिलेगी जो
आप पाना चाहते हैं-सफलता, सम्मान, धन, सुख या जो भी आप चाहते हों।

निम्नलिखित में से निर्देशानुसार सर्वाधिक उपयुक्त विकल्पों का चयन कीजिए। प्रश्न (1) गद्यांश में परिश्रम को कल्पवृक्ष के समान बताया गया है क्योंकि इससे

—————————————————————————————————————————————————————————————-

(क) भौतिक संसाधन जुटाए जाते हैं

(ख) परिश्रमी व्यक्ति वृक्ष के समान परोपकारी होता है

(ग) इच्छा दमन करने का बल प्राप्त होता है

(घ) व्यक्ति की इच्छाओं की पूर्ण पूर्ति संभव है

Ans- (घ) व्यक्ति की इच्छाओं की पूर्ण पूर्ति संभव है

(2) गद्यांश में अच्छी फ़सल प्राप्त करने के लिए कहे गए कथन से स्पष्ट होता है कि-

(क) भौतिक संसाधनों का दोहन करना आवश्यक है

(ख) संसाधनों की तुलना में परिश्रम की भूमिका अधिक है

(ग) ज्ञान प्राप्त करने के लिए परिश्रम आवश्यक है

(घ) कष्ट करने से ही कृष्ण मिलते हैं

Ans- (ख) संसाधनों की तुलना में परिश्रम की भूमिका अधिक है

(3) भारत के परिश्रम के प्रमाण क्या-क्या बताए गए हैं ?

(क) बाँध, कोविड 19 की रोकथाम काटीका, प्रक्षेपण केंद्र

(ख) कोविड 19 की रोकथाम का टीका, प्रक्षेपण केंद्र, रेगिस्तान

(ग) कोविड 19 की रोकथाम का टीका, प्रक्षेपण केंद्र,हवाई पट्टियों का निर्माण

(घ) वृक्षारोपण,कोविड 19 की रोकथाम का टीका, प्रक्षेपण केंद्र

Ans- (क) बाँध, कोविड 19 की रोकथाम काटीका, प्रक्षेपण केंद्र

(4) कैसे व्यक्ति को अंधकार में बताया गया है ?

(क) श्रमहीन व्यक्ति

(ख) विश्रामहीन व्यक्ति

(ग) नेत्रहीन व्यक्ति

(घ) प्रकाशहीन व्यक्ति

Ans- (क) श्रमहीन व्यक्ति

(5) हवाई किले तो सहज ही बन जाते हैं, लेकिन ये हवा के हल्के झोंके से दह जाते हैं।”

इस कयन के द्वारा लेखक कहना चाहता है कि-

(का तेज़ चक्रवर्ती हवाओं से आवासीय परिसर नष्ट हो जाते हैं

(ख) हवा का रुख अपने पक्ष में परिश्रम से किया जा सकता है

(ग) हवाई कल्पनाओं को सदैव संजोकर रखना असंभव है

(घ) परिश्रमहीनता से वैयक्तिक उपलब्धि नितांत असंभव है

Ans- (घ) परिश्रमहीनता से वैयक्तिक उपलब्धि नितांत असंभव है

(6) सतत उद्यम से क्या तात्पर्य है.

(क निरंतर तपता हुआ उद्यम

(ख) निरंतर परिश्रम करना

(ग) सतत उठते जाना

घ) ज्ञान का सतत उद्गम

Ans- (ख) निरंतर परिश्रम करना

(7) किस अवस्था में प्राप्त सफलतामनको व्यथित करेगी ?

(कासकल पदार्थ द्वारा प्राप्त करने पर

(ख) भौतिक संसाधनों द्वारा प्राप्त करने पर

(ग) दूसरों द्वारा किए गए अथक प्रयासों से

(घ) आसान व श्रमहीन तरीके से प्राप्त करने पर

Ans- (घ) आसान व श्रमहीन तरीके से प्राप्त करने पर

(8) स्वतंत्रता शब्द में उपसर्गव प्रत्यय अलग करने पर होगा-

(क) स्व+तंत्र+ता

(ख) सु+तंत्र +ता

(ग) स + वतंत्र +ता

(घ) स्+वतं+ता

Ans- (क) स्व+तंत्र+ता

9)समुचित’ शब्द का अर्थ है-

(क) उपर्युक्त

(ख) उपयुक्त

(ग) उपभोक्ता

(घ) उपक्रम

Ans- (ख) उपयुक्त

(10) गद्यांश के लिए उपयुक्त शीर्षक है-

(क) परिश्रम और स्वतंत्रता

(ख) परिश्रम सफल जीवन का आधार

(ग) परिश्रम और कल्पना

(घ) परिश्रम कल्पना की उड़ान

Ans- (ख) परिश्रम सफल जीवन का आधार

( अथवा )

————

यदि आप इस गद्यांश का चयन करते हैं तो कृपया उत्तर पुस्तिका में लिखिए कि आप प्रश्न संख्या 1 में दिए गए गद्यांश-2 पर आधारित प्रश्नों के उत्तर लिख रहे हैं।

———————————————————————————————————————————————————————————————

नीचे दिए गए गदपांश को ध्यानपूर्वक पदिए और उस पर आधारित प्रश्नों के उत्तर सही विकल्प चुनकर लिखिए।

विज्ञान प्रकृति को जानने का महत्वपूर्ण साधन है। भौतिकता आज आधुनिक वैज्ञानिक और तकनीकी
प्रगति का स्तर निर्धारित करती है। विज्ञान केवल सत्य, अर्थ और प्रकृति के बारे में उपयोग ही नहीं बल्कि
प्रकृति की खोज का एक क्रम है। विज्ञान प्रकृति को जानने का एक महत्वपूर्ण साधन है। यह प्रकृति को
जानने के विषय में हमें महत्वपूर्ण और विश्वसनीय ज्ञान देता है। व्यक्ति जिस बात पर विश्वास करता है वही
उसका ज्ञान बन जाता है। कुछ लोगों के पास अनुचित ज्ञान होता है और वह उसी ज्ञान को सत्य मानकर
उसके अनुसार काम करते हैं। वैज्ञानिकता और आलोचनात्मक विचार उस समय जरूरी होते हैं जब वह
विश्वसनीय ज्ञान पर आधारित हों। वैज्ञानिक और आलोचक अक्सर तर्कसंगत विचारों का प्रयोग करते हैं।
तर्क हमें उचित सोचने पर प्रेरित करते हैं। कुछ लोग तर्क संगत विचारधारा नहीं रखते क्योंकि उन्होंने कभी
तर्क करना जीवन में सीखा ही नहीं होता।

प्रकृति वैज्ञानिक और कवि दोनों की ही उपास्या है। दोनों ही उससे निकटतम संबंध स्थापित करने की चेष्टा
करते है, किंतु दोनों के दृष्टिकोण में अंतर है। वैज्ञानिक प्रकृति के बाल्य रूप का अवलोकन करता है और सत्य
की खोज करता है, परंतु कवि बाड्य रूप पर मुग्ध होकर उससे भावों का तादात्म्य स्थापित करता है। वैज्ञानिक
प्रकृति की जिस वस्तु का अवलोकन करता है, उसका सूक्ष्म निरीक्षण भी करता है। चंद्र को देखकर उसके
मस्तिष्क में अनेक विचार उठते हैं उसका तापक्रम क्या है, कितने वर्षों में वह पूर्णतः शीतल हो जाएगा,ज्वार-
भाटे पर उसका क्या प्रभाव होता है, किस प्रकार और किस गति से वह सौर मंडल में परिक्रमा करता है और
किन तत्वों से उसका निर्माण हुआ है? वह अपने सूक्ष्म निरीक्षण और अनवरत चिंतन से उसको एक लोक
ठहराता है और उस लोक में स्थित ज्वालामुखी पर्वतों तथा जीवनधारियों की खोज करता है। इसी प्रकार वह
एक प्रफुल्लित पुष्प को देखकर उसके प्रत्येक अंग का विश्लेषण करने को तैयार हो जाता है। उसका प्रकृति-
विषयक अध्ययन वस्तुगत होता है। उसकी दृष्टि में विश्लेषण और वर्ग विभाजन की प्रधानता रहती है। वह
सत्य और वास्तविकता का पुजारी होता है। कवि की कविता भी प्रत्यक्षावलोकन से प्रस्फुटित होती है वह
प्रकृति के साथ अपने भावों का संबंध स्थापित करता है। वह उसमें मानव चेतना का अनुभव करके उसके

साथ अपनी आंतरिक भावनाओं का समन्वय करता है। वह तथ्य और भावना के संबंध पर बल देता है। उसका
वस्तुवर्णन हृदय की प्रेरणा का परिणाम होता है, वैज्ञानिक की भाँति मस्तिष्क की यांत्रिक प्रक्रिया नहीं।
कवियों द्वारा प्रकृति-चित्रण का एक प्रकार ऐसा भी है जिसमें प्रकृति का मानवीकरण कर लिया जाता है
अर्थात प्रकृति के तत्त्वों को मानव ही मान लिया जाता है।

प्रकृति में मानवीय क्रियाओं का आरोपण किया जाता है। हिंदी में इस प्रकार का प्रकृति-चित्रण छायावादी
कवियों में पाया जाता है। इस प्रकार के प्रकृति-चित्रण में प्रकृति सर्वथा गौण हो जाती है। इसमें प्राकृतिक
वस्तुओं के नाम तो रहते हैं परंतु झंकृत चित्रण मानवीय भावनाओं का ही होता है। कवि लहलहाते पौधे का
चित्रण न कर खुशी से झूमते हुए बच्चे का चित्रण करने लगता है

निम्नलिखित में से निर्देशानुसार सर्वाधिक उपयुक्त विकल्पों का चयन कीजिए।

———————————————————————————————-

(1) विज्ञान प्रकृति को जानने का एक महत्वपूर्ण साधन है क्योंकि यह-

(क) समग्र ज्ञान के साथ तादात्म्प स्थापित करता है

(ख) प्रकृति आधुनिक विज्ञान की उपास्या है

(ग) महत्वपूर्ण और विश्वसनीय ज्ञान प्रदान करता है

(घ) आधुनिक वैज्ञानिक का स्तर निर्धारित करता है

Ans- (ग) महत्वपूर्ण और विश्वसनीय ज्ञान प्रदान करता है

(2) ‘वैज्ञानिक प्रकृति के बाहय रूप का अवलोकन करते हैं यह कथन दर्शाता है कि वे

(क) कवियों की तुलना में अधिक श्रेष्ठ हैं

(ख) ज्वारभाटे के परिणाम से बचना चाहते हैं

(ग) वर्ग विभाजन के पक्षधर बने रहना चाहते हैं

(घ) प्रकृति से अविदूर रहने का प्रयास करते हैं

Ans- (घ) प्रकृति से अविदूर रहने का प्रयास करते हैं

(3)सूक्ष्म निरीक्षण और अनवरत चिंतन से तात्पर्य है-

(क) सौर मंडल को एक लोक और परलोक ठहराना

(ख) छोटी-छोटी सी बातों पर चिंता करना

(ग) बारीकी से सोचना व निरंतर देखना

(घ ) बारीकी से देखना और निरंतर सोचना

Ans- (घ ) बारीकी से देखना और निरंतर सोचना

(4) कौन अनवरत चिंतन करता है ?

(क) सूक्ष्माचारी

(ख) विज्ञानोपासक

(ग) ध्यानविलीन योगी

(घ) अवसादग्रस्त व्यक्ति

Ans- (ख) विज्ञानोपासक

(5) कौन वास्तविकता का पुजारी होता है ?

(क) यथार्थवादी

(ख) काव्यवादी

(ग) प्रकृतिवादी

(घ) विज्ञानवादी

Ans- (घ) विज्ञानवादी

(6) कवि की कविता किससे प्रस्फुटित होती है ?

(क) विचारों के मंथन से

(ख) प्रकृति के साक्षात दर्शन से

(ग) भावनाओं की उहापोह से

(घ) प्रेम की तीव्र इच्छा से

Ans- (ख) प्रकृति के साक्षात दर्शन से

(7) कवि के संबंध में इनमें से सही तथ्य है-

(क)ज्वालामुखी के रहस्य जानता है

(ख) जीवधारियों की खोज करता है

(ग) सत्य का उपासक नहीं होता

(घ) प्रफुल्लित पुष्प का अध्ययनकर्ता

Ans- (घ) प्रफुल्लित पुष्प का अध्ययनकर्ता

(8) ‘इत’ प्रत्यय युक्त शब्द कौन-सा है ?

(क) झंकृत

(ख) नित

(ग) ललित

(घ) उचित

Ans- (ख) नित

(9) उपर्युक्त गद्यांश का उपयुक्त शीर्षक है

(क) कवि की सोच और वैज्ञानिकता

(ख) प्रकृति के उपासक-कवि और वैज्ञानिक

(गा वैज्ञानिक उन्नति और काव्य जगत

(घ) वैज्ञानिक दृष्टिकोण-अतुलनीय

Ans- (क) कवि की सोच और वैज्ञानिकता

(10) प्रकृति का मानवीकरण दर्शाता है कि-

(क) कल्पना प्रधान व भावोन्मेशयुक्त कविता रची जा रही है

(ख) मानवीकरणअलंकार का दुरुपयोग हो रहा है

(ग) प्रकृति व मानव के सामंजस्य से उदित दीप्ति फैल रही है

(घ) मानव द्वारा प्रकृति का संरक्षण हो रहा है

Ans- (ख) मानवीकरणअलंकार का दुरुपयोग हो रहा है

(11) लहलहाते पौधे का चित्रण न कर झूमते बच्चे का चित्रण करना दर्शाता है कि-

(क) कवि भावावेश में विषय से भटक गए हैं

(ख) प्रकृति के तत्वों को मानव माना है

(ग) कवि वैज्ञानिक विचारधारा के पक्ष में है

(घ) कवि विकास स्तर पर ही है

Ans- (क) कवि भावावेश में विषय से भटक गए हैं

प्रश्न 2 नीचे दो काव्यांश दिए गए हैं। किसी एक काव्यांश को ध्यानपूर्वक पढ़िए और उस पर आधारित प्रश्नों के उत्तर सही विकल्प चुनकर दीजिए. (1×8 = 8)

—————————————————————————————————————————————————————————————–

यदि आप इस काव्यांश का चयन करते हैं तो कृपया उत्तर पुस्तिका में लिखिए कि आप प्रश्न संख्या 2 में दिए गए काव्यांश 1 पर आधारित प्रश्नों के उत्तर लिख रहे हैं।

मैंने हँसना सीखा है
मैं नहीं जानती रोना।
बरसा करता पल-पल पर
मेरे जीवन में सोना।

मैं अब तक जानन पाई
कैसी होती है पीड़ा?
हंस-हंस जीवन में कैसे
करती है चिंता क्रीड़ा?

जग है असार सुनती हूँ
मुझको सुख – सार दिखाता।
मेरी आँखों के आगे
सुख का सागर लहराता।

कहते हैं होती जाती
खाली जीवन की प्याली।
पर मैं उसमें पाती हूँ
प्रतिपल मदिरा मतवाली।

उत्साह,उमंग निरंतर
रहते मेरे जीवन में।
उल्लास विजय का सता
मेरे मतवाले मन में।

आशा आलोकित करती
मेरे जीवन के प्रतिक्षण।
हैं स्वर्ण-सूत्र से वलयित
मेरी असफलता के घन।

सुख भरे सुनहले बादल
रहते हैं मुझको बादल घेरे।
विश्वास, प्रेम, साहस हैं
जीवन के साथी मेरे।।

(1) बरसा करता पल-पल पर मेरे जीवन में सोना”| कवयित्री का सोना से अभिप्राय है-

(क) स्वर्ण

(ख) कंचन

(ग) आनन्द

(घ) आराम

Ans- (ग) आनन्द

(2) असफलता के बादलों को कवयित्री ने किससे घेरकर रखा है ?

(क) असफलता के बादलों को सोने की छड़ी से घेरकर रखा है।

(ख) कवयित्री सफलता में भी असफलता की आशा से भरी रहती है।

(ग) कवयित्री ने असफलता के बादलों को सोने के सूत्र से घेरकर रखा है।

(घ) बादल के बरसने पर निकलने वाली बूंदों से क्योंकि इनसे नव सृजन होता है।

Ans- (ग) कवयित्री ने असफलता के बादलों को सोने के सूत्र से घेरकर रखा है।

(3) कवयित्री द्वारा विश्वास, प्रेम और साहस को अपना जीवन साथी बनाकर रखना यह निष्कर्ष निकालता है कि

(क) अनुकूल परिस्थितियां सदैव वश में नहीं रह सकती।

(ख) विपरीत परिस्थितियों में भी आशा का दामन नहीं छोड़ना चाहिए।

(ग) जीवन में हितकारी साथी सदैव साथ होने चाहिए।

(घ) प्रेम, विश्वास व साहस की डोर सदैव लंबी होती है।

Ans- (ख) विपरीत परिस्थितियों में भी आशा का दामन नहीं छोड़ना चाहिए।

(4) ‘मुझको सुख-सार दिखाता’ कवयित्री को यह अनुभूति कब होती है? और क्यों? समझाइए।

(क) जब लोग संसार को साहित्य विहीन बताते हैं क्योंकि अब लोगों की साहित्य के प्रति रुचि पूर्ववत नहीं रही

(ख) लोगों द्वारा प्रयोजनहीनता दर्शाए जाने पर क्योंकि संसार सुख से भरा हुआ है।

(ग) जब कवयित्री विशाल सागर को फैले हुए देखती है और प्रसत्र होती हैं।

(घ) कवयित्री के अनुसार जीवन में केवल खुशियां ही हैं क्योंकि उन्होंने कभी पीड़ा को नहीं देखा।

Ans- (ख) लोगों द्वारा प्रयोजनहीनता दर्शाए जाने पर क्योंकि संसार सुख से भरा हुआ है।

(5) कवयित्री असफलताओं को किस रूप में स्वीकार करती हैं ?

(क) प्रसत्रता के साथ ग्रहण करती हैं।

(ख) वेदनामयी अवस्था में ग्रहण करती हैं।

(ग) तिरस्कृत कर देती हैं।

(घ) हताश होकर स्वीकार करती हैं।

Ans- (क) प्रसत्रता के साथ ग्रहण करती हैं।

(6)आधुनिक जीवन में भी मनुष्य के सामने अनेक समस्याएं आती हैं।इस कविता के माध्यम से समस्याओं

का समाधान कैसे किया जा सकता है? कविता में निहित संदेश द्वारा स्पष्ट कीजिए।

(क) मनुष्य हताश होकर सहायतार्थ समस्याओं का हल करने का प्रयास अथक भाव से करे।

(ख) मनुष्य हताश न हो और समस्याओं का हल करने का प्रयास अथक भाव से करे।

(ग) निरंतर प्रयासरत रहकर परस्परावलंब से जीवन पथ पर गतिमान रहे।

(घ) सुख और दुख जीवन में आते जाते रहते हैं।

Ans- (ख) मनुष्य हताश न हो और समस्याओं का हल करने का प्रयास अथक भाव से करे।

(7) उत्साह,उमंग निरंतर रहते मेरे जीवन में।

पंक्तियों में प्रयुक्त अलंकार है-

(क ) रूपक

(ख) अनुप्रास

(ग) श्लेष

(घ) उपमा

Ans- (ख) अनुप्रास

(8) कविता के लिए उपयुक्त शीर्षक है-

(क) सुख और दुख

(ख) मेरा जीवन

(ग) मेरा सुख

(घ) परपीडा

Ans- (ख) मेरा जीवन

Read More

Chapter 4 डायरी के पन्ने | class 12th | mcqs for hindi vitan

बहुविकल्पी प्रश्न उत्तर

1. ऐन का कौन-सा ऐसा शौक था जिसे उसके घरवाले पसंद नहीं करते थे?

A.हर समय पढ़ाई करना

B.नई-नई केश-सज्जा करना

बहुत बोलना

D.गीत गाना

ANSWER-B. नई-नई केश-सज्जा करना

2. मिस्टर इसेल के बारे में लेखिका ने किस विशेषण का प्रयोग किया है

A.चुगलखोर

B.कंजूस

अनुशासनप्रिय

D.दयानु

ANSWER-A.चुगलखोर

3. मिस्टर डसेल लेखिका की शिकायत किससे करता था?

A.लेखिका के पापा से

B.लेखिका की मम्मी से

Cलेखिका की बहन से

D. मिस्टर वान दान से

ANSWER-B. लेखिका की मम्मी से

4. कौन-सा देश जर्मनी के विरुद्ध युद्ध में शामिल नहीं हुआ था?

A.इंग्लैंड

B.फ्रांस

C.टर्की 

D.अमेरिका

ANSWER-C.

5. कौन-सी मुद्रा अवैध घोषित की गई थी?

A100 गिल्डर का नोट

500 गिल्डर का नोट

C.1 गिल्डर का नोट

D.1000 गिल्डर का नोट

ANSWER-D.1000 गिल्डर का नोट

6. घायल सैनिकों से कौन बातचीत करता था?

A. हिटलर

B.चर्चिल

विल्सन

D.जॉनसन

ANSWER-A. हिटलर

7. घायल सैनिक अपने जख्म दिखाते हुए क्या महसूस कर रहे थे?

.दुख

B.पीड़ा

C.गर्व

D. निराशा

ANSWER-C.गर्व

8.हर सोमवार को अखिका के लिए सिनेमा और थियेटर पत्रिका कौन कर आते थे?

A.मिस्टर कुगतर

B.मिस्टर उसेन

C.पापा

D. मिस्टर वान दान

ANSWER-A. मिस्टर कुगलर

9. किसको जन्मजात बहादुर कहा गया है?

Aहिटलर को

B.चर्चित को

C.विल्सन को

D. मिस्टर वान दान को

ANSWER-B.चर्चिल को

10. ऐन किनको मूर्ख समझती ?

.A.मिसेज़ वान दान और मिस्टर उसेन को

.मिस्टर वान दान और मिसेज़ वान दान

मिस्टर उसेन और मिसेज़ उसेल को

D.मार्गोट को और मिसेज़ वान दान

ANSWER-A. मिसेज़ वान दान और मिस्टर उसेन को

 11. ऐन किसको शांतिदायिनी और आशादायिनी मानती है।

Aप्रेम को

.मित्रता को

Cरात को

D. प्रकृति को

ANSWER- D. प्रकृति को

12. युद्ध के समय स्लैक मार्केट में जूते का नया तला कितने का मिलता था?

.A7.50 गिन्डर का

B.5 गिन्डर का

C 6गिन्दर का

D.8 गिन्दर का

ANSWER-A7.50 गिन्दर का

13. मिस्टर उसेन किस कारण से लेखिका से खफा था?

Aझगड़ा करने के कारण

B.तकिया उठाने के कारण

पीटर के साथ छत पर जाने के कारण

D. उसेन को झूठा कहने के कारण

ANSWER-B.तकिया उठाने के कारण

14.13 जून, 1944 को ऐन कितने वर्ष की हो गई थी।

A12 वर्ष की

13 वर्ष की

C15 वर्ष की

14 वर्ष की

Answer-C 15 वर्ष की

15.जन्मदिन पर ऐन को क्या मिले थे?

केवन फूल

.केवल कपड़े

C वन पुस्तकें

D.बहुत-से उपहार

ANSWER- D. बहुत-से उपहार

16.ऐन ने पीटर को किस प्रकार का व्यक्ति कहा है।

Aसज्जन

B. चालाक

Cघुन्ना

D.डरपोक

ANSWER-C.घुन्ना

17.ऐन फ्रैंक ने बायरी का आरंभ किस तिथि से किया?

A 9 जुलाई, 1943 को

 B.8 जुलाई, 1942 को

C 9 जुलाई, 1942 को

D.10 जुलाई, 1942 को

ANSWER-B.8 जुलाई, 1942 को

18. ऐन फ्रैंक की बड़ी बहन का नाम क्या था?

Aकिट्टी

B.बिट्टी

c मागाँट

D.बेप

ANSWER-Cमार्गोट

19.ऐन फ्रैंक के पापा को किसके बुलावे का नोटिस मिला था?

A एन एस. एस.

B.आर.एस. एस.

Cएम-एस. एस.

D.ए.एस. एस.

ANSWER-D. ए एस. एस.

20, मिस्टर वान दान ऐन फ्रैंक के पापा का क्या लगता था?

Aबड़ा भाई

B.छोटा भाई

Cमित्र

.D. बिजनेस पार्टनर

ANSWER-D. बिजनेस पार्टनर

21.ए.एस एस के बुलाने का क्या मतलब था?

A पुलिस द्वारा गिरफ्तारी

B. यातना शिविर में जाना

Cअस्पताल में जाना

D.फाँसी पर चढ़ना

ANSWER-B.यातना शिविर में जाना

 22 पेजक किया धर्म को संबंधित पौर

Aईसाई धर्म *

.मुस्लिम धर्म से

यदी धर्म से

OD.बौध धर्म से

ANSWER-C यदी धर्म से

23. ए.एस.एस. का बुलावा किसके लिए आया चार

न दान के लिए

Bपापा के लिए

Cऐन बैंक के लिए

.D.मार्गाट के लिए

ANSWER-D. मार्गोट के लिए

Read More

Chapter 3 अतीत में दबे पाँव | class 12th | mcqs for hindi vitan

 बहुविकल्पी प्रश्न उत्तर

1.कोठार किसके काम आता होगा?

Aसुरक्षा निए

धन जमा करने लिए

अनाज जमा करने लिए

 पानी जमा करने लिए

ANSWER-C. अनाज जमा करने लिए

2.दादी वाली मूर्ति का नाम क्या रखा गया है

मुख्य नरेश

धर्म नरेश

c याजक नरेश

गौण नरेश

ANSWER-C. याजक नरेश

3. मुअनजो-दो हड़प्पा से प्राप्त हुई नर्तकी की मूर्ति किस राष्ट्रीय संग्रहालय में रखी हुई है।

Aइस्लामाबाद संग्रहालय में

b साहौर संग्रहालय में

c..दिल्ली संग्रहालय में

.नंदन संग्रहालय में

ANSWER-C.दिन्नी संग्रहालय में

4. मुजनजो-दो की गलियों तथा घरों को देवकर सेवक को किस प्रदेश का ख्याल आया?

A.हरियाणा

b.पंजाब

c.उत्तर प्रदेश

d.राजस्थान

ANSWER- D.राजस्थान

5. मुअनजो-दो के घरों में दहसते हुए अंधक को किस गाँव की बाद आई।

a.कुलधरा

b. कुमा

c.जुनधारा

D.शुभधरा

ANSWER-A. कुजयरा

6. मुअनजो-दो की खुदाई में निकली पंजीकृत पीओ की संख्या कितनी थी।

.A 50 हजार से अधिक

b.20 हजार से अधिक

c.30 हजार से अधिक

d.60 हजार से अधिक

ANSWER= A. 50 हजार से अधिक

7.खुदाई से प्राप्त गेहूं का रंग कैसा है।

Aपीला

b.काला

c.हरा

d.नीला

ANSWER= B.काला

8. अजायबघर में तैनात व्यक्ति का नाम क्या था?

Aनवाज़ खान

b. मोहम्मद खान

c.अनी नवाज

D.अभी बख्तावर

ANSWER-C.अनी नवाज़

9.सिंधु सभ्यता की खूबी क्या है

.A.सौदर्य-बोध

b.संस्कृति-बोध

c.सभ्यता-बोध

d.नागर-बोध

ANSWER-A.सौदर्य-बोध

10. लेखक ने सिंधु सभ्यता के सौंदर्य-बोध को क्या नाम दिया है।

Aराज-पोषित

b.धर्म-पोषित

c.समाज-पोषित

d.व्यापार-पोषित

ANSWER-C.समाज-पोषित

 11. मुजनजो-दो अपने कान में किसका केंद्र हा होगा।

.A.सभ्यताका

B.राजनीति का

c र्मा

d.व्यापार का

ANSWER-A.सम्बता का

12. मुअनजो-दाहो नगर कितने हैक्टेयर में फैला हुआ था।

A.100 हैक्टेयर

b.200 हैक्टेयर

c..500 हैक्टेयर

d.150 हैक्टेयर

ANSWER-.200 हैक्टेयर

13.अग्न इमारत में कितने सो

A.20

b.30 से

c.15

d.40 खंभे

ANSWER-A.20

14. डीके हजका किसके नाम पर रखा गया है।

A.दयाकाशीनाथ

.दीक्षितकाशीनाथ के

धर्मकाशीनाथ

दयानुकाशीनाथ के

ANSWER-B. दीक्षितकाशीनाथ के

15. मुञ्जनजोदड़ो की जंबी सड़क अब कितनी बची है।

 A. 2 मीन

3मीन

1/2 मील

1 मीन

ANSWER-C1/2 मीन

16. मुजनजोदड़ो में जगभग कितने कुएँ ।

A.500

.200

.800

.700

ANSWER-D.700

Read More