adplus-dvertising

Welcome to the Interfaces and Packages MCQs Page

Dive deep into the fascinating world of Interfaces and Packages with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Interfaces and Packages, a crucial aspect of Java Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Interfaces and Packages, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Java Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Interfaces and Packages. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Java Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Interfaces and Packages. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Interfaces and Packages MCQs | Page 2 of 12

Q11.
Which of these keywords is used to define interfaces in Java?
Discuss
Answer: (a).interface
Q12.
Which of these access specifiers can be used for an interface?
Discuss
Answer: (a).Public
Q13.
Which of these keywords is used by a class to use an interface defined previously?
Discuss
Answer: (c).implements
Q14.
Which of the following is the correct way of implementing an interface salary by class manager?
Discuss
Answer: (b).class manager implements salary {}
Q15.
What is the output of this program?
    interface calculate
    {
        void cal(int item);
    }
    class display implements calculate
    {
        int x;
        public void cal(int item)
        {
            x = item * item;            
        }
    }
    class interfaces
    {
        public static void main(String args[])
        {
            display arr = new display;
            arr.x = 0;      
            arr.cal(2);
            System.out.print(arr.x);
        }
    }
Discuss
Answer: (c).4
Q16.
What is the output of this program?
    interface calculate
    {
        void cal(int item);
    }
    class displayA implements calculate
    {
        int x;
        public void cal(int item)
        {
            x = item * item;            
        }
    }
    class displayB implements calculate
    {
        int x;
        public void cal(int item)
        {
            x = item / item;            
        }
    }
    class interfaces 
    {
        public static void main(String args[])
        {
            displayA arr1 = new displayA;
            displayB arr2 = new displayB;
            arr1.x = 0;
            arr2.x = 0;      
            arr1.cal(2);
            arr2.cal(2);
            System.out.print(arr1.x + " " + arr2.x);
        }
    }
Discuss
Answer: (c).4 1
Q17.
What is the output of this program?
interface calculate 
{
            int VAR = 0;
            void cal(int item);
}
        class display implements calculate 
        {
            int x;
          public  void cal(int item)
          {
                if (item<2)
                    x = VAR;
                else
                    x = item * item;            
            }
        }
 class interfaces 
{
 
            public static void main(String args[]) 
            {
                display[] arr=new display[3];
 
               for(int i=0;i<3;i++)
               arr[i]=new display();
               arr[0].cal(0);    
               arr[1].cal(1);
               arr[2].cal(2);
               System.out.print(arr[0].x+" " + arr[1].x + " " + arr[2].x);
            }
}
Discuss
Answer: (c).0 0 4
Q18.
Which of the following access specifiers can be used for an interface?
Discuss
Answer: (a).Protected
Q19.
Which of the following is the correct way of implementing an interface A by class B?
Discuss
Answer: (b).class B implements A{}
Q20.
All methods must be implemented of an interface.
Discuss
Answer: (a).True
Page 2 of 12

Suggested Topics

Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!