Answer:
Header files serve two purposes. System header files declare the interfaces to parts of the operating system. You include them in your program to supply the definitions and declarations you need to invoke system calls and libraries.
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
int main()
{
double h, w;
int s, a, b;
cout<<"height in feet: ";
cin>>h;
cout<<"width in feet: " ;
cin>>w;
cout<<"tile size in inches:";
cin>>s;
int height = h*12;
if(height%s==0)
a = height/s;
else
a = height/s + 1;
int width = w*12;
if(width%s==0)
b = width/s;
else
b = width/s + 1;
cout<<"Number of tiles: "<<a*b;
}
Answer:
The Answer is gonna be D. Zero decimal
Answer:
field will be automatically taken off the page for the user
Explanation:
When designing a custom VisualForce page the piece of code mentioned "apex: outputField" is used to determine what and how information is displayed to a certain user. This being said if the user does not have field-level security access and tries to enter the VisualForce page then the field will be automatically taken off the page for the user, and they will not be able to view it.
If you have any more questions feel free to ask away at Brainly.