(A) 20%
(B) 30%
(C) 40%
(D) 45%
Author:
In an examination, 900 students appeared. Out of these students; 56 % got first division, 27% got second division and the remaining just passed. Assuming that no student failed; find the number of students who just passed.
(A) 148
(B) 153
(C) 234
(D) 543
General Knowledge Quiz 27
Abrupt
Meaning: اچانَک ۔ یَکلَخت ۔ غَیر مَتوَقع ۔ جَلد بازی پَر مَبنی ۔ اتاولا ۔ ناہَموار ۔ بے رَبط
Explanation: (Adjective) – Sudden and unexpected.
Example: I was surprised by the abrupt change of subject.
Synonyms: Blunt, Brusque, Crude, Crusty.
Antonyms: At ease, Calm, Deliberate.
[Dawn Vocabulary: 23-11-2022]
Kassym-Jomart Tokayev re-elected as president of?
(A) Kazakhstan
(B) Uzbekistan
(C) France
(D) Spain
The difference between a binary tree and a binary search tree is that?
(A) A binary search tree has two children per node whereas a binary tree can have none, one, or two children per node
(B) In binary search tree nodes are inserted based on the values they contain
(C) In binary tree nodes are inserted based on the values they contain
(D) None of the above
A Compound Data Structure is the data structure which can have multiple data items of same type or of different types. Which of the following can be considered compound data structure?
(A) Arrays
(B) Link Lists
(C) Binary Search Trees
(D) All of the given options
Suppose currentNode refers to a node in a linked list (using the Node class with member variables called data and nextNode). What statement changes currentNode so that it refers to the next node?
(A) currentNode ++;
(B) currentNode = nextNode;
(C) currentNode += nextNode;
(D) currentNode = currentNode->nextNode;