Question
Sakshi purchased 36 chocolates for a total of Rs. 45.
She then sold 24 of these chocolates for Rs. 39. If Sakshi's profit percentage from this transaction is represented as 'P%', calculate the value of 3(P + 20).Solution
Cost price of 1 chocolate = (45/36) = Rs. 1.25 Selling price of 1 chocolate = (39/24) = Rs. 1.625 Profit earned = 1.625 - 1.25 = Rs. 0.375 So, 'P' = (0.375/1.25) X 100 = 30% Or, P = 30 Required value = 3 X (30 + 20) = 150
The number of significant figures for 5.1250 and 0.06900 respectively are____Â
What is a "collision" in the context of hashing?
What is the final value of x after the following C++ code snippet executes?
  int x = 10;
  for (int i = 0; i < 3; ++i) {
�...
What is the keyword used in Java to indicate that a class is inheriting from another class?
Using a bottom-up dynamic programming approach to calculate the 6th Fibonacci number (F(0)=0, F(1)=1), what are the values stored in the DP table F at i...
Which of the following sorting algorithms has the best worst-case time complexity of O(n log n)?
The order of convergence of Newton-Raphson method is:
Bourne-style shells uses which below symbol
Which of the following is a property of an admissible heuristic in A* search?
In which of the following scenarios would the Floyd-Warshall algorithm be most suitable?