Question
Determine the total number of ways to form a committee
consisting of 10 members from a pool of 8 men and 7 women, ensuring the committee includes at least 6 men and at least 3 women.Solution
Number of ways of selecting a committee with 6 men and (10 - 6) women =Â 8C6Â XÂ 7C4 = 28 X 35 = 980 Number of ways of selecting a committee with 7 men and 3 women =Â 8C7Â XÂ 7C3 = 8 X 35 = 280 So, total number of ways of forming a committee under the given conditions = 980 + 280 = 1260
Which of the following data structures follows the Last-In, First-Out (LIFO) principle?
Which of the following language is used for specifying style sheets for XML documents?Â
Consider the following C++ code:
#include
class Base {
public:
  virtual void show() = 0;
};
cl...
- In a dense index, why might an index entry not appear for every search key value in the file?
Which of the following action is treated as Anomaly while understanding User activity logs?
In the context of file systems, what is the primary purpose of an inode?
Predict the output
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5, 6, 7 ]
print "list1[0]: ", list1[0]Â Â Â ...
An insert(root, value) function for a Binary Search Tree (BST) is implemented recursively. After inserting several elements, a search(root, value) funct...
The ALU performs the indicated operation on the operands prepared in the prior cycle and store the result in the specified destination operand location.
What is the backbone of MIS?