Question
Last year, Ranjan's monthly salary was ₹34,500 and
this year his monthly salary is ₹38,640. What is the percentage increase in Ranjan's monthly salary in this year over his monthly salary last year?Solution
ATQ, Formula to calculate percentage increase: Percentage Increase = (New Salary − Old Salary)/Old Salary) × 100 Given values: Old Salary (last year) = ₹34,500 New Salary (this year) = ₹38,640 Subtract the old salary from the new salary = Increase = ₹38,640 − ₹34,500 = ₹4,140 Now, divide the increase by the old salary = ( ₹4,140/₹34,500) = 0.1209 Multiply by 100 to get the percentage = 0.1209×100=12.09% Therefore, the percentage increase in Ranjan's salary is 12.09%. or 12%
In computer fundamentals, what is the primary purpose of the BIOS in a computer system?
Which of the following design patterns violates the Open/Closed Principle of SOLID principles in object-oriented design?
What will be the output of the following code snippet demonstrating composition in Java?
class Engine {
void start() {
...
Linear Regression is the supervised machine learning model in which the model finds the best fit ___ between the independent and dependent variable.
Which of the following statements best describes a key difference between virtual machines and containers?
Which of the following data structures is best suited for implementing a priority queue?
Definition of 2NF
- Which of the following best defines the concept of Encapsulation in Object-Oriented Programming (OOP)?
Which phase of systems analysis and design focuses on specifying the functional requirements of a system?
You are given an array of elements where each array element represents the MAXIMUM number of jumps that can be made in the forward direction from that e...