Question
9- In the following code, Specs can be an inner class to class MobilePhone: public MobilePhone(String name, String brand,double price,int ram,int hd,int cameras,String os) {
9-
In the following code, Specs can be an inner class to class MobilePhone:
public MobilePhone(String name, String brand,double price,int ram,int hd,int cameras,String os)
{
this.mobileName=name;
this.mobileBrand=brand;
this.mobilePrice=price;
this.specs=new Specs(ram, hd, cameras, os);
}
Select one:
True
False
10-
In the following code:
Character_Skipper skip=new Character_Skipper(Word word);
skip.start('c');
The constructor of the Character_Skipper class must take:
Select one:
a.
None of these
b.
At least one argument of type char
c.
At least one argument of type String
d.
At least one argument of type Character
11-
An interface can extend multiple interfaces.
Select one:
True
False
12-
The following code creates ------------------------ Computer objects in memory.
Computer[] comp2 = new Computer[5]{new Computer("Apple", "CMA014"), new Computer("Lenovo", "CMA014"), new Computer("Dell", "CMA014"), new Computer("HP", "CMA014"), new Computer("Toshiba", "CMA014")};
Select one:
a.
the code is not valid
b.
one
c.
five
d.
four
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started