Question
Rs 450 is to be divided into three parts such that four
times the first part may be equal to three times the second and six times the third. Then the share of first part is:Solution
Let the first part be x Second part = 4x/3 third part = 2x/3 therefore, x + 4x/3 + 2x/3 = 450 9x/3 = 450 x = 150 First part = Rs 150 Second part = Rs 200 Third part = Rs 100
Which of the following types of testing is primarily focused on validating the functionality of a system without considering the internal structure of t...
State True or False
Kernel level thread cannot share the code segment.
Which of the following statements accurately describes the purpose of unit testing in software development?
A circuit has five branches with four nodes including reference node , then the number of linearly independent mesh equation would be_______
What does the term "code optimization" refer to in the context of software development?
Which of the following practices is essential for maintaining security compliance in both Windows and Unix/Linux environments?Â
Which algorithm is commonly used for Part-of-Speech tagging?
You are trying to parse a JSON string in Java using a library like org.json.
import org.json.JSONObject;
import org.json.JSONException;
Which IPv6 feature can unintentionally expose internal network structure to attackers if not properly randomized?
The following Java code attempts to demonstrate method overloading, but it has a compilation error. How should it be corrected?
public class Calc...