Question
Office A has 1250 employees, of
which 44% are boys, and the remaining are girls. Office B has 12% more employees than Office A. In Office B, 54% of the total employees are girls. What percentage of the number of girls in Office A is represented by the number of girls in Office B?Solution
ATQ, Number of girls in Office βAβ = 1250 Γ (1 β 0.44) = 700 Total number of employees in office βBβ = 1250 Γ 1.12 = 1400 Number of girls in office βBβ = 1400 Γ 0.54 = 756 So, required % = (756/700) Γ 100 = 108% Alternate Solution Let total number of employees in office βAβ = 100x Number of girls in office βAβ = 0.56 Γ 100x = 56x Total number of employees in office βBβ = 1.12 Γ 100x = 112x Number of girls in office βBβ = 0.54 Γ 112x = 60.48x Required percentage = (60.48x/56x) Γ 100 = 108%
In Java, what will be the output of the following code snippet?
public class Test {
Β Β Β public static void main(String[] args) { <...
Which sorting algorithm is considered the most efficient for large datasets with no additional memory constraints?
What is a fundamental characteristic of a singly linked list?
Which cryptographic concept ensures that data integrity is preserved and cannot be altered during transmission?
Which of the following correctly describes the primary difference between Cross-Site Request Forgery (CSRF) and Cross-Site Scripting (XSS)?
...Which of the following is a core characteristic of Big Data?
In the context of asymmetric encryption, which of the following is a key feature of public-private key pairs?
- Computer Architecture
Which architectural feature is crucial for improving the performance of modern multi-core processors?
In a binary tree, what is the maximum number of children a node can have?
What is the base case in a recursive function?