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. |
Complete the Series. a) 1012,1112,10012 ..........,............ b) 10112,11102,100012 ,...........,......... |
|
Answer» a) 1011, 1101 b) 10101,10111 |
|
| 2. |
Find the conjugate of √3i - 1 |
|
Answer» Answer is - 1 - √3i |
|
| 3. |
Find ‘n’ if nC7 = nC6 |
|
Answer» nCn-7 = nC6 ⇒ n – 7 = 6 ⇒ n = 13 |
|
| 4. |
Two friends were born in 1984 .The ptobability that they have same birth date is.a. 1/365b. 1/366c. 2/365d. 3/365 |
|
Answer» Two friends have any one of the 366 days on the year 1984 as her birthday. [Year 1984 is a leap year] Total number of outcomes in which two friends may have their birthday = 366 x 366 Two friends may have same birthday on any one of the 366 Days Of The Year 1984. Number of favourable outcomes in which Two friends will have same birthday = 366 Probability = Number of favourable outcomes/Total number of outcomes. Probability that both have same birthday = 366/(366 x 366) = 1/366. Hence,the probability that they both have the same birthday = 1/366. |
|
| 5. |
A: When is your birthday? B: It is ____ August. A) on B) into C) between D) in |
|
Answer» Correct option is D) in |
|
| 6. |
Discuss the alternative terminology that is used in the relational model. |
|
Answer» Relations are also called tables, and sometimes by the older data processing term files. A row is known as a tuple in the relational model, but may also be referred to as a record. Finally, relational model attributes are known as table columns and sometimes as fields. |
|
| 7. |
Why are functional dependencies not equations? |
|
Answer» Equations deal with numerical relationships. A functional dependency deals with the existence of a determinant relationship between attributes, regardless of whether or not there is a numerical relationship between them. Thus, if we know that there is no hot water every Wednesday, No-Hot-Water is functionally dependent on Wednesday. So, if we know it is Wednesday, then we know we will have No-Hot-Water. This is a functional dependency, but not an equation. |
|
| 8. |
What is a foreign key, and what is it used for? |
|
Answer» A foreign key is used to establish relationships among relations in the relational model. Technically, a foreign key is a column (or columns) appearing in one relation that is (are) the primary key of another table. Although there may be exceptions, the values in the foreign key columns usually must correspond to values existing in the set of primary key values. This correspondence requirement is created in a database using a referential integrity constraint on the foreign key. |
|
| 9. |
What are insertion and deletion anomalies? |
|
Answer» A deletion anomaly occurs when, by deleting the facts about one entity, we inadvertently delete facts about another entity; with one deletion, we lose facts about two entities. For example, if we delete the tuple for Student 001289 from a table, we may lose not only the fact that Student 001289 is in Pierce Hall, but also the fact that he has $200 left in his security deposit. An insertion anomaly happens when we encounter the restriction that we cannot insert a fact about one entity until we have an additional fact about another entity. For example, we want to store the fact that the security deposit for Pierce Hall is $300, but we cannot enter this data into the Student relation until a student registers for Pierce Hall. |
|
| 10. |
What does it mean when we say that a relation is in Boyce-Codd Normal Form (BCNF)? |
|
Answer» A relation is in BCNF when every determinant in the relation is a candidate key. This means that any possible primary key can determine all other attributes in the relation. Attributes may not be determined by non-candidate key attributes or part of a composite candidate key. Thus it is said "I swear to construct my tables so that all nonkey columns are dependent on the key, the whole key and nothing but the key, so help me Codd!" |
|
| 11. |
Mention the methods of opening files within C++. Discuss anyone. |
|
Answer» The methods of opening file within C++ program
The syntax for opening file for output purpose only is ofstream obj(“filename”); |
|
| 12. |
Explain Boyce and Codd form (BCNF). |
|
Answer» Boyce and Codd form (BCNF):
A relation is in BCNF is, and only if, every determinant is a candidate key. |
|
| 13. |
Write a short note on web servers. |
|
Answer» 1. A web server is a computer on which a web site is hosted and a program that runs on such a computer. So the term web server refers to both hardware and software. 2. A web site is a collection of web pages stored or “hosted” on a computer that is connected to the internet. Such a computer is known as a Web Server. 3. A web server program is software that runs on the web site hosting Server computer. Its main purpose is serving web pages for requests from web browsers. 4. There are many web server programs available. The most famous and popular of them all is Apache developed by the Apache Foundation. It is free and also available for several operating systems including Windows, Macintosh, and Linux/Unix. |
|
| 14. |
What is Functional Dependency? |
|
Answer» A Functional dependency is denoted by X Y between two sets of attributes X and Y that are subsets of R specifies a constraint on the possible tuple that can form a relation state r of R. The constraint is for any two tuples t1 and t2 in r if t1[X] = t2[X] then they have t1[Y] = t2[Y]. This means the value of X component of a tuple uniquely determines the value of component Y. |
|
| 15. |
What is Lossless join property? |
|
Answer» It guarantees that the spurious tuple generation does not occur with respect to relation schemas after decomposition. |
|
| 16. |
What is 1 NF (Normal Form)? |
|
Answer» The domain of attribute must include only atomic (simple, indivisible) values. |
|
| 17. |
What are partial, alternate,, artificial, compound and natural key? |
|
Answer» 1. Partial Key: It is a set of attributes that can uniquely identify weak entities and that are related to same owner entity. It is sometime called as Discriminator. 2. Alternate Key: All Candidate Keys excluding the Primary Key are known as Alternate Keys. 3. Artificial Key: If no obvious key, either stand alone or compound is available, then the last resort is to simply create a key, by assigning a unique number to each record or occurrence. Then this is known as developing an artificial key. 4. Compound Key: If no single data element uniquely identifies occurrences within a construct, then combining multiple elements to create a unique identifier for the construct is known as creating a compound key. 5. Natural Key: When one of the data elements stored within a construct is utilized as the primary key, then it is called the natural key. |
|
| 18. |
What is Fully Functional dependency? |
|
Answer» It is based on concept of full functional dependency. A functional dependency X Y is full functional dependency if removal of any attribute A from X means that the dependency does not hold any more. |
|
| 19. |
What is Domain-Key Normal Form? |
|
Answer» A relation is said to be in DKNF if all constraints and dependencies that should hold on the the constraint can be enforced by simply enforcing the domain constraint and key constraint on the relation. |
|
| 20. |
What is 5NF? |
|
Answer» A Relation schema R is said to be 5NF if for every join dependency {R1, R2, ..., Rn} that holds R, one the following is true 1. Ri = R for some i. 2. The join dependency is implied by the set of FD, over R in which the left side is key of R. |
|
| 21. |
What is 2NF? |
|
Answer» A relation schema R is in 2NF if it is in 1NF and every non-prime attribute A in R is fully functionally dependent on primary key. |
|
| 22. |
What is 3NF? |
|
Answer» A relation schema R is in 3NF if it is in 2NF and for every FD X A either of the following is true 1. X is a Super-key of R. 2. A is a prime attribute of R. In other words, if every non prime attribute is non-transitively dependent on primary key. |
|
| 23. |
What is 4NF? |
|
Answer» A relation schema R is said to be in 4NF if for every Multivalued dependency X Y that holds over R, one of following is true. 1. X is subset or equal to (or) XY = R. 2. X is a super key. |
|
| 24. |
The line y = x + 1 is tangent to the curve y2 = 4x at which of the following points.(A) (1,2) (B) (2,1) (C) (1, –2) (D) (–1,2) |
|
Answer» Correct option: (C) (1, –2) |
|
| 25. |
“Sulphur dioxide is poisonous to both animals and plants”. Justify the statement |
Answer»
|
|
| 26. |
U={1,2,3,4,5,6,7,8,9}, A={1,2,4,7}, B={1,3,5,7} Find A U B and B={1,3,5,7} |
|
Answer» Given , (Universal Set) U = { 1,2,3,4,5,6,7,8,9 } A = { 1,2,4,7 } B = { 1,3,5,7 } Therefore , A U B = { 1,2,3,4,5,7 } [ Here U represents Union ( U ) . ] ( Note : Dont Write the repeated numbers multiple times, only write those numbers 1 time ) |
|
| 27. |
Find the range of f(x) = 2(x+3)/3. |
|
Answer» \(f(x)=\frac{2(x +3)}{3}\) \(\because\) function f(x) is defined for all real values of x. \(\therefore\) \(- \infty < x< \infty\) ⇒ \(- \infty < x +3 < \infty\) ⇒ \( - \infty <\frac{2(x +3)}{3} < \infty\) ⇒ \(- \infty < f(x) < \infty\) Range of function f(x) is \(\mathbb {R}\) or \((-\infty, \infty)\). |
|
| 28. |
For any two non real complex no z1, z2 if z1+ z2 and z1z2 are real numbers then |
|
Answer» If Z1+Z2 = real and Z1.Z2=real Then Z2 is conjugate of Z1 Example Let Z1= X+iy and Z2= A+ ib If Z1+ Z2 =real them Im(Z1+Z2)=0 Thus y=-b Similarly for z1.z2= real A=X Thus Z1 and Z2 are conjugate Example Z1= 3+ 4i Z2= 3-4i Z1+Z2 = 6 real Z1.Z2= 25 is real as i2=-1 |
|
| 29. |
In which of the following reactions `3^(@)` alcohol will be obtained as a product.A. B. `PhMgBr(excess)+CH_(3)-overset(O)overset(||)(C)-Cl to underset(H^(+))to`C. `CH_(3)MgBr(excess)+CH_(3)-overset(O)overset(||)(C)-O-overset(O)overset(||)C-CH_(3)to underset(H^(+))to`D. `CH_(3)MgBr(excess)+Cl-overset(O)overset(||)(C)-O-Et to underset(H^(+))to` |
|
Answer» Correct Answer - B::C::D `Ph=MgBr+CH_(3)-overset(O)overset(||)C-Cl to CH_(3)-overset(O)overset(||)C-Phoverset(PhMgBr)(to)CH_(3)-underset(Ph)underset(|)overset(OH)overset(|)C-Ph` `CH_(3)MgBr+CH_(3)-overset(O)overset(||)C-O-overset(O)overset(||)C-CH_(3)toCH_(3)-overset(O)overset(||)C-CH_(3)overset(CH_(3)MgBr)underset(H^(o+))toCH_(3)-underset(CH_(3))underset(|)overset(OH)overset(|)C-CH_(3)` `CH_(3)MgBr+Cl-overset(O)overset(||)C-O-Et toCH_(3)-overset(O)overset(||)C-OEt overset(CH_(3)MgBr)underset(H^(o+))toCH_(3)-underset(CH_(3))underset(|)overset(OH)overset(|)C-CH_(3)" "]` |
|
| 30. |
Which statement is/are incorrect for given conplex ? `Co(C_(2)O_(4))(en)Cl_(2)]^(-1)`A. Oxidation state of central atom is + 3.B. Coordination number of central atom is 4.C. Bidentate ligand and Monodentate ligand both are present in this complex.D. Ambidentate ligand and positive ligand are present in it. |
|
Answer» Correct Answer - B::D `[Co(C_(2)O_(4))(en)Cl_(2)]^(-1)` Oxidation state of Co x-2+0-2=-1 x=+3 `C_(2)O_(4)^(-2)` and en = bidentate ligand `Cl^(-)` = monodentate ] |
|
| 31. |
The value of `Lim_(xto0) ((e)/(4x)-(e)/(2x(e^(ex)+1)))` equalsA. `(e^(2))/(2)`B. `(e^(2))/(4)`C. `(e^(2))/(8)`D. `(e)/(2)` |
|
Answer» Correct Answer - A `underset(xto0)Lim((e)/(4x)-(e)/(2x(e^(ex)+1)))=underset(xto0)Lim(e)/(4x)(1-(2)/(e^(ex)+1))=underset(xto0)Lim(e)/(4x)((e^(ex)+1-2)/((e^(ex)+1)))=(e^(2))/(8)underset(xto0)Lim((e^(ex)-1))/(ex)=(e^(2))/(8)`. |
|
| 32. |
(-3)^-1 × (1/3)^-1 |
|
Answer» (-3)-1 x \((1/3)^{-1}\) = \(\frac1{-3}\times(3^{-1})^{-1}\) = \(\frac{-1}3\times3\) = -1 |
|
| 33. |
The solution set of inequality, \( \frac{2^{x-1}-1}{2^{x+1}+1}<2 \), contains (A) all real numbers(B) finite number of integers(C) no negative number(D) no real number |
|
Answer» Correct option is (A) All real numbers \(\frac{2^{x -1} -1}{2^{x + 1} + 1} < 2\) ⇒ \(\frac{2^{x -1} -1}{2^{x + 1} + 1} -2 < 0\) ⇒ \(\frac{2^{x -1} - 1 -2.2^{x + 1} -2}{2^{x +1} + 1}< 0\) ⇒ \(2^{x-1}-2^{x +2}- 3< 0\) (∵ \(2^{x+1}+1 > 0\) (always)) ⇒ \(\frac{2^x}2 - 4.2^x - 3< 0\) ⇒ \(\frac{-7}2.2^x - 3<0\) ⇒ \(\frac 72 . 2^x > -3\) ⇒ \(2^x > \frac{-6}7\) which is true for all real values of x. |
|
| 34. |
3:P::21:77 |
|
Answer» Product of Mean = Product of Extreme P×21 = 3×77 P×21 = 231 P = 231÷21 P = 11 |
|
| 35. |
The ratio of the sums of m and n terms of an A.P. is m2 : n2. Show that the ratio of mth and nth term is (2m – 1) : (2n – 1). |
|
Answer» Solution: we have |
|
| 36. |
Sum of the first p, q and r terms of an A.P. are a, b and c, respectively. Prove that a/p(q - r) + b/q (r- p ) + c/r (p - q) = 0 |
|
Answer» Solution: |
|
| 37. |
if nPr = 720 and nCr = 6, then find value of r! ?1. 5!2. 4!3. 3!4. 2! |
|
Answer» Correct Answer - Option 1 : 5! Formula Used: nPr =n!/(n-r)! nCr = n!/[(n-r)! r! ] nPr/nCr = r! Calculation: Given: nPr = 720 nCr = 6 nPr/nCr = r! r! = 720/6 r! = 120 r! = 5 × 4 × 3 × 2 × 1 r = 5 ∴ The value of r! = 5! |
|
| 38. |
Walking 4 kmph a student reaches his college 5 minutes late and if he walks at 5 kmph he reaches 2(1/2) minutes early. What is the distance from his house to the college? |
|
Answer» Let required distance = x kms At 4 kmph, time taken = X/4 At 5 kmph, time taken = X/5 Given X/4 = 5/60 = X/5 + 25/60s Getting x = 2.5 km |
|
| 39. |
How many different 4 digit number can be formed using the digits 1,2,4,5, 7, 8, 9. No digit being repeated. |
|
Answer» Required arrangement = 7P4 = 840 |
|
| 40. |
Find the duplicate ratio of 5 : 3. |
|
Answer» Duplicate ratio of 5 : 3 = 52 : 32 = 25 : 9 |
|
| 41. |
Two number are in the ratio 3 : 5 is added to each of them. The new ratio will be 2 : 3 find the numbers. |
|
Answer» The numbers are in the ratio 3 : 5 Let the common ratio be x. Therefore the numbers are 3x and 5x. If 5 is added to both the numbers the ratio become 2:3. ∴ (3x + 5):(5x + 5)= 2 : 3 ∴ 6x + 15 = 10x + 5 ∴ x = 1 Thus, the numbers are 3x = 3 × 1 = 3 and 5x = 5 × 1 = 50. |
|
| 42. |
Two taps can separately fill a tank in 12 min and 15 minutes respectively. The tank when full can be emptied by a drain pipe is 20 minutes. When the tank was empty, all the three were opened simultaneously. In what time will the tank be filled up? |
|
Answer» 1st tap can fill 1/12 th tank in 1 min 2nd tap can fill 1/15th tank in 1 min Drain pipe drain out 1/20th tank in 1 min In 1 min = (1/12 + 1/15 - 1/20)th = (1/10)th of tank will get filled ∴ the tank will get filled in 10 minutes. |
|
| 43. |
If two men or four women can do a work in 33 days and 3 men and 5 women can do the same work in 24 days? How long shall 5 men and 2 women take to do the same work? |
|
Answer» 2 men and 4 women can do a work in 33 days. 66 men and 132 women can do a work in 1 day Similarly 3 men and 5 women can do a work in 24 days 72 men and 120 women can do a work in 1 day ∴ 66 men + 132 women = 72 men + 120 women ∴ 1 man = 2 women 5 men + 2 women = 10 women + 2 women =12 women Let the required number of days be x 2 men + 4 women = 4 women + 4 women = 8 women 8W : 12W = x : 33 12x = 33 × 8 ∴ x = 22 days |
|
| 44. |
If 5 : 20 = 3 : x, find the value of x. |
|
Answer» 5x = 60 ⇒ x = 12 |
|
| 45. |
If nP4 = 360, find n. |
|
Answer» nP4 = n(n – 1)(n – 2)(n – 3) = 6.5.4.3 = 360 ∴ n = 6 |
|
| 46. |
Write the sequence of even numbers |
|
Answer» Answer is 2,4,6,8,10, |
|
| 47. |
Write the sequence of odd numbers |
|
Answer» Answer is 1,3,5,7, |
|
| 48. |
The difference between the 15th term and the 5th term of an A.P is 40. Which number is to be added to its 12 |
|
Answer» The difference between the 15th term and the 5th term = 40 i.e., ten times an of a common difference = 40 Common difference = 40/10 = 4 When we add 8 x common difference we will get 20th term. The difference between the 12th term and the 20th term = (20 – 12) × common difference = 8 x 4 = 32 The difference between the first term and the 21th term = (21 – 1) × Common difference = 20 × = 80 |
|
| 49. |
23rd term of an arithmetic sequence is 32. 35th term is 104. Thena. What is the common difference?b. Which is the middle term of first 35 terms of this sequence?c. Find the sum of first 35 terms of this sequence. |
|
Answer» a. 23rd term = 32 35th term = 104 x23 + 12d = x35 12d = 104 - 32 = 72 d = 6 b. Middle term offirst 35 terms = \(\sqrt{4}\) c. 18 th term = X19 = X23 – 5d = 32 -5 × 6 = 32 – 30 = 2 Sum of 35 terms = 18th term × 35 = 70 |
|
| 50. |
i. What is the sum of first 20 natural numbers? ii. The algebraic form of an arithmetic sequence is 6n + 5. Find the sum of first 20 terms of this sequence? |
|
Answer» i. Sum of first n natural numbers = n(n + 1)/2 ∴ Sum of first 20 natural numbers = 20 x (20 + 1)/2 = (20 x 21)/2 = 420 / 2 = 210 ii. The algebric form = 6n + 5 Common difference 'd' = coefficient of n = 6 First term 'x1' = (coefficient of n) + (constant term) = 6 + 5 = 11 Sum of first 20 terms = \(\frac{1}{2}\) an(n + 1) + nb = \(\frac{1}{2}\) x 6 x 20 x 21 + 20 x 5 = 3 x 20 x 21 + 100 = 1260 + 100 = 1360 |
|