Explore topic-wise InterviewSolutions in Current Affairs.

This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.

1.

What is a geom in the ggplot2 system?(a) a plotting object like point, line, or other shape(b) a method for making conditioning plots(c) a method for mapping data to attributes like color and size(d) a statistical transformation

Answer» Right option is (a) a plotting object like point, line, or other shape

Easy explanation: The bar geom is used to produce 1d area plots.
2.

Explain the environmental consequences of the increasing demand for energy.

Answer»

The environmental consequences of the increasing demand for energy are as following.

1. The combusion of fossil fuels is producing acid rain and damaging plants, soil & aquatic life.

2. The burning of fossil fuels is increasing the amount of greenhouse gas, CO2 in the atmosphere.

3. The cutting down of trees from forest for obtaining fire-wood is causing soil erosion and destroying wild life.

4. The construction of hydro power plants is disturbing ecological balance.

5. Nuclear power plants are increasing radioactivity in the environment.

3.

Which of the following is an example of a vector graphics device in R?(a) JPEG(b) PNG(c) GIF(d) SVG

Answer» The correct option is (d) SVG

For explanation: SVG stands for scalable vector graphics.
4.

If two vectors with different lengths perform some operation, the elements of the shorter vector will be used again to complete the operation. This is referred to as _________________(a) Element Recycling(b) Recycling(c) Cycling(d) Element Cycling

Answer» Correct choice is (a) Element Recycling

For explanation: If two vectors with different lengths perform an operation, the elements of the shorter vector will be used again to complete the operation. This is referred to as element recycling.
5.

The method that the optimized weight values are attained is called as ________(a) Leaning(b) Lost(c) Catching(d) Learning

Answer» Right option is (a) Leaning

The explanation is: The method by which the optimized weight values are attained is called learning. Artificial neural networks work through optimized weight values.
6.

vectors can be one of two types namely atomic vectors and _______(a) Matrix(b) Vector(c) Lists(d) Array

Answer» The correct option is (c) Lists

Explanation: A vector is the most common and basic data structure in R. Technically, vectors can be one of two types of atomic vectors and lists. Although vector most commonly refers to the atomic types.
7.

Point out the correct statement?(a) The Rprofiler() function starts the profiler in R(b) Using system.time() allows you to test certain functions or code blocks to see if they are taking excessive amounts of time(c) R must not be compiled with profiler support(d) Rprofiler() tabulates how much time is spent inside each function

Answer» Right choice is (b) Using system.time() allows you to test certain functions or code blocks to see if they are taking excessive amounts of time

Explanation: However, this approach assumes that you already know where the problem is and can call system.time() on it that piece of code.
8.

Bronchial smooth muscle contracts in response to A. Bronchial mucosal irritation. B. Local beta adrenoceptor stimulation. C. A fall in bronchial PCO2. D. Inhalation of cold air. E. Circulating noradrenaline.

Answer»

A. True Via a reflex with a parasympathetic efferent pathway.

B. False This leads to relaxation. 

C. True This tends to limit local over ventilation. 

D. True This is minimized normally by the warming of air in the upper airways. 

E. False This causes relaxation via beta receptors.

9.

Decimal values are referred as ________ data types in R.(a) Numeric(b) Character(c) Integer(d) Lists

Answer» Correct choice is (a) Numeric

To explain: Decimal values are referred to as numeric data types in R. Data frames are the tabular data objects. Unlike a matrix in data frame every column can contain different modes of data.
10.

Accessing elements is achieved through a process called ________(a) Indexing(b) Outdexing(c) Highlighting(d) Scrapping

Answer» Correct choice is (a) Indexing

To elaborate: Accessing elements is achieved through a process called indexing. Indexing may be done by a vector of positive integers and negative integers to indicate inclusion.
11.

Point out the correct statement?(a) Vectorizing the function can be accomplished easily with the Vectorize() function(b) There are different levels of indication that can be used, ranging from mere notification to fatal error(c) Vectorizing the function can be accomplished easily with the vector() function(d) Warnings are generated by the run() function

Answer» The correct answer is (a) Vectorizing the function can be accomplished easily with the Vectorize() function

The explanation: Vectorize() function does not preserve the invisibility of the return value.
12.

In early inspiration there is a fall in A. Intrapulmonary pressure. B. Intrathoracic pressure. C. Intra-abdominal pressure. D. Dead space PO2.E. Pressure in the superior vena cava.

Answer»

A. True This creates a pressure gradient between mouth and lungs. 

B. True Due to an increase in the dimensions of the thoracic cage. 

C. False It rises due to descent of the diaphragm. 

D. False It rises as inspired air replaces alveolar air. 

E. True It falls as intrathoracic pressure falls.

13.

Lysosomes A. Are membrane-bound organelles in the cytoplasm. B. Contain enzymes known as lysozyme. C. Are present in serous salivary glands. D. Enable neutrophil granulocytes to digest phagocytosed material. E. Can digest cellular contents.

Answer»

A. True They are present in most cells. 

B. True Lysozyme breaks down organic structures. 

C. True Lysozyme in saliva helps to destroy ingested bacteria. 

D. True The granules are examples of lysosomes. 

E. True This is responsible for decomposition of tissues after death.

14.

Which of the following is a 3-dimensional dataset?(a) Eris(b) Iris(c) Toris(d) Iris

Answer» Right answer is (b) Iris

To elaborate: The iris dataset is a three dimensional dataset. One dimension is represented for each species: Setosa, Versicolor and Virginica.
15.

________ function is usually used inside another function and throws a warning whenever a particular package is not found.(a) Dplyr(b) Require(c) Coin(d) Sample

Answer» Correct option is (b) Require

Easiest explanation: Require () function is usually used inside the other function and gives a warning whenever a particular package is not found. Library () function will give an error message if the desired package is not loaded.
16.

___________ function is used to apply an expression for a given dataset.(a) This()(b) With()(c) Unwith()(d) That()

Answer» Correct answer is (b) With()

For explanation: With a () function is used to apply an expression for a given dataset. R language has a large number of in-built functions and the user can create their own functions. In R, a function is an object to the R interpreter is able to pass control to the function.
17.

During early inspiration there is an increase in A. Heart rate.B. Central venous pressure. C. Intrapulmonary pressure. D. Abdominal girth. E. Afferent impulse traffic in the vagus nerves.

Answer»

A. True This is part of the cycle of respiratory sinus arrhythmia.

B. False It decreases due to expansion of the great veins. 

C. False It falls due to expansion of the thoracic cage. 

D. True Due to descent of the diaphragm. 

E. True From stretch receptors in the lung mediating the Hering–Breuer reflex.

18.

Which function is used to select variables and observations from a given dataset?(a) Subset()(b) Sample()(c) While()(d) Signal()

Answer» Correct choice is (a) Subset()

Explanation: Subset () function is used to select variables and observations from a given dataset. R has a large number of in-built functions and also the user can create their own functions.
19.

The endoplasmic reticulum A. Is a complex system of intracellular tubules. B. Is a component of the Golgi apparatus. C. Has a membrane structure similar to the cell membrane. D. Is associated with ribonucleoprotein. E. Is well developed in secretory cells.

Answer»

A. True It is analogous to the sarcoplasmic reticulum in muscle cells. 

B. False The Golgi apparatus differs in structure, function and location in the cell. 

C. True As do mitochondria. 

D. True RNA is found in the ribosomes which are attached to the cytoplasmic side of the tubules in rough endoplasmic reticulum and are responsible for protein synthesis. 

E. True It is the site of hormone and enzyme synthesis.

20.

The sum of squares of the difference between the observations and the line in the horizontal direction in the scatter diagram can be minimized to obtain the estimates is generally called?(a) reverse regression method(b) formal regression(c) logistic regression(d) simple regression

Answer» Correct choice is (a) reverse regression method

The best explanation: The sum of squares of the difference between the observations and the line in the horizontal direction in the scatter diagram can be minimized to obtain the estimates of 0 1 β and β. This is generally called a reverse or inverse regression method.
21.

In bone A. Osteoclasts are responsible for bone resorption. B. Osteoclasts are inhibited by parathyroid hormone. C. Maintenance of normal calcium content depends on exposure to mechanical stress. D. Strontium ions may substitute for calcium ions. E. The width of the epiphyseal plate is an index of its growth rate.

Answer»

A. True They contain an acid phosphatase. 

B. False They are stimulated to resorb bone with release of calcium ions. 

C. True Calcium is released from bone during bed rest and inactivity. 

D. True This may subject bones to increased radioactivity. 

E. True The epiphyseal plate is relatively wide during childhood.

22.

The standard deviation of a series of observations A. Is related to the scatter of the observations. B. Is such that about 95 per cent of observations lie within one standard deviation of the mean. C. Should be calculated only if observations are normally distributed. D. Is a measure of the significance of the observations. E. Is a more valid expression of scatter than is the absolute range for small numbers of observations, e.g. less than five.

Answer»

A. True It increases as scatter increases. 

B. False This is true for two standard deviations; for one standard deviation it is 66 per cent. 

C. True Otherwise (B) above does not hold. 

D. False It is only a description of the scatter of observations. 

E. False It should not be calculated for very small numbers of observations.

23.

Synapsis and crossing over of chromosomes occurs in which phases of meiosis?a) Interphase b) Prophase c) Meterphase d) Teleophase

Answer»

Synapsis and crossing over of chromosomes occurs in PROPHASE phases of meiosis.

24.

The mammalian cell membrane A. Is seen as an optically dense line using light microscopy. B. Consists mainly of protein. C. Is more permeable to fat- than to water-soluble particles. D. Contains enzymes. E. Contains the receptors for steroid hormones.

Answer»

A. False It is beyond the resolution of the light microscope. 

B. False It consists mainly of lipid. 

C. True Fat-soluble particles dissolve easily in the lipid matrix. 

D. True These are involved in active transport. 

E. False Steroid hormones cross the membrane and act intracellularly.

25.

Human circadian (24-hour) rhythms A. Are triggered totally by external (exogenous) factors. B. Depend more on the integrity of the cerebral cortex than of the hypothalamus. C. Adapt within 48 hours on changing from day to night shift work. D. For melatonin secretion produce high night-time and low day-time levels of the hormone. E. For the eosinophil count produce peak values around midday.

Answer»

A. False External triggers modulate an endogenous clock. 

B. False The hypothalamus is thought to be the location of the endogenous clock. 

C. False Adaptation takes about a week or longer. 

D. True Melatonin given at bedtime has been used to allay the circadian rhythm disturbances of sleep with jet-lag. 

E. False The peak is at night when cortisol level is minimal.

26.

How do ecologists estimate the total number of species present in the world?

Answer»

The diversity of living organisms present on the Earth is very vast. According to an estimate by researchers, it is about seven millions.
The total number of species present in the world is calculated by ecologists by statistical comparison between a species richness of a well-studied group of insects of temperate and tropical regions. Then, these ratios are extrapolated with other groups of plants and animals to calculate the total species richness present on the Earth.

27.

The molar heat capacity of oxygen gas at `STP` is nearly `2.5 R`. As the temperature is increased, it gradually increase and approaches `3.5 R`. The most appropriate reason for this behaviour is that at high temperaturesA. oxygen does not behave as an ideal gasB. oxygen molecules dissociate in atomsC. the molecules collides more frequentlyD. molecular vibration gradually becomes effective

Answer» Correct Answer - D
`C_(v)=2.5 R`
As temperature increases, vibrational degree of freedom becomes 2 at high temperature
`C_(v)=7/2 R =3.5R`
28.

A disc of mass 100 g rolling without slipping on a horizontal surface with a velocity of 10 cm/s. Calculate its total energy?

Answer»

M = 100g 

M = .10 kg

u = 10 cm/s

u = 10 x 10-2 m/s

Total energy = Rotational kinetic energy 

\(\cfrac12\) Iw\(\cfrac12\) mv2

\(\because\) I = \(\cfrac12\) mR2

\(\cfrac12\) x \(\cfrac12\) mR2 x w2\(\cfrac12\) x mv2

\(\because\) v = Rw

=   \(\cfrac14 mv^2\) \(\cfrac12 mv^2\)

\(\cfrac{mv^2+2mv^2}4\)

\(\cfrac{3mv^2}4\)  

\(\cfrac{3\times.10\times(10\times10^{-2})^2}4\)

\(\cfrac{3\times.10\times100\times10^{-4}}4\)

= 7.5 x 10-4 J

29.

The value of specific at at constant pressure (cp) is that of at constant volume (cv). Select one a. More than b. None c. Equal to d. Less than

Answer»

Answer: More than

30.

How much energy is required to ionise an `H` atom if the electron occupies `n=5` orbit? Compare your answer with the ionisation enthaply of `H` atom (anargy required to remove the electronic from `n=1` orbit).

Answer» `E_(n)=((2.18xx10^(-18)J))/(n^(2))`
`=(2.18xx10^(-18)J)/(5^(2))=8.72xx10^(-20)J`
`1E` of `H=(2.18xx10^(-18)J)/((1)^(2))=2.18xx10^(-18)J`
31.

If it takes 5 minutes to fill a 15 litre bucket from a water tap diameter `(2)/(sqrt(pi))` cm then the raynolds number for the flow is (density of water `=10^(3)kg//m^(3)` and viscosity of water `=10^(-3)Pa`.s) close toA. `11,000`B. `550`C. `1100`D. `5500`

Answer» Correct Answer - D
`(dm)/(dt)=rhoAV`
`15/(5xx60)=10^(3)xxpi(1/(sqrt(pi)))^(2)xx10^(-4)V`
`V=0.05m//s`
`R_(e)=(rhoVD)/(eta)`
`=(10^(3)xx0.5xx2/(sqrt(pi))10^(-2))/(10^(-3))`
`=5500`
32.

`x` and `y` displacements of a particle are given as `x(t)=-asinomegat` and `y(t)=asin2omegat`. Its trajectory will look like.A. B. C. D.

Answer» Correct Answer - A
At `t=0 x(t)=0,y(t)=0`
`x(t)` is a sinusoidal function hence option (1) `x(t)`
At `t=(pi)/(2omega)`
`x(t)=a`
`y(t)=0`
33.

A `25cm` long solenoid has radius `2cm` and `500` total number of turns. It carries as current of `15A`.If it is equivalent to a magnet of the same size and magnetization `bar(M)` (magnetic moment//volume) then `|bar(M)|` is:A. `3piAm^(-1)`B. `30000Am^(-1)`C. `300Am^(-1)`D. `3000Am^(-1)`

Answer» Correct Answer - B
`M` (mag, moment/volume) `=`
`(NiA)/(Al)`
`=(Ni)/l`
`=((500)50)/(2xx10^(-2))`
`=30000Am^(-1)`
34.

Suppose the drift velocity `v_(d)` in a material varied with the applied electric field E as `v_(d) prop sqrt(E)`. Then V – I graph for a wire made of such a material is best given by :A. B. C. D.

Answer» Correct Answer - B
`i="ne" AV_(d)`
`ipropsqrt(E)`
`i^(2)propE`
`i^(2)propV`
35.

When current in a coil changes from 5 A to 2 A in 0.1 s, average voltage of 50 V is produced. The self - inductance of the coil is :A. `1.67H`B. `6H`C. `3H`D. `0.67H`

Answer» Correct Answer - A
`EMF=(Ldi)/(dt)`
`50=L(5-2)/(0.1 "sec")`
`implies L=(50xx0.1)/3=5/3=1.67H`
36.

Why are spokes provided in a bicycle wheel ? 

Answer»

By connecting to the rim of wheel to the axle through the spokes the mass of the wheel gets concentrated at its rim. this increases its moment of inertia. This ensures its uniform speed.

37.

A refrigerator is to maintain estables kept inside at 9°C. If room temperature is 36°C. Calculate the coefficient of performance.

Answer»

Here T1 = 36º C = 36 + 273 = 309 K; T2 = 10º C = 10 + 273 = 283 K 

 COP = (T2/T1 - T2) = (283/309 - 283) = 283/26 = 10.9

38.

Which physical quantity remains constant ? (i) In an elastic collision, (ii) In an inelastic collision.

Answer»

(i) In an elastic collision : Both momentum and kinetic energy is constant. 

(ii) In an inelastic collision : Momentum remains constant.

39.

The states of motion and rest are relative. Explain.

Answer»

Rest and motion are relative. They are not absolute. A body can be in the rest or in motion w.r.t. reference frame. A man in a moving train is a rest w.r. to a co–passenger, but he is in motion w.r.t a man on the ground.

40.

What is the contribution of S.Chandra Sekhar to physics ?

Answer»

While studying the constitution of the stars, he has proved that the maximum mass that a white dwarf can have is 1.4 times the solar mass. This mass is known as chandra sekhar limit. If a star crosses this limit, it has to face a catostropic collapse. 

41.

The percentage error in the mass and speed are 2% and 3% respectively. What is the maximum error in kinetic energy calculated using these quantities ? 

Answer»

(∆M/M) x 100 = 2%; (∆V/V) × 100 = 3%;

Kinetic energy = (1/2) mV2

(∆K/K) x 100 = (∆M/M) × 100 + (2∆V/V) × 100

= 2 + 2(3) = 2 + 6 

= 8%

42.

9. A body moving with initial velocity \( 83 m / s \) moved under constant retardation of \( 3 m / s ^{2} \). Find its velocity after \( 2 sec \). Time after which it will stop and the aíctance it will travel before coming to rest.

Answer»

As per question,

u = 83m/s

a = -3m/s2

t = 2 s

v = ?

v = u + at

v = 83 + (-3) x 2

v = 83 - 6 = 77m/s     Ans.....

To find the time after which it stops i.e. v becomes 0.

again v = u + at

0 = 83 - 3 x t

t = 83/3 = 27.66s   Ans....

To find the distance travelled before coming to rest,

v= u+ 2ax   ( also x = ut + 1/2 atcan be used)

02 = 83+ 2(-3) x

x = - 832/-6 = 1148.16m    Ans......

Given initial velocity,

u = 83 m/s

a = 3 m/s2

t = 2 sec

v = u + at

v = 83 + 3 x 2

after 2 sec velocity v = 89 m/s.

43.

Choose the incorrect option/options :A. If acceleration is positive than speed of particle is increasing.B. If acceleration is negative than speed of particle is decreasing.C. In projectile motion speed of particle first decreases than increases.D. In ground to ground projectile motion horizontal range cannot be equal to the maximum height from the ground.

Answer» Correct Answer - A::B::C::D
44.

The angular acceleration of a fan `alpha=(-3t^(2))/2`. At the initial moment, its angular velocity `omega=10 rad//s` and has an angular position of 1 rad.A. Its angular velocity at t=1sec. Is 9.5 rad/sB. its angular position at t=2 sec. Is 5 radC. its angular velocity at t=2 sec. is 6 rad/sD. its angualr position at t=1 sec. is `87/8` rad

Answer» Correct Answer - ACD
`alpha =(-3t^(2))/2`
`(d omega)/(dt)=(-3t^(2))/2`
`rArr int d omega=|(-3t^(2))/2 dt `
`omega=(-3t^(2))/32+C" " t=0, omega=10`
C=10
`rArr omega=t^(3//2)+10`
`rArr (d theta)/(dt)=-t^(3//2) +10`
`theta=-(t^(4))/8+10 t+1`
`omega_((t=1))=9.5 rad//sec`
`omega_((t=2))=6 rad//sec`
`theta_((t=2))=-2+21p=19 rad`
`theta_((t=1))=-166+10+1 =87/8 rad.`
45.

A ball is thrown vertically upwards in air, If the resistance cannot be neglected (assume it to be directly proportional to velocity), then choose the correct options. (Assume that resistance force is less than weight of ball and `g` is acceleration of the ball due to graviy)A. at the highest point acceleration of the ball is zeroB. at the highest point acceleration of the ball is g.C. in upward motion (when ball is moving upwards) acceleration of the ball is more (in magnitude) than `g`.D. in downward motion (when ball is moving downwards) acceleration of the ball is less (in magnitude) than `g`.

Answer» Correct Answer - B::C::D
46.

Elastomers does not obey Hooke`s law. Is it true or false?  

Answer»

Elastomers does not obey Hooke's law is true 

47.

A particle is moving rectilineraly so that its acceleration is given as `a = 3t^(2) + 1 m//s^(2)`. Its initial velocity is zero.A. The velocity of the particle at `t = 1` sec will be `2m//s`B. The displacement of the particle in `1` sec will be `2m`.C. The particle will continoue to move in positive direction.D. The particle come back to its starting point after some time.

Answer» Correct Answer - A::C
`a = 3t^(2) + 1`
`(dV)/(dt) = 3 t^(2) + 1 rArr overset(v)underset(0)(int)dv = overset(t)underset(0)(int)(3t^(2) + 1)dt`
`v = (t^(3) + t)_(0)^(1) = 2 m//s. rArr v = t^(3) + t`
`:. overset(s)underset(0)(int)ds = overset(1)underset(0)(int)(t^(3) + 1)dt rArr S = (1)/(4) + (1)/(2) = 0.75`
48.

At what angle should a body he projected with a velocity `24 ms^(-1)` just to pass over the obstacle `14 m` high at a distance of `24 m` [Take `g = 10ms^(-2)`]A. `tan theta = 19//5`B. `tan theta = 1`C. `tan theta = 3`D. `tan theta = 2`

Answer» Correct Answer - A::B
`x = 24 = u costheta.t`
`rArr t = (24)/(24costheta) = (1)/(costheta)`
`y = 14 = u sinthetat - (1)/(2)g t^(2)`
`rArr 14 = (u sintheta)/(costheta) - (5)/(cos^(2)theta) rArr 14 = u tantheta - 5 sec^(2)theta`
`rArr 5tan^(2)theta - 24 tantheta + 19 = 0 rArr tantheta -5 sec^(2)theta`
`rArr 5tan^(2)theta - 24 tantheta + 19 = 0 rArr tantheta = 1, 19//5`. Ans.
49.

What is the S.I unit of the Young`s modulus? 

Answer»

S.I unit of the Young`s modulus Nm-2 or Pa 

50.

A block of mass M is kept in elevator (lift) which starts moving upward with constant acceleration b as shown in figure. Initially elevator at rest. The block is observed by two observers A and B for a time interval `t=0` to `t=T`. Observer B is at rest with respect to elevator and observer A is standing on the ground. Q. The observer A finds that the work done by gravity on the block isA. `(1)/(2)Mg^(2)T^(2)`B. `-(1)/(2)Mg^(2)T^(2)`C. `(1)/(2)MgbT^(2)`D. `-(1)/(2)MgbT^(2)`

Answer» Correct Answer - D
displacement of block in the time interval `T` is `(1)/(2)bT^(2)`
`W_("gravity")=(-mg)(+(1)/(2)bT^(2))=-(1)/(2)mgbT^(2)`