Start learning 50% faster. Sign in now
Let the number of teachers in school A = 5x Then the number of boys in school A = 7x According to the question, => 5x + 7x = 84 × 2 => x = 14 So, number of teachers in school A = 5 × 14 = 70 Number of boys in school A = 7 × 14 = 98 Number of girls in school B = 84 × (9/7) = 108 Number of girls in school C = 140 – 108 = 32 Number of boys in school C = 98 + 2 = 100 Number of teachers in school B = 168 × (13/24) = 91 Number of boys in school B = 168 – 91 = 77 Number of teachers in school C = 91 + 11 = 102 Number of boys in school C = 98 + 2 = 100 Required average = (98 + 100)/2 = 99
Which component in the CPU is responsible for fetching instructions from memory and incrementing the program counter?
The major drawback of RAD model is __________.
Firewall is a type of
Node.js is built on which JavaScript engine?
What is the primary role of semantic actions in syntax-directed translation?
____is used to read XML documents and provide access to their content and structure.
Specialised program(s) designed to allow particular input or output device(s) to communicate with the rest of the computer system is called _______.
Which layer of the OSI model do stateful firewalls primarily operate at?
In a pipelined CPU design, what is the purpose of the instruction pipeline?
calculate the complexity of the below recursive code
Int f(int n)
{
If(n
return 1;
return f(n/2)+f(n/2);
}