Question
The difference between 31% and 26% of votes for the same
party at different places is 2350. What is 7% of those votes?Solution
31% of V - 26% of V = 2350 ⇒ 0.31V - 0.26V = 2350 ⇒ 0.05V = 2350 ⇒ V = 2350 / 0.05 ⇒ V = 47000 7% of V = 0.07V ⇒ 0.07 × 47000 ⇒ 3290
Which tree traversal is most suitable for finding the shortest path in an unweighted graph represented as a tree?
Which software development methodology emphasizes iterative development and customer feedback? Â Â Â Â Â Â Â
...Which of the following is correct for a single-line comment in C++?
In Python, which method is used to convert a string to lowercase?
In C, what is the output of printf("%d", 5/2);?
In Python, what does len() function do?
Which Python keyword is used to handle exceptions?
Which of the following algorithms is used for finding Minimum Spanning Tree?
Which of the following is true about C++ destructors?
 What is the output of the following code: x = 5; y = 2; print(x ** y)?