The width in bits of float primitive type in Javais --. Select the one correctA. 64B. 32C. 1D. 8E. 16
Which of the following statements is/arecorrect on variable declaration in Java?
Get answer to your question and much more
Which of the following are Java modifiers?
Get answer to your question and much more
Which of these statements are legal? Selectthe correct answers.
Get answer to your question and much more
You wantto find out the last element of an array. You write thefollowing code. What will happen when you compile and run itpublic class MyAr{public static void main (String Args[]){int [] i = new int [5];System.out.println (i[5]);}}A.An error at run timeB. 0C. 4D.Compilation error
Given the following codeimport java.awt.*;public class RedFrame extends Frame{public static void main(String args[]){RedFrame r = new RedFrame();r.setSize(300,200);r.setVisible(true);}}How could you set the frame surface color to red