Question
In the year 2014, the population of a village P was 20%
more than the population of village R. In the year 2015, after increasing by 40%, total population of village P was 3,360. Find the population of village R in 2014?Solution
Population of village P in 2014 = (3360 x 100)/140 = 2,400 Population of village R in 2014 = (2400 x100)/120 = 2,000
Consider the following C++ code:
#include
class Base {
public:
  Base() {
    std::cout << "Ba...
What problem does the Floyd-Warshall algorithm solve?
Which of the following practices is essential for maintaining security compliance in both Windows and Unix/Linux environments?Â
Simplify the Boolean expression.
Y= AB+A(B+C)+B(B+C)
Consider the following Python code:
class Vehicle:
  def __init__(self, brand):
    self.brand = brand
  def...
fill the blank for 19.
Which of the following is a challenge in machine translation?
Which of the following statements accurately describes the characteristics of a primary key in a relational database?
Which of these is a primary benefit of cloud disaster recovery?
Binary Search is an efficient searching algorithm that follows the Divide and Conquer approach. What is its time complexity?