Question: java Suppose your program randomly tests whether a student is in a class and also need to know the studentis information such as name, id
java


Suppose your program randomly tests whether a student is in a class and also need to know the studentis information such as name, id and grades. what is the best data structure to store the students in the class? O HashSet O LinkedList O HashMap OTreeMap O ArrayList Which of the following statements about the insert method below for Binary Search Tree are TRUE? Choose TWO. Line 01: public boolean insert(E e) { Line 02: if (root == null) Line 03: root = new TreeNode(e); Line 04: else { Line 05: TreeNode
Step by Step Solution
There are 3 Steps involved in it
Question 1 Best Data Structure to Store Students Requirement Random testing if a student is in the c... View full answer
Get step-by-step solutions from verified subject matter experts
