Boolean is an example of a(n) ________ data type
A) code B) procedure C) argument D) variable
D
You might also like to view...
What is the AS number of your institution? Which autonomous system has AS number 1?
What will be an ideal response?
Answer the following statements true (T) or false (F)
1. A variable of an enumerated type can have the special value null. 2. Java allows you to declare arrays with more than one index. 3. A one dimensional array is also called an array of arrays. 4. Arrays are objects that are created with new just like class objects.
Which of the following is incorrect?
A. int a(2); B. int a[]; C. int a = new int[2]; D. int a() = new int[2]; E. int a[2];
Which of the following statements are correct?
a. new Scene(new Button("OK")); b. new Scene(new Circle()); c. new Scene(new ImageView()); d. new Scene(new Pane());