UGC NET CSA DEC 2015 Paper 2

UGC NET CSA DEC 2015 Paper 2

Q1➡ | Engineering Mathematics
How many committees of five people can be chosen from 20 men and 12 women such that each committee contains at least three women?
i ➥ 75240
ii ➥ 52492
iii ➥ 41800
iv ➥ 9900

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeProbabilityHelp-Line

Q2➡ | Engineering Mathematics
Which of the following statement(s) is/are false ?
(a) A connected multigraph has an Euler Circuit if and only if each of its vertices has even degree.
(b) A connected multigraph has an Euler Path but not an Euler Circuit if and only if it has exactly two vertices of odd degree.
(c) A complete graph (K n ) has a Hamilton Circuit whenever n ≥ 3.
(d) A cycle over six vertices (C 6 ) is not a bipartite graph but a complete graph over 3 vertices is bipartite.
i ➥ (a) only
ii ➥ (b) and (c)
iii ➥ (c) only
iv ➥ (d) only

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeGraph theoryHelp-Line

Q3➡ | Engineering Mathematics
Which of the following is/are not true?
(a) The set of negative integers is countable.
(b) The set of integers that are multiples of 7 is countable.
(c)The set of even integers is countable.
(d)The set of real numbers between 0 and 1⁄2 is countable.
i ➥ (a) and (c)
ii ➥ (b) and (d)
iii ➥ (b) only
iv ➥ (d) only

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSet theoryHelp-Line

Q4➡ | Engineering Mathematics

Consider the graph given below: The two distinct sets of vertices, which make the graph bipartite are:
i ➥ (v 1 , v 4 , v 6 ); (v 2 , v 3 , v 5 , v 7 , v 8 )
ii ➥ (v 1 , v 7 , v 8 ); (v 2 , v 3 , v 5 , v 6 )
iii ➥ (v 1 , v 4 , v 6 , v 7 ); (v 2 , v 3 , v 5 , v 8 )
iv ➥ (v 1 , v 4 , v 6 , v 7 , v 8 ); (v 2 , v 3 , v 5 )

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeGraph theoryHelp-Line

Q5➡ | Engineering Mathematics
A tree with n vertices is called graceful, if its vertices can be labelled with integers 1, 2,….n such that the absolute value of the difference of the labels of adjacent vertices are all different. Which of the following trees are graceful?
A.

B.

C.
i ➥ (a) and (b)
ii ➥ (b) and (c)
iii ➥ (a) and (c)
iv ➥ (a), (b) and (c)

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeGraph theoryHelp-Line

Q6➡ | Engineering Mathematics
Which of the following arguments are not valid ?
(a) “If Gora gets the job and works hard, then he will be promoted. If Gora gets promotion, then he will be happy. He will not be happy, therefore, either he will not get the job or he will not work hard”.
(b) “Either Puneet is not guilty or Pankaj is telling the truth. Pankaj is not telling the truth, therefore, Puneet is not guilty”.
(c) If n is a real number such that n >1, then n 2 >1. Suppose that n 2 >1, then n >1.
i ➥ (a) and (c)
ii ➥ (b) and (c)
iii ➥ (a), (b) and (c)
iv ➥ (a) and (b)

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeCombinatoricsHelp-Line

Q7➡ | Artificial-intelligence
Let P(m, n) be the statement “m divides n” where the Universe of discourse for both the variables is the set of positive integers. Determine the truth values of the following propositions.
(a)∃m ∀n P(m, n)
(b)∀n P(1, n)
(c) ∀m ∀n P(m, n)
i ➥ (a) – True; (b) – True; (c) – False
ii ➥ (a) – True; (b) – False; (c) – False
iii ➥ (a) – False; (b) – False; (c) – False
iv ➥ (a) – True; (b) – True; (c) – True

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTube Propositional logic Help-Line

Q8➡ |
Match the following terms:
i ➥ (i)(ii)(iii)(iv)
ii ➥ (ii)(iii)(i)(iv)
iii ➥ (iii)(ii)(iv)(i)
iv ➥ (iv)(iii)(ii)(i)

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubePropositional logicHelp-Line

Q9➡ | Engineering Mathematics
Consider the compound propositions given below as:
(a)p ∨ ~(p ∧ q)
(b)(p ∧ ~q) ∨ ~(p ∧ q)
(c)p ∧ (q ∨ r)
Which of the above propositions are tautologies?
i ➥ (a) and (c)
ii ➥ (b) and (c)
iii ➥ (a) and (b)
iv ➥ only (a)

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubePropositional logicHelp-Line

Q10➡ | Engineering Mathematics
Which of the following property/ies a Group G must hold, in order to be an Abelian group?
(a)The distributive property
(b)The commutative property
(c)The symmetric property
i ➥ (a) and (b)
ii ➥ (b) and (c)
iii ➥ (a) only
iv ➥ (b) only

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSet theoryHelp-Line

Q11➡ | Programming
Consider the following program :
include
main( )
{
int i, inp;
float x, term=1, sum=0;
scanf(“%d %f ”, &inp, &x);
for(i=1; i<=inp; i++)
{
term = term * x/i;
sum = sum + term ;
}
printf(“Result = %f\n”, sum);
}
The program computes the sum of which of the following series?
i ➥ x + x 2 /2 + x 3 /3 + x 4 /4 +…
ii ➥ x + x 2 /2! + x 3 /3! + x 4 /4! +…
iii ➥ 1 + x 2 /2 + x 3 /3 + x 4 /4 +…
iv ➥ 1 + x 2 /2! + x 3 /3! + x 4 /4! +…

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeProgrammingHelp-Line

Q12➡ | OOPS
Consider the following two statements:
(a) A publicly derived class is a subtype of its base class.
(b) Inheritance provides for code reuse.
i ➥ Both the statements (a) and (b) are correct.
ii ➥ Neither of the statements (a) and (b) are correct
iii ➥ Statement (a) is correct and (b) is incorrect
iv ➥ Statement (a) is incorrect and (b) is correct.

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeInheritanceHelp-Line

Q13➡ | Database management system
Consider a “CUSTOMERS” database table having a column “CITY” filled with all the names of Indian cities (in capital letters). The SQL statement that finds all cities that have “GAR” somewhere in its name, is:
i ➥ Select * from customers where
city = ‘%GAR%’;
ii ➥ Select * from customers where
city = ‘$GAR$’;
iii ➥ Select * from customers where
city like ‘%GAR%’;
iv ➥ Select * from customers where
city as ‘%GAR’;

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSQLHelp-Line

Q14➡ | Database management system
Match the following database terms to their function:
i ➥ (iv)(iii)(i)(ii)
ii ➥ (ii)(iv)(i)(iii)
iii ➥ (ii)(iv)(iii)(i)
iv ➥ (iv)(iii)(ii)(i)

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeMatch the followingHelp-Line

Q15➡ |
In general, in a recursive and non-recursive implementation of a problem (program) :
i ➥ Both time and space complexities are better in recursive than in non-recursive program.
ii ➥ Both time and space complexities are better in non-recursive than in recursive program
iii ➥ Time complexity is better in recursive version but space complexity is better in non-recursive version of the program.
iv ➥ Space complexity is better in recursive version but time complexity is better in non-recursive version of the program.

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeTime complexityHelp-Line

Q16➡ |
A three dimensional array in ‘C’ is declared as int A[x][y][z]. Here, the address of an item at the location A[p][q][r] can be computed as follows (where w is the word length of an integer):
i ➥ &A[0][0][0] + w(y* z* q + z* p + r)
ii ➥ &A[0][0][0] + w(y* z* p + z*q + r)
iii ➥ &A[0][0][0] + w(x* y* p + z* q+ r)
iv ➥ &A[0][0][0] + w(x* y* q + z* p + r)

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeArraysHelp-Line

Q17➡ |
In C++, which system – provided function is called when no handler is provided to deal with an exception?
i ➥ terminate( )
ii ➥ unexpected( )
iii ➥ abort( )
iv ➥ kill( )

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeProgramming in c++Help-Line

Q18➡ | Database management system
Which of the following provides the best description of an entity type?
i ➥ A specific concrete object with a defined set of processes (e.g. Jatin with diabetes)
ii ➥ A value given to a particular attribute (e.g. height – 230 cm)
iii ➥ A thing that we wish to collect data about zero or more, possibly real world examples of it may exist
iv ➥ A template for a group of things with the same set of characteristics that may exist in the real world

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeER modelHelp-Line

Q19➡ | Database management system
Data which improves the performance and accessibility of the database are called:
i ➥ Indexes
ii ➥ User Data
iii ➥ Application Metadata
iv ➥ Data Dictionary

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeConstraintsHelp-Line

Q20➡ | Database management system
A relation R = {A, B, C, D, E, F,G} is given with following set of functional dependencies: F = {AD → E, BE → F, B → C, AF → G} Which of the following is a candidate key ?
i ➥ A
ii ➥ AB
iii ➥ ABC
iv ➥ ABD

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeFunctional dependencyHelp-Line

Q21➡ |
Which of the following services is not provided by wireless access point in 802.11 WLAN ?
i ➥ Association
ii ➥ Disassociation
iii ➥ Error correction
iv ➥ Integration

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeWLANHelp-Line

Q22➡ |
Which of the following fields in IPv4 datagram is not related to fragmentation?
i ➥ Type of service
ii ➥ Fragment offset
iii ➥ Flags
iv ➥ Identification

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeIPv4 and fragmentationHelp-Line

Q23➡ |
Four channels are multiplexed using TDM. If each channel sends 100 bytes/second and we multiplex 1 byte per channel, then the bit rate for the link is ________.
i ➥ 400 bps
ii ➥ 800 bps
iii ➥ 1600 bps
iv ➥ 3200 bps

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeMultiplexingHelp-Line

Q24➡ |
In a typical mobile phone system with hexagonal cells, it is forbidden to reuse a frequency band in adjacent cells. If 840 frequencies are available, how many can be used in a given cell?
i ➥ 280
ii ➥ 110
iii ➥ 140
iv ➥ 120

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeFrequency bandHelp-Line

Q25➡ |
Using p = 3, q = 13, d = 7 and e = 3 in the RSA algorithm, what is the value of ciphertext for a plain text 5 ?
i ➥ 8
ii ➥ 16
iii ➥ 26
iv ➥ 33

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeRSA algorithmHelp-Line

Q26➡ |
A virtual memory has a page size of 1K words. There are eight pages and four blocks. The associative memory page table contains the following entries:

Which of the following list of virtual addresses (in decimal) will not cause any page fault if referenced by the CPU ?
i ➥ 1024, 3072, 4096, 6144
ii ➥ 1234, 4012, 5000, 6200
iii ➥ 1020, 3012, 6120, 8100
iv ➥ 2021, 4050, 5112, 7100

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeVirtual memoryHelp-Line

Q27➡ |
Suppose that the number of instructions executed between page fault is directly proportional to the number of page frames allocated to a program. If the available memory is doubled, the mean interval between page faults is also doubled. Further, consider that a normal instruction takes one microsecond, but if a page fault occurs, it takes 2001 microseconds. If a program takes 60 sec to run, during which time it gets 15,000 page faults, how long would it take to run if twice as much memory were available?
i ➥ 60 sec
ii ➥ 30 sec
iii ➥ 45 sec
iv ➥ 10 sec

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubePage faultHelp-Line

Q28➡ |
Consider a disk with 16384 bytes per track having a rotation time of 16 msec and average seek time of 40 msec. What is the time in msec to read a block of 1024 bytes from this disk?
i ➥ 57 sec
ii ➥ 49 sec
iii ➥ 48 sec
iv ➥ 17 sec

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeRotational latencyHelp-Line

Q29➡ |
A system has four processes and five allocatable resources. The current allocation and maximum needs are as follows:

The smallest value of ‘x’ for which the above system in safe state is ________.
i ➥ 1
ii ➥ 3
iii ➥ 2
iv ➥ Not safe for any value of x.

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeDeadlockHelp-Line

Q30➡ |
In Unix, the login prompt can be changed by changing the contents of the file ________
i ➥ contrab
ii ➥ init
iii ➥ gettydefs
iv ➥ inittab

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeUnixHelp-Line

Q31➡ |
A data cube C, has n dimensions, and each dimension has exactly p distinct values in the base cuboid. Assume that there are no concept hierarchies associated with the dimensions. What is the maximum number of cells possible in the data cube, C?
i ➥ p n
ii ➥ p
iii ➥ (2 n – 1)p+1
iv ➥ (p + 1) n

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeMobile computingHelp-Line

Q32➡ |
Suppose that from given statistics, it is known that meningitis causes stiff neck 50% of the time, that the proportion of persons having meningitis is 1 / 50000 , and that the proportion of people having stiff neck is 1 / 20. Then the percentage of people who had meningitis and complain about stiff neck is:
i ➥ 0.01%
ii ➥ 0.02%
iii ➥ 0.04%
iv ➥ 0.05%

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeStatisticsHelp-Line

Q33➡ | Database management system
______ system is market oriented and is used for data analysis by knowledge workers including Managers, Executives and Analysts.
i ➥ OLTP
ii ➥ OLAP
iii ➥ Data System
iv ➥ Market System

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeData modelsHelp-Line

Q34➡ | Database management system
________ allows selection of the relevant information necessary for the data warehouse.
i ➥ The Top – Down View
ii ➥ Data Warehouse View
iii ➥ Datasource View
iv ➥ Business Query View

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeData ware housingHelp-Line

Q35➡ |
The hash function used in double hashing is of the form:
i ➥ h (k, i) = (h 1 (k) + h 2 (k) + i) mod m
ii ➥ h (k, i) = (h 1 (k) + h 2 (k) – i) mod m
iii ➥ h (k, i) = (h 1 (k) + i h 2 (k)) mod m
iv ➥ h (k, i) = (h 1 (k) – i h 2 (k)) mod m

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeHashingHelp-Line

Q36➡ |
In the following graph, discovery time stamps and finishing time stamps of Depth First Search (DFS) are shown as x/y, where x is discovery time stamp and y is finishing time stamp.


It shows which of the following depth first forest?
i ➥ {a, b, e} {c, d, f, g, h}
ii ➥ {a, b, e} {c, d, h} {f, g}
iii ➥ {a, b, e} {f, g} {c, d} {h}
iv ➥ {a, b, c, d} {e, f, g} {h}

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeDepth first searchHelp-Line

Q37➡ |
The number of disk pages access in B-Tree search, where ‘h’ is height, ‘n’ is the number of keys, and ‘t’ is the minimum degree, is:
i ➥ θ(log n h*t)
ii ➥ θ(log t n*h)
iii ➥ θ(log h n)
iv ➥ θ(log t n)

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeB treesHelp-Line

Q38➡ |
The inorder traversal of the following tree is:
i ➥ 2 3 4 6 7 13 15 17 18 18 20
ii ➥ 20 18 18 17 15 13 7 6 4 3 2
iii ➥ 15 13 20 4 7 1718 2 3 6 18
iv ➥ 2 4 3 13 7 6 15 17 20 18 18

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeTree traversalsHelp-Line

Q39➡ |
An ideal sort is an in-place-sort whose additional space requirement is __.
i ➥ O (log 2 n)
ii ➥ O (n log 2 n)
iii ➥ O (1)
iv ➥ O (n)

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSortingHelp-Line

Q40➡ |
Which of the following is not a congestion policy at network layer?
i ➥ Flow Control Policy
ii ➥ Packet Discard Policy
iii ➥ Packet Lifetime Management Policy
iv ➥ Routing Algorithm

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q41➡ |
Loop unrolling is a code optimization technique:
i ➥ that avoids tests at every iteration of the loop.
ii ➥ that improves performance by decreasing the number of instructions in a basic block.
iii ➥ that exchanges inner loops with outer loops
iv ➥ that reorders operations to allow multiple computations to happen in parallel

Show Answer With Best Explanation

Answer: I
Explanation: Upload Soon

More DiscussionExplanation On YouTubeCode optimzationHelp-Line

Q42➡ |
What will be the hexadecimal value in the register ax (32-bit) after executing the following instructions?
mov al, 15
mov ah, 15
xor al, al
mov cl, 3
shr ax, cl
i ➥ 0F00 h
ii ➥ 0F0F h
iii ➥ 01E0 h
iv ➥ FFFF h

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTube8085 microprocessorHelp-Line

Q43➡ |
Which of the following statements is false?
i ➥ Top-down parsers are LL parsers where first L stands for left – to – right scan and second L stands for a leftmost derivation.
ii ➥ (000)* is a regular expression that matches only strings containing an odd number of zeroes, including the empty string.
iii ➥ Bottom-up parsers are in the LR family, where L stands for left – to – right scan and R stands for rightmost derivation.
iv ➥ The class of context – free languages is closed under reversal. That is, if L is any context- free language, then the language L R = {w R : w∈L} is context – free.

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubeParsersHelp-Line

Q44➡ |
System calls are usually invoked by using :
i ➥ A privileged instruction
ii ➥ An indirect jump
iii ➥ A software interrupt
iv ➥ Polling

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSystem callsHelp-Line

Q45➡ |
The ______ transfers the executable image of a C++ program from hard disk to main memory.
i ➥ Compiler
ii ➥ Linker
iii ➥ Debugger
iv ➥ Loader

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeProgramming in c++Help-Line

Q46➡ |
In software testing, how the error, fault and failure are related to each other?
i ➥ Error leads to failure but fault is not related to error and failure.
ii ➥ Fault leads to failure but error is not related to fault and failure.
iii ➥ Error leads to fault and fault leads to failure.
iv ➥ Fault leads to error and error leads to failure.

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSoftware testingHelp-Line

Q47➡ |
Which of the following is not a software process model?
i ➥ Prototyping
ii ➥ Iterative
iii ➥ Time-boxing
iv ➥ Glass-boxing

Show Answer With Best Explanation

Answer: IV
Explanation: Upload Soon

More DiscussionExplanation On YouTubeSoftware process modelHelp-Line

Q48➡ |
How many solutions are there for the equation x + y + z + u = 29 subject to the constraints that x ≥ 1, y ≥ 2, z ≥ 3 and u ≥ 0?
i ➥ 4960
ii ➥ 2600
iii ➥ 23751
iv ➥ 8855

Show Answer With Best Explanation

Answer: II
Explanation: Upload Soon

More DiscussionExplanation On YouTubePermutations combinationsHelp-Line

Q49➡ |
A unix file system has 1-KB blocks and 4-byte disk addresses. What is the maximum file size if i-nodes contain 10 direct entries and one single, double and triple indirect entry each?
i ➥ 32 GB
ii ➥ 64 GB
iii ➥ 16 GB
iv ➥ 1 GB

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeMemory managementHelp-Line

Q50➡ | Database management system
_______ uses electronic means to transfer funds directly from one account to another rather than by cheque or cash.
i ➥ M-Banking
ii ➥ E-Banking
iii ➥ O-Banking
iv ➥ C-Banking

Show Answer With Best Explanation

Answer: III
Explanation: Upload Soon

More DiscussionExplanation On YouTubeE-CommerceHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line
Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Q27➡ |
i ➥
ii ➥
iii ➥
iv ➥

Show Answer With Best Explanation

Answer: I (Marks to all )
Explanation: Upload Soon

More DiscussionExplanation On YouTubeLearn Topic WiseHelp-Line

Leave a Reply

Your email address will not be published.

error: Content is protected !!
Open chat
1
Hi,how Can We Help You ?