Question
What is the single discount equivalent to the successive
discounts of 10%, 20%, and 15%?Solution
Given - 10%, 20%, and 15% successive discount of the first two- =10+20-(10×20)/100 =30-2 =28% so now 28%and 15% =28+15 -(28×15)/100 =43-4.20 = 38.8%
Which of the following data structures follows the Last-In, First-Out (LIFO) principle?
What is the purpose of the CASE statement in SQL?
Which of the following scheduling algorithms minimizes average seek time?
What were the early operating systems commonly known as, and what was their primary function?
The "state-space tree" is a conceptual tool often associated with backtracking. What does it represent?
Consider the following C++ code:
#include
class Base {
public:
  virtual void show() = 0;
};
cl...
When implementing a circular queue using an array in C, what is the primary advantage over a linear array-based queue?
The Maximum Power transfer theorem states that maximum power is delivered when_______
What is the purpose of the #define directive in programming languages like C and C++?
State true or false
A ping of death attack involves sending a malformed packet to a targeted machine, resulting in deleterious behavior such ...