Answer: Interface methods, interface variables and interface markers.
Explanation:
Interface methods are public and abstract by default.
Interface variables can be declared public, static and final
Marker interfaces are simply empty interfaces without any methods.
Quick access toolbar :)))))))))
Answer:
i need free points im sry
Explanation:
Answer: It looks like you only have one answer choice that was added in your question, but that is the correct answer.
Answer:
float diameter=2*r; //hold the diameter of a circle
float PI; // float variable named PI.
Explanation:
Here we have declared two variable i.e diameter and PI of type float. The variable diameter will hold the diameter of a circle i.e 2*r where r is the radius of a circle.
Following are the program in c++
#include <iostream> // header file
using namespace std; // namespace
int main() // main function
{
float r=9.2; // variable declaration
float diameter=2*r; //hold the diameter of a circle
float PI=3.14; // float variable named PI hold 3.14
cout<<"diameter IS :"<<diameter<<endl<<"PI IS :"<<PI; // display value
return 0;
}
Output:
diameter IS :18.4
PI IS :3.14