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.

(X+Y).(X.Z+Z).(Y'+X.Z)'

Answer»

(X + Y).(X.Z + Z).(Y' + X.Z)'

= (X + Y).((X+1).Z).((Y')' + (X.Z)') (∵ (A + B)' = A' + B' and (A+B).C = A.B + A.C)

= (X + Y).(1.Z).(Y + (X'+Z'))(∵ A+1 = 1,(y')' = y and (A.B)' = A' + B')

= (X + Y).Z.(Y + (X'+Z'))(∵ 1.Z = Z)

= (X + Y).(Y.Z + (X'+Z')) (∵ A.B = B.A)

= (X + Y). (Y.(ZX'+Z.Z')) (∵ A.(B+C) = A.B + A.C)

= (X + Y).(Y. (ZX' + 0) (∵ Z.Z' = 0)

= (X + Y).Y.(ZX') (∵ A+0 = A and A.(B.C) = (A.B).C = A.B.C)

= (XY + Y.Y) (ZX') ( (A+B).C = A.C + B.C)

= (XY + Y).(ZX') (∵ Y.Y =Y)

= (X+1).Y. ZX' (∵ (X+1).Y = XY +Y)

= (1.Y).ZX' (∵ X+1 = 1)

= Y.ZX' (∵ 1.Y = Y)

2.

Write a pseudocode to solve s=(A+B+C)/Y

Answer»

Let’s assume the meaning of the statement is to compute the thing on the right and store the result into the thing on the left. (This matches most common high-level languages, but in some languages, this might just as easily have been a comparison rather than an assignment.) Let’s further assume that all the letters are variables, all of them have the same data type, the data types are numeric, and the +, /, and parentheses operators all have the typical algebraic meanings for numeric expressions. (In some languages and/or with some data types, the + might mean concatenation instead of addition, etc.)

If your goal is to implement the assignment statement in a common high-level language, the statement itself should be just fine as pseudocode:

  • S = (A + B + C) / Y

But the variable names here are not very descriptive. Both in pseudocode and in actual code, it would be best to use variable names that reflect what the variables actually contain. Since I don’t know what your formula represents, I won’t suggest specific names.

If you want to be explicit about the order in which everything happens, then a pseudocode description might look something like:

  • Compute the sum of A, B, and C, storing the result into T.
  • Compute the quotient T divided by Y, storing the result into S.

I introduced T as a temporary variable.

If your goal were to implement the assignment statement in an assembly language, you might want to break it down further into the individual steps, which would better map to your target language. In this case, the pseudocode might be something like:

  • ADD A and B, storing the result into T.
  • ADD T and C, storing the result into T.
  • DIVIDE T by Y, storing the result into S.

Or even more detail that gets even closer to what’s actually happening at the low level in your target system:

  • FETCH A into R1.
  • FETCH B into R2.
  • ADD R1 and R2, storing the result into R1.
  • FETCH C into R2.
  • ADD R1 and R2, storing the result into R1.
  • FETCH Y into R2.
  • DIVIDE R1 by R2, storing the result into R1.
  • STORE R1 into S.

I introduced two temporaries here, R1 and R2, which might map to CPU registers in the actual assembly language code.

Pseudocode can vary widely and be used for many different purposes. So, you need to figure out the goal of the pseudocode, and choose a level of abstraction and detail that serves that goal. And follow the pseudocode guidelines you’ve been given, if any.

By the way, writing pseudocode after your write the actual code is like writing an outline an outline after you've written the book report. The act of writing pseudocode has a lot less value, if you’ve already written the actual code.

3.

The following is a horizontal bar diagram showing the accidents in which two - wheelers are involved with other objects. Study the diagram and answer the question. पैदल तथा साइकिल से होने वाली दुर्घटनाओं का कितना है ।A. `24%`B. `6%`C. `60%`D. `20.4%`

Answer» Requried percentage `=((40+200)/(1000))xx100`
`=(24000)/(1000)=24% `
4.

The following is a horizontal bar diagram showing the accidents in which two - wheelers are involved with other objects. Study the diagram and answer the question. यदि दिए गए वार ग्राफ को पाई चार्ट के द्वारा दर्शाया जाए और पाई चार्ट पर बनने वाला एक कोण हो तो बताये वह कौन सी मद हो सकती है ।A. pedestriansB. bicycleC. buscesD. stationary vehicles

Answer» `therefore 360^(@)=1000`
`1 ^(@)=(1000)/(360^(@))`
`36^(@)=(1000)/(3 60^(@))xx36^(@)=100`
It is the accidents to stationary vehicles
5.

The following is a horizontal bar diagram showing the accidents in which two - wheelers are involved with other objects. Study the diagram and answer the question. बस द्वारा होने वाली दुर्घटनाओं कार द्वारा होने वाली दुर्घटनाओं से कितने कम है ।A. `6%`B. `4%`C. `40%`D. `28%`

Answer» Required difference `=(160-120)/(1000)xx 100=4%`
6.

The bar chart given below shows the percentage distribution of the production of various models of a mobile manufacturing company in 2007 and 2008 The total production in 2007 was 35 lakh mobile phones and in 2008 the production was 44 lakh Study the chart and answer the following questions वर्ष 2007 में मॉडल A, B तथा E का कुल उत्पादन कितना है ।A. `24,50,000`B. `22,75,000`C. `21,00,000`D. `19,25,000`

Answer» Requried answer`=(35xx30)/(100)+(35 xx 15)/(100)+(35xx15 )/(100)`
`=(35)/(100)(30+15+15)=(35xx60)/(100)=21` lakes.
7.

The bar chart given below shows the percentage distribution of the production of various models of a mobile manufacturing company in 2007 and 2008 The total production in 2007 was 35 lakh mobile phones and in 2008 the production was 44 lakh Study the chart and answer the following questions यदि A प्रकार के नमूनों का वर्ष 2008 तथा 2007 में उत्पादन प्रतिशत समान हो तो वर्ष 2008 में A प्रकार के नमूनों का कुल उत्पादन कितना था ।A. `14,00,000`B. `13,20,000`C. `11,70,000`D. `10,50,000`

Answer» Requried production `=(44xx30)/(100)` lakhs =1320000
8.

The bar chart given below shows the percentage distribution of the production of various models of a mobile manufacturing company in 2007 and 2008 The total production in 2007 was 35 lakh mobile phones and in 2008 the production was 44 lakh Study the chart and answer the following questions B प्रकार के नमूनों के उत्पादन की संख्या में वर्ष 2007 तथा 2008 में कितना अंतर हो ।A. `3,55,000`B. `2,70,000`C. `2,25, 000`D. `1,75, 000`

Answer» B types mobile produced in `2007=(35 xx15 )/(100)`
B type mobile produced in 2008 `=(44xx20)/(100)`
Requried Difference `=(44xx20)/(100)-(35xx15)/(100)`
`=(880)/(100)-(525)/(100)=(355)/(100)` Lakhs `=355000`
9.

The bar chart given below shows the percentage distribution of the production of various models of a mobile manufacturing company in 2007 and 2008 The total production in 2007 was 35 lakh mobile phones and in 2008 the production was 44 lakh Study the chart and answer the following questions निम्न में से किस नमूनों का वर्ष 2007 से 2008 तक उत्पादन प्रतिशत का अंतर अधिकतम है ।A. B and CB. C and DC. D and ED. A and B

Answer» Percentage variation
Modal `A=(40-30)/(30)xx100=33(1)/(3)%`
Modal B `=(20-15)/(15)xx100=33(1)/(3)`%
Modal `C=(20-15)/(20)xx100=25%`
10.

In a class of 30 students 12 take needle work, 16 take physics and 18 take history. If all the 30 students take at least one subject and no one takes all three, then the number of students taking 2 subjects isA. 16B. 6C. 8D. 20

Answer» Correct Answer - A
In a class of 30 ………..
From
`n(NuuPuuH)=n(N)+n(P)+`
`n(H)-n(NnnP)-n(PnnH)-`
`n(NnnH)+n(NnnPnnH)`
`:. N(NnnP)+n(PnnH)+n(NnnH) = 16`
11.

If the set A contains 5 elements, then the number of elements in the power set P(A) is equal toA. 32B. 25C. 16D. 8

Answer» Correct Answer - A
If the set A contains …………
Power set is the set of all subsets.
`n(A)= 5 implies n(P(A)) = 2^(5) = 32`
12.

Give the name and atomic number of the inert gas atom in which the total number of `d`-electrons is equal to the difference in number to the `p`-and `-s`-electrons.

Answer» Correct Answer - 36
First gas which contains d-electron is Kr `implies 1s^2 2s^2 2p^6 3s^2 3p^6 3d^10 4s^2 4p^6`
Total number of d-electrons =10 `implies` Total number of p-electrons =6+6+6=18
Total number of s-electrons =2+2+2+2=8
Difference in total number of p- and s- electrons =18-8=10
So inert gas is `._35` Kr.
13.

CD:Fixed wall, EF:SPM, Fixed wall: allows the pressure transfer but no mass transfer. If 16 gm Helium present in ABCD chamber caluculate the length of this chamber in cm if no osmosis takes place through SPM EF. Assume 75% ionisation of `K_4[Fe(CN)_6]`

Answer» Correct Answer - 5
`pi=iCRT , l=1+(y-1)alpha`
`pi=4xx2xx0.0821xx300 , i=1+(5-1)0.75`
For He PV=nRT , i=1+3
`piV=nRT` , i=4
2 x 0.0821 x300 x 4 x100 x l x 10^(-3)=`16/4` x 0.0821 x300
`l=4/(8xx10^(-1))=40/8=5` cm
14.

Sets A and B have 3 and 6 elaments respectively. What can be theminimum number of elements in `A uu B`A. 3B. 6C. 9D. 18

Answer» Correct Answer - B
Sets A and B ………….
`n(AuuB)= n(A)+n(B)-n(AnnB)`
`=3+6-n(AnnB)`
Since maximum number of elements in `AnnB = 3`
`:.` Minimum number of elements in `AuuB = 9-3=6`
15.

If `((x^(2)-1)(x+2)(x+1)^(2))/((x-2))lt0` , then complete solution set of inequation isA. `(-2,-1)uu(1,2)`B. `(-oo, -2)uu(2,oo)`C. `(-2,-1)uu(2,oo)`D. `(-2,-1)uu(1,oo)`

Answer» Correct Answer - A
If `((x^(2)-1)(x+2)(x+1)^(2))/((x-2))lt 0` …………
`((x^(2)-1)(x+2)(x+1)^(2))/((x-2))lt 0`
`((x^(2)-1)(x^(2)-4)(x+1)^(2))/((x-2)^(2))lt 0`
`(x^(2)-1)(x^(2)-4)lt0`
`1lt x^(2)lt 4`
`-2lt x lt -1 or 1lt x lt 2`
16.

19. Two metallic charged spheres whose radii are \( 20 cm \) and \( 10 cm \), respectively, have each \( 150 \mu C \) positive charge. The common potential after they are connected by a conducting wire is(a) \( 9 \times 10^{6} V \)(b) \( 4.5 \times 10^{6} V \)(c) \( 1.8 \times 10^{7} V \)(d) \( 13.5 \times 10^{6} V \)

Answer»

V = q / C =

                               (150+150)×10-6


                              4πε0(20+10)×10-2 

= 9 × 106 V

So, Option (a) is correct.

17.

Find the x coordinate of the centre of mass of the bricks shown in figure : A. `(24)/(25)l`B. `(25)/(24)l`C. `(15)/(16)l`D. `(16)/(15)l`

Answer» Correct Answer - B
Ans.(2)
`X_(cm)=(m((t)/(2))+m((t)/(2)+(t)/(2))+m((t)/(2)+(t)/(4)+(t)/(2))+m((t)/(2)+(t)/(4)+(t)/(6)+(t)/(2)))/(m+m+m+m)`
`=(25)/(24)l`
18.

Find the ratio between the energy stored in 5 μF capacitor to the 4 μF capacitor in the given circuit in steady state?

Answer»

In steady state , the capacitors are fully charged and no current pass through them. So no current also pass through resistors 4 ohm and 5 ohm. Thus, the potential across the capacitors will be 2V. 

Energy stored in 5μF capacitor is U5​ = 1/2 ​× 5 × 2= 10J

Energy stored in 4μF capacitor is U​= 1/2 × 4 × 2= 8J

Thus, U5​/U​= 10/8 = 5/4

19.

A bob of mass \( m \) and charge \( +q \) is suspended using a thread of length I. An upward electric field \( E_{0}\left(=\frac{m g}{2 q}\right) \) is applied. The minimum speed given to the bob at lowest point, so that it should complete a vertical circle is

Answer» The answer for the above question is :√5gl/2
20.

A sector cut from a uniform disk of radius `12cm` and a uniform rod of the same mass bent into shape of an arc are arranged facing each other as shown in the figure. If center of mass of the combination is at the origin, what is the raius of the arc? A. `8cm`B. `9cm`C. `12cm`D. `18cm`

Answer» Correct Answer - A
Ans.(1)
`(-MRsintheta)/(theta)+(M2xx12)/(3) (sintheta)/(theta)=0,`
where `theta` is half angle `R=8cm`.
21.

I will have to get a (an) ______ job in the evenings. A) plus B) extra C) high D) further

Answer»

Correct option is B) extra

Correct answer will be,  b)Extra

22.

doubt in 9

Answer»

y = log10(-1 + 1 + |x - 1/2|)

To defined log x, we have

-1 + |x - 1/2| > 0

⇒ |x - 1/2| > 1

⇒ x - 1/2 > 1 or x - 1/2 < - 1

⇒ x > 3/2 or x < -1/2

⇒ x \(\in\) (\(-\infty, \frac{-1}2\)) U (3/2, \(\infty\))

Domain of y is (-\(\infty\), -1/2) U (3/2, \(\infty\))

23.

f-1(1/(x+1)) = 3x+4, then find f(x) = ?

Answer»

f-1\((\frac{1}{x+1})=3x+4\)

\(\therefore\) f-1\(\left(\cfrac{1}{\frac{1-x}x+1}\right)\) = 3\((\frac{1-x}x+4)\)

⇒ f(-1)(x) = 3\((\frac{1-x}x)+4\)---(1)

Let f-1 = y

⇒ f(y) = x

\(\therefore\) From (1), we get

y = \(3(\frac{1-x}x)+4\)

⇒ \(\frac{x(y-4)}3=1-x\) 

⇒ x + x/3(y - 4) = 1

⇒ x (1 + \(\frac{y-4}3\)) = 1

⇒ x \((\frac{3+y-4}3)=1\)

⇒ x (\(\frac{3+y-4}3\)) = 1

⇒ x = 3/y-1

⇒ f(y) = 3/y-1

\(\therefore\) f(x) = 3/x-1

24.

Consider the following statements(i) Reaction 2Fe3+ + SO2 + 2H2O → 2Fe2+ + 24 SO - + 4H+ shows reducing character of sulphur dioxide(ii) H2S2O8 contains four S = O, two S – OH and one O– O bond(iii) NH3 gas can be dried effectively by using conc. H2SO4.(iv) One of the major use of H2SO4 is in the manufacture of fertilizers.Which of the following is the correct code for the statements above?(a) TTFF   (b) TTFT(c) FTFT   (d) TFFT

Answer»

 (b) NH3 being basic reacts with acidic H2 SO4 thus H2 SO4 cannot be used for drying NH3 .

25.

Which of the following statements regarding properties of halogens are correct?(i) Due to small size electron gain enthalpy of fluorine is less than that of chlorine.(ii) Iodine has same physical state but different colour as compare to other members of the group.(iii) Fluorine shows no positive oxidation state.(iv) In X2(g) + H2O(l) → HX(aq) + HOX(aq) (where X2 = Cl or Br)(a) (i), (ii) and (iv)   (b) (i), (iii) and (iv)(c) (ii), (iii) and (iv)  (d) (iii) and (iv)

Answer» (b) Physical state of iodine is different from other halogens as iodine is solid, bromine is a liquid whereas fluorine and chlorine are gases
26.

Consider the following statements regarding interhalogen compounds(i) For all types of interhalogen compounds (XX1 , XX3 1,XX5 1and XX71) X is the halogen of lesser electronegativity in comparison to X1.(ii) At 298 K all interhalogen compounds are either volatile solids or liquids.(iii) ClF undergoes hydrolysis as below, ClF + H2O →HF + HOCl(iv) Fluorine containing interhalogen compounds are very useful as fluorinating agents.(a) TTFF (b) TFTT(c) FTFT (d) TFFT

Answer» (b) At 298K, ClF exits as a gas
27.

Tobacco was introduced in India by the (a) French (b) Portuguese (c) English (d) Arabs

Answer»

Tobacco was introduced in India by the Portuguese.

28.

First Portuguese factory was established in (a) Goa (b) Mangalore (c) Calicut (d) Calcutta

Answer»

First Portuguese factory was established in Calicut.

29.

Two elements A and B have similar chemical properties. They don't form solid hydrogencarbonates, but react with nitrogen to form nitrides. A and B, respectively, are : (1) Na and C (2) Li and Mg (3) Cs and Ba (4) Na and Rb

Answer»

Answer is (2) Li and Mg

30.

Stability order of following alkoxide ions is(1) C &gt; B &gt; A (2) A &gt; C &gt; B (3) B &gt; A &gt; C (4) C &gt; A &gt; B

Answer»

The answer is (1) C > B > A

When negative charge is delocalised with electron withdrawing group like (NO2) then stability increases. 

(A) Negative charge is delocalised with NO2 group 

(B) Negative charge is delocalised with carbon of alkene 

(C) Negative charge is localised 

31.

Among `Li`,`Na`,`K`,`Rb`,`Cs`, the element with the lowest ionisation energy is __________.

Answer» Cs has the lowest ionisation energy.
32.

Which of the following reactions are possible ?(1) A, B, C (2) B, D (3) A, C, D (4) A, C

Answer»

The answer is (2) B, D

Vinyl halides and aryl halides do not give Friedel craft's reaction.

33.

Dimension of force isA. `[M^(2)L^(1)T^(1)]`B. `[M^(1)L^(1)T^(2)]`C. `[M^(2)L^(-1)T^(-2)]`D. `[M^(1)L^(1)T^(-1)]`

Answer» Correct Answer - A
34.

Velocity is given by `v=4t(1-2t),` then find time at which velocity is maximumA. 0.25 sB. 1 sC. 0.45 sD. 4s

Answer» Correct Answer - A
35.

If compressibility of material is `4xx10^(-5)` per atm, pressure is 100 atm and volume is `100 cm^(3)` then find `triangleV=?`A. `0.4 cm^(3)`B. `0.8 cm^(3)`C. `0.6 cm^(3)`D. `0.2 cm^(3)`

Answer» Correct Answer - B
36.

The ratio of the radii of gyration of a circular disc about a tangential axis in the plane of the disc and a circular ring of the same radius about a tengential axis in the plane of the ring isA. `sqrt(5)/(6)`B. `sqrt(5)/(3)`C. 1D. `2/3`

Answer» Correct Answer - A
37.

How can you protect your spreadsheet with a password?

Answer»

1) Select Tools menu Protect document Choose whether to protect Sheet or Document. 

2) If you select Sheet, the Protect Sheet dialog box appears. 

3) Type the password in Password text box. Again, type the password in Confirm text box. Note that the password is case sensitive. 

4) Click OK button.

38.

What is leukonychia?

Answer»

Leukonychia are the white spots within the nail plate caused by injury to the nail.

39.

What is the karyotype in Turner’s syndrome? Mention two symptoms of the syndrome.

Answer»

Turner’s syndrome: 

  • Karyotype is 45 chromsomes with XO/44A – XO Symptoms: 
  • Lack of female secondary sexual characters. 
  • sterility due to rudimentary ovaries 
  • Short stature
40.

Posture and balance of the body is controlled byA. ponsB. medullaC. cerebellumD. cerebrum

Answer» Correct Answer - C
cerebellum
41.

Mention the function of RNA polymerase I and RNA polymerase II in eukaryotes.

Answer»
  • RNA polymerase I – Catalyses the synthesis of rRNA (285, 385 & 5.85) 
  • RNA polymerase II – catalyses the synthesis of reterogeneous nuclear RNA/hn RNA/precursor mRNA.
42.

Example of an amphoteric oxide isA. `Na_(2)O`B. `MgO`C. `Al_(2)O_(3)`D. `CaO`

Answer» Correct Answer - C
`Al_(2)O_(3)`
43.

List down benefits of keeping a clean environment in an organization.

Answer»

(i) Healthy employees may mean fewer sick days. 

(ii) Cleanliness creates satisfaction. 

(iii) It preserves assets over the long term.

(iv) It maintains a good image of the organisation.

44.

Explain two salient features of genetic code.

Answer»

1. Genetic code is triplet: Each codon consists of sequence of three nitrogen bases. 

2. Genetic code is universal: A particular codon codes for the same amino acid in all organisms. 

3. Genetic code is non overlapping: The successive triplet codons are read in order without overlapping and they do not share any base. 

4. Genetic code is degenerate: A single amino acid is coded by more than one codon. 

Eg: valine is coded by 4 different codons GUA, GUC, GUU and GUG 

5. Genetic code is commaless: Codons are without punctuation and written in linear form. There is no signal to indicate the end of one codon or beginning of the next codon. 

6. Genetic code is non-ambiguous: Each codon specifies a particular amino acid in all organisms. 

Eg: AUG codes for methionine 

7. Initiator codons: Protein synthesis is always initiated by particular codons called initiator codons. 

Eg: AUG in eukaryotes, GUG in prokaryotes 

8. Terminator codons: Three codons that act as stop signals to terminate protein synthesis are called terminator codons or nonsense codons. 

E.gf.: UAA (Ochre), UGA (Amber) and UGA (Opal)

45.

What is Haemophilia?

Answer»

Haemophilia is a rare bleeding disorder in which the blood doesn’t clot normally.

46.

Mr. Mohan is a travel agent, He is well aware about the GDS system and implementing in his day to day reservations. The GDS has linked to all major airlines CRS. But he wants to know the history and evolution of GDS. As a Travel Agent How will you explain him the Historical Background of GDS.

Answer»

GDS have evolved form first computer based reservation systems implemented by several U.S. airlines in the late 1960s and early 1970s. 

  • This distributed system was paralleled by increases in computing and storage power; by 1978, SABRE was available in over 130 locations and could store 1 million airfares. 
  • After deregulation in 1978, the importance of computerized reservation systems became even more apparent. Further, a CRSs owned by a particular airline could be programmed to display their airline’s information ahead of their competitors in an effort to distort consumer choice.
  •  This was compounded by the natural tendency to travel agents to book tickets with the carriers providing the CRS terminals - known as the “halo-effect”. As a result in 1984 the civil Aeronautics Board began to regulate these systems to insure a free and competitive market for both travelers and airlines. 
  • By the early 1990s, CRSs had evolved into more complex systems. In part, this was motivated by strategic alliances and mergers between U.S. and European carriers, laying true global distribution systems. In addition, the ability to leverage the Internet as a tool for expanding the presence of these booking systems was promising. In response to these developments, the United States Department of Transportation (USDOT) increased regulation of the GDS industry.
  • As the GDS industry continued to evolve in the 1990s, the availability of public interfaces to these systems greatly expanded, particularly with the rollout of the Internet and World Wide Web. 
  • There are currently four major GDSs in operation, Amadeus, Galileo, Sabre and Worldspan, 

GDSs can be categorized in the following way: 

1) airline websites; 

2) GDS-based online, travel agencies such as Travelocity, Expedia travel and orbitz. 

3) opaque sites that require some type of bid/payment before knowing the actual travel schedule such as Priceline; 

4) specialty low-fare sites which are analogous to a tip-sheet for selected bargains; and 

5) Screen scraper sites which actually reads fare information from the screens of others sites .

47.

What do you mean by GDS?

Answer»

1) GDS stands for Global Distribution System 

2) Global Distribution System is a Travel Agency Network that enables interconnectedness between Airline Computer Reservation Systems and travel agency terminals. 

3) It’s distinct from a Computer Reservation System which is a reservation system used by Airlines. 

4) The Global Distribution System (GDS) is used by travel agents to make reservation on various airline’s reservations systems. 

5) A Global Distribution System (GDS) differs from an airline CRS in one critical aspect, a GDS holds no inventory of its own. The inventory is held in various airline reservation systems. 

6) The GDS system has links to all major airline CRS. 

7) When a travel agency terminal requests a reservation on the service of a particular airline the GDS system routes the request to the appropriate airline Computer Reservation System. 

8) This enables a travel agent with a connection to a single GDS to book flights and associated services on virtually all the airlines in the world. 

9) The major GDS systems are Amadeus, Sabre, Galileo & Worldspan.

48.

Differentiate homologous and analogous organs.

Answer»

Homologous: Organs or structures that have the same origin and basic anatomical structure but perform different functions. 

Analogous organs : Structures that are different in their basic anatomical structure and origin but appear but similar and perform similar functions.

49.

Which one of the following environmental movement is against the testing of missiles that may lead to infertility of soil ?1. Bishnoi Movement2. Baliyapal Movement3. Silent Valley Movement4. Narmada Bachao Andolan

Answer» Correct Answer - Option 2 : Baliyapal Movement

An environmental movement can be defined as a social or political movement, for the conservation of the environment or the improvement of the state of the environment. 

Movement

Bishnoi Movement

Silent Valley Movement

Narmada Bachao Andolan

Baliyapal Movement

Leaders

Amrita Devi along with Bishnoi villagers in Khejarli.

The Kerala Sastra Sahitya Parishad (KSSP) an NGO, and activist Sughathakumari.

Medha Patkar, Baba Amte, Adivasis, farmers etc.

Villagers of Baliapal and nearby villages in Odisha.

Year of movement

The 1700s

1978

1985

1986

Places Involved

Khejarli, Marwar region, Rajasthan state.

Silent Valley, an evergreen tropical forest in the Palakkad district of Kerala.

Narmada River, which flows through the states of Gujarat, Madhya Pradesh, and Maharashtra.

Baliapal region, Odisha state.

Aim

Save sacred trees from being cut down by the king’s soldiers for a new palace.

To protect the moist evergreen forest from being destroyed for a hydroelectric project.

A social movement against several large dams being built across the Narmada River.

No missile base in Odisha and surrounding areas.

Hence, we can say that the Baliyapal movement is the right answer which opposed missile base establishment, which affects our soil fertility.

50.

Define gene therapy. Name a genetic disorder that is being treated using the technique of gene therapy

Answer»

Gene therapy : 

Gene therapy is the replacement of a defective mutant allele with a functional gene into an individual cell and tissues to treat genetic hereditary diseases. 

OR 

It is the insertion of normal functional genes into the individual or embryo with genetic defect to take over the function of and compensate for the non – functional gene.