McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2026
→
Bachelor of Computer Applications (BCA)
→
Java Programming
→
Which of the following is not a class?
Q.
Which of the following is not a class?
A.
TextField.
B.
Label.
C.
Int.
D.
Scrollbar.
Answer» C. Int.
3.2k
0
Do you find this helpful?
1
View all MCQs in
Java Programming
Discussion
No comments yet
Login to comment
Related MCQs
Which of these class is not a member class of java.io package?
If a class inheriting an abstract class does not define all of its function then it will be known as?
Consider the following program: import myLibrary.*; public class ShowSomeClass { // code for the class... } What is the name of the java file containing this program?
In RMI program the following two steps are used to, Either extend the UnicastRemoteObject class, the exportObject() method of the UnicastRemoteObject class,
Given the following code:~~~class Base { int x = 10; }~~~class Derived extends Base~~~{ int x = 20; }~~~Base b = new Base();~~~Derived d = new Derived ( );~~~Base bd = new Derived(); The statement~~~System.out.println(b.x + " " + d.x + " " + bd.x);~~~will produce the output
Which of these is used to access member of class before object of that class is created?
Which of these keywords is used to refer to member of base class from a sub class?
Which of these is correct way of inheriting class A by class B?
Which of this access specifies can be used for a class so that its objects can be created by a different class in another package?
Which class is the super class of all classes of the java.lang package?