Question
720 is divided into two parts in such a way that the
sixth part of the first part and the seventh part of the second are in the ratio 5 : 6. How much percent second part is more than the first part?Solution
First part = x and second part = 720 – x = (x/6)/((720 - x)/7) = 5/6 => x/6 x 7/(720 - x) = 5/6 ⇒ 42x = 21600 - 30x ⇒ 72x = 21600 ⇒ x = 300 Second part will be 720 – 300 = 420 Required percentage = (420 - 300)/300 x 100 = 40%
Which of the following is an example of application software?
- Which of the following is an example of a key characteristic of the Internet of Things (IoT)?
- Which of the following correctly describes the second normal form (2NF) in database normalization?
 The term "FAT" is stands for_____
In Huffman coding, data in a tree always occur?
Given the following code snippet, what will be the output when the function findMax is called with the array arr = [1, 5, 3, 9, 2]?Â
def findMax...
Which of the following data structures is best suited for implementing a priority queue?  Â
What is the space complexity of program to reverse stack recursively?
Which of the following best describes supervised learning in machine learning?
- What will be the output of the following Java code snippet, which implements a simple ArrayList and performs an insertion and a retrieval? import java.util...