The answer would be 25 years is what it would take for it to double 2000x.04=80 . The interest would add up to 80 for 1 year. Multiple 80 by 25 and you get 2000.
Answer:
Please find the edited program below:
#include<iostream>
#include <stdio.h>
using namespace::std;
int main()
{
char ch;
cout<<"Enter any letter: ";
ch=getchar();
if(ch=='a' || ch=='e' || ch=='i' || ch=='o' || ch=='u'|| ch=='A' || ch=='E' || ch=='I' || ch=='O' || ch=='U')
cout<<"Vowel";
else
cout<<"Consonant";
return 0;
}
Explanation:
We cannot input char type using cin, we need to use getchar, and it is under header file stdio.h. Also, for comparing we need to use == and not =. And corrrect way of including std is using namespace::std;
Answer:
C) someThing.someMethod( )
Explanation:
The methods in a class can be accessed outside the class (assuming they are public methods and not private to the class) by using the dot(.) symbol and calling the method on the instance or object of the class.
In this case, the object of the class someThing, calls the method, someMethod( ) by using a dot and the name of the method with a parentheses at the end. This enables the code in the method act on the class instance or object.
Answer:
The answer to the following question:
TitledWindow(int titleBarHeight, int height, int width, String text) //define subclass and pass an argument of four variable
{
//define constructor and pass an argument of two variable
super(height, width);
this.text = text;
//set if condition
if (titleBarHeight > height / 2)
titleBarHeight = height / 2;
this.titleBarHeight = titleBarHeight;
}
Explanation:
Here, we have define a subclass of the "Window" class i.e., "TitledWindow" and pass four variable in the argument.
Then, define constructor and pass two variable in the argument.
Then, set if condition and pass the condition "titleBarHeight > height / 2".