GEAS COACHING PART 3

Which of the following statements about nuclear fission is always correct?
Nuclear fission is an energetically favourable process for heavy atoms
No new elements can be produced
Both A and B
None of the choices
Which one of the following would be most likely to undergo thermonuclear fusion?
4 He
56 Fe
235 U
2 H
Consider the case of a radioactive element X which decays by electron (beta) emission with a half-life of 4 days to a stable nuclide of element Z. Which of the following statements is CORRECT?
After 8 days, the sample will consist of one-fourth element Z and three-fourths element X
Element Z will weigh exactly the same as element X when decay is complete (weighed to an infinite number of significant figures)
If element X has an atomic number equal to n, then element X has an atomic number equal to n - 1.
2.0g of element X is required to produced 1.5g of element Z after 8 days (to 2 significant figures)
How old is a bottle of wine if the tritium (3H) content (called activity) is 25% that of new wine? The half-life of tritium is 12.5 years.
23 yr
25 yr
20 yr
15 yr
Who invented OOP
Luca Cardelli
Alan Key
Christopher J. Date
Alexander Stepanov
Which is not a feature of OOP in general definitions?
A. Efficient code
B. Code reusability
C. Modularity
D. Duplicate/Redundant data
Which was the first purely object-oriented programming language developed?
C++
Java
Python
Matlab
When OOP concept did first came into picture?
1990’s
1970’s
1980’s
2000's
Which feature of OOP indicates code reusability?
A. Abstraction
B. Polymorphism
C. Encapsulation
D. Inheritance
Which header file is required in C++ to use OOP?
OOP can be used without using any header file
It supports usual declaration of primitive data types
Message passing
The language must follow all the rules of OOP
Which doesn’t come under OOP concept?
A. Data hiding
B. Message passing
C. Platform independent
D. Data binding
Which is the correct syntax of inheritance?
A. Class base_classname : access derived_classname{/*define class body*/};
B. Class derived_classname : access base_classname{/*define class body*/};
C. Class derived_classname : base_classname{/*define class body*/};
D. Class base_classname : derived_classname{/*define class body*/};
Which feature of OOP is indicated by the following code? Class student{ int marks;}; class topper:public student{ int age;topper(int age){this.age=age;}};
A. Encapsulation and Inheritance
B. Inheritance and polymorphism
C. Polymorphism
D. Inheritance
The feature by which one subject can interact with another object is ___.
Message passing
Inheritance
Overloading
None of the choices
How many types of access specifiers are provided in OOP (C++)?
2
1
3
5
In multilevel inheritance, which is the most significant feature of OOP used?
A. Code efficiency
B. Code readability
C. Flexibility
D. Code Reusability
What is encapsulation in OOP?
It is way of combining various data members and member functions that operate on those data members into a single unit
Copy an object so that it can be passed to a function
Increases overhead of function definition always
. Hiding the implementation and showing only the features
Which is not true about polymorphism?
A. Helps in redefining the same functionality
B. Increases overhead of function definition always
C. It is featured of OOP
D. Ease in readability of program
Which constructor will be called from the object
created in the below C++ code?
class A
{
int I;
A ()
{
i=0; cout&|t;&|t;i;
}
A (int x=0)
{
i=x; cout&|t;&|t;i;
}
};
A obj1;
A. Parameterized constructor
B. Default constructor
C. Run time error
D. Compile time error
What is an abstraction in object-oriented programming?
A. Hiding the implementation and showing only the features
B. Hiding the important data
C. Hiding the implementation
D. Showing the important data
Which can show polymorphism?
A. Overloading &&
B. Overloading <<
C. Overloading ||
D. Overloading +-
Which is correct for the class defined below?
class student
{
int marks;
public:student(){}
student(int x)
{
marks=x;
}
};
main()
{
student s1(100);
student s2();
student s3=100;
return 0;
}
A. Program will give compile time error
B. Object s3 syntax error
C. Only object s1 and s2 will be created
D. Program run and all objects are created –
In which access should a constructor be defined, so that object of the class can be created in any function?
Public
Private
Local
Network
The copy constructors can be used to ____.
A. Copy an object so that it can be passed to another primitive type variable
B. Copy an object for type casting
C. Copy an object so that it can be passed to a function
D. Copy an object so that it can be passed to a clas
Which constructor will be called from the object obj2
in the following C++ program?
class A
{
int I;
A();
{
i=0;
}
A(int x)
{
i=x+1;
}
A(int y, int x)
{
i=x+y;
}
};
Aobj1(10);
Aobj2(10,20);
Aobj3;
A. A(int y, int x)
B. A(int y; int x)
C. A(int y)
D. A(int x)
Which among the following represents correct constructor?
A. -classname()
B. classname()
C. ()classname
D. ∼classname()
What happens when an object is passed by reference?
A. Destructor is called at end of function
B. Destructor is called when called explicitly
C. Destructor is not called
D. Destructor is called when function is out of scope
Which access scpecifier is usually used for data members of a class?
Public
Private
Hub
Local
How to access data members of a class?
Dot
Arrow
Dot or arrow
Both dot and arrow
Which feature of OOP reduces the use of nested classes?
A. Inheritance
B. Abstraction
C. Binding
D. Encapsulation
Which keyboard among the following can be used to declare an array of objects in java?
A. allocate
B. new
C. arr
D. create
Which operator can be used to free the memory allocated for an object in C++?
A. Unallocate
B. Collect
C. Free()
D. delete
Which of the following is not a property of an object?
A. Properties
B. Identity
C. Names
D. Attributes
Which type of members can’t be accessed in derived classes of a base class?
Public
Private
Local
Network
Which among the following best describes the inheritance?
Using the data and functions into derived segment
Destructor is called when called explicitly
Member functions having the same name in base and derived classes
Using address of member function
Single level inheritance supports ____ inheritance.
A. Language independency
B. Multiple inheritance
C. Compile time
D. Runtime
How to overcome diamond problem?
A. Using separate derived class
B. Using virtual keyboard with same name function
C. Can’t be done
D. Using alias name
Which keyword is used to declare virtual functions?
A. Virt
B. virtual
C. virtually
D. anonymous
What happens if non static members are used in static member function?
A. Execute fine
B. Compile time error
C. Executes if that member function is not used
D. Runtime error
What is friend member functions in C++?
Non-member functions which have access to all members (including private) of a class
Member functions having the same name in base and derived classes
Member functions having the same name in base class only
None of the choices
Where is the memory allocated for the objects?
A. Cache
B. HDD
C. ROM
D. RAM
Which of the following best describes member function overriding?
A. Member functions having the same name in derived class only
B. Member functions having the same name and different signature inside main function
C. Member functions having the same name in base and derived classes
D. Member functions having the same name in base class only
Encapsulation and abstraction differ as ___.
A. Hiding and hiding respectively
B. Binding and Hiding respectively
C. Hiding and Binding respectively
D. Can be used any way
Which feature of OOP is exhibited by the function overriding?
A. Polymorphism
B. Abstraction
C. Encapsulation
D. Inheritance
How to access the private member function of a class?
A. Using class address
B. Using object of class
C. Using object pointer
D. Using address of member function
Which keyword should be used to declare static variables?
A. const
B. static
C. common
D. stat
Which is correct syntax for declaring pointer to object?
A. *className objectName;
B. className* objectName;
C. className objectName();
D. className objectName;
The color on CRT screen is obtained by the combination of:
Red, Green, Blue
Yellow, Green, Blue
Red, White,Violet
Yellow, Orange, Green
How many types of CAD are there?
2
5
1
4
Which class/set of classes can illustrate polymorphism
in the following C++ code?
abstract class student
{
public:int marks;
calc_grade();
}
class topper:public student
{
public:calc_grade()
{
return 10;
}
};
class average:public student
{
public:calc_grade()
{
return 20;
}
};
class failed{int marks;};
A. Only class student and topper together can show polymorphism
B. Only class student can show polymorphism
C. Class failed should also inherit class student for this code to work for polymorphism
D. All class students, topper and average together can show polymorphism
If data members are private, what can we do to access them from the class object?
A. Private data members can never be accessed from outside the class
B. Create public member functions to access those data numbers
C. Create private member functions to access those data members
D. Create protected member functions to access those data members
Which among the following is not a necessary condition for constructors?
Must be passed by reference
Create private member functions to access those data members
It must contain in a definition body
None of the choices-
If in multiple inheritance, class C inherits class B, and Class B inherits class A. In which sequence are their destructors called if an object of class C was declared?
A. ~A() then ~B() then ~C()
B. ~C() then ~A() then ~B()
C. ~C() then ~B() then ~A()
D. ~B() then ~C() then ~A()
Instancing of which type of class can’t be created?
A. Parent class
B. Anonymous class
C. Abstract class
D. Nested class
____ underlines the feature of Polymorphism in a class
A. Virtual Function
B. Inline Function
C. Enclose class
D. Nested class
Which feature in OOP is used to allocate additional functions to a predefined operator in any language?
A. Function Overloading
B. Function Overriding
C. Operator Overloading
D. Operator Overriding
Which feature can be implemented using encapsulation?
A. Polymorphism
B. Inheritance
C. Overloading
D. Abstraction
The computer-aided design (CAD) hardware doesn’t include.
A. Graphic display terminals
B. Computer
C. Computer programs
D. Keyboard
Modern CAD systems are based on:
A. ICG
B. GIF
C. GCI
D. IFG
The computer communicates with the user via:
A. Graphics
B. Display Button
C. CPU
D. CRT
The process of designing consists of ___ identifiable steps.
2
1
7
6
The functionality areas of CAD application can be grouped into ___ categories.
2
3
4
1
Who formulated the six ground rules to be considered in designing graphics software?
A. Newman and Sproull
B. Schaffer G
C. Fitzgerald W
D. Krouse and Lerro
The input devices in CAD can be divided into:
1
2
3
4
Which of the following is not a characteristic trait of polymer materials?
A. Low density
B. Resistant to chemical attack
C. Low cost
D. High strength
Implementing CAD improves communications. This statement is:
True
False
The typical ICG system consists of software component. This statement is:
True
False
Which of the following is not a characteristic trait of polymer materials?
A. Low density
B. Resistant to chemical attack
C. Low cost
D. High strength
The number of repeating units in a polymer is known as ____.
A. monomer
B. Degree of polymerization
C. molecule
D. chain
A polymer made of identical monomer units is called ____.
A. Homopolymer
B. Linear polymer
C. Copolymer
D. Branched polymer
Liquid or gas polymers having short chains and low molecular weights are known as ____.
Copolymer
Oligo-polymers
Branched polymer
Linear polyme
Which of the following types of polymers is a copolymer?
A. Graf
B. Network
C. Linear
D. Branched
Which of the following is not stage of addition polymerization?
A. Initiation
B. Propagation
C. Termination
D. Recrystallization
Addition of different types of monomers to form polymer chains is known as ____.
A. Chain reaction polymerization
B. Copolymerization
C. Combination
D. Disproportionation
Carbon fiber is an example of ____.
A. Filler
B. Stabilizer
C. Reinforcement
D. Flame retardant
Which of the following polymer type is not classified on the basis of its application and properties?
A. Rubbers
B. Synthetic
C. Plastics
D. Fibers
The polymers are classified into ____ types based on the nature of polymerization.
1
3
2
4
The polymers whose backbone is made of same type of atoms called ____.
A. Homo polymers
B. Heterochain polymers
C. Isotactic polymers
D. Atactic polymers
Based on tacticity, the polymers are divided into ___ types.
Two
Three
Four
One
Combination of the organic and inorganic polymers are called _____.
A. Element organic polymers
B. Inorganic polymers
C. Fibres
D. Thermoplastics
The impact strength is measured as ____.
A. Elasticity
B. Permeability
C. Strength
D. Toughness
The strength of the polymer increases with ____ in molecular weight.
A. increase
B. No change
C. decrease
D. Slightly decrease
If the polymer in the moon temperature, then it is ___.
A. Brittle
B. Amorphous
C. Viscofluid state
D. Rubbery
____ is the property of recovering original shape after the removal of deforming strain.
A. Rigidity modulus
B. Elasticity
C. Youngs modulus
D. Bulk modulus
Tacticity of the polymers is the arrangement of the ____ on carbon backbone.
A. Hydrogen atoms
B. Nitrogen atoms
C. Functional groups
D. Carbons
Which of the following is a thermosetting polymer?
A. Polystyrene-
B. Phenolic resins
C. polyolefins
D. nylons
As the crystallinity increases the brittleness of the polymer ____.
A. Increases
B. Remains constant
C. Decreases -
D. Moderate
A straight chain polymer comes under the ____ type of the polymers.
A. Homo polymers
B. Co-polymers
C. Regular chain copolymers
D. Irregular straight chain copolymers
Porcelain is a type of ____ ceramic.
Whiteware
Tungsten carbide
Sulphides
Alumina
Diamond and corundum are examples of ___ ceramics
Sulphide
Whiteware
Tungsten carbide
Sialon
How is the creep strength of ceramics when compared to other materials?
Toughness
Excellent
Strength
Permeability
The word ceramics stands for which of the following meaning?
Straight line
Burnt
Fracture point
None of the choices
What is shape of a stress strain curve for ceramics?
Fracture point
Straight line
Burnt
None of the choices
Which of the point is there in a stress strain
Fracture point
Straight line
Burnt
None of the choices
{"name":"GEAS COACHING PART 3", "url":"https://www.quiz-maker.com/QPREVIEW","txt":"Which of the following statements about nuclear fission is always correct?, Which one of the following would be most likely to undergo thermonuclear fusion?, Consider the case of a radioactive element X which decays by electron (beta) emission with a half-life of 4 days to a stable nuclide of element Z. Which of the following statements is CORRECT?","img":"https://www.quiz-maker.com/3012/images/ogquiz.png"}
Make your own Survey
- it's free to start.