Question
A salesman’s terms were changed from a flat
commission of 9% on all his sales to a fixed salary of Rs. 4000 plus 4% commission on all sales exceeding Rs. 15000. If his remuneration as per the new scheme was Rs. 1000 more than by the first scheme, what were his sales worth?Solution
Let his total sales be ‘x’. Then, 4000 + (x - 15000) * 4/100 = 9x/100 + 1000 => 400000 + 4x – 60000 = 9x + 100000 => 5x = 240000 => x = 48000
What is the primary function of the CICS (Customer Information Control System) in mainframe computing?
Which architecture is used in modern NLP tasks like BERT and GPT?
Which is computer object code?
What does a star schema consist of?
Which of the following statements about abstract methods in Java is true?
The error in Simpson's 1/3 Rule is proportional to:
Complete the Java method to extract a substring from text starting at startIndex and having length characters.
public class StringUtil {
�...
Complete the C function to find the first occurrence of a character c in a string str and return its index. Return -1 if not found.
#include
If SNRi is the input SNR of a system in dB, SNRo is the output SNR of a system in dB, then which of the below defines the noise figure (NF) in dB?
Inheritance is an OOP principle that establishes an "is-a" relationship between classes. What does this relationship primarily allow?