April 19, 2024SwitchingQuestion 1 Consider a source computer (S) transmitting a file of size 106 bits to a destination computer (D) over a network of two routers (R1 […]
April 19, 2024Graphs-and-TreeQuestion 4 A_____takes a directed ______ graph G and produce a linear ordering of all its vertices such that for every directed edge in G, the […]
April 19, 2024OOPSQuestion 39 Which of the following are two main types of overloading in Java? A Overloading and linking B Overriding and linking C Reusability and data-hiding […]
April 19, 2024OOPSQuestion 41 In the given Program: class Dialog1 { public static void main(String args[]) { Frame f1=new Frame(“INDIA”); f1.setSize(300,300); f1.setVisible(true); FileDialog d=new FileDialog(f1, “MyDialog”); d.setVisible(true); String […]