Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
Interview
»
Technology
Which among the following is a scope resolution operator?
:
::
:?
None
Correct Answer:
::
Explanation:
:: is the scope resolution operator
← Previous Question
Next Question→
More Questions from
Technology
Which kind of inheritance is not supported directly through classes in java?
public class Threads2 implements Runnable { public void run() { System.out.println("run."); throw new RuntimeException("Problem"); Which among the following is true? } public static void main(String[] args) { Thread t = new Thread(new Threads2()); t.start(); System.out.println("End of method."); } }
public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?
public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?
X implements Y, Z Arguments: 1. X should be class 2. Y, Z should be interfaces
What is a class, member and local variable?
What is JDBC Driver ?
What are the steps required to execute a query in JDBC?
What is the difference between a constructor and a method?
What is an abstract class?
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments