Answer:
price float(price)
Explanation:
There are four basic type of data type use in the programming to declare the
variable.
1. int: it is used for integer values.
2. float: it is used for decimal values.
3. char: it is used for character values
4. Boolean: it is used for true or false.
in the question, the one option contain the data type float (price float(price)). So, it store the value in decimal.
price int(price): it store the value in integer.
price decimal(price): it is wrong declaration of variable. their is no data type in the programming which name is decimal.
price price(decimal): it is wrong declaration of variable. their is no data type in the programming which name is price.
Answer: Image compression is the technique which is responsible for the reduction in the size of the image according to the need of the video technology. Image compression is done because of the following reasons:-
- Makes more space for the storage and creates space.
- It also reduces the time that is used up for the uploading of the video through internet.
- Text, labels etc might also be needed to inserted along with the image .
// this function will return 1 if the string sent in arguments is palindrome //else it will return 0
int palindrome(int start_of_string, int end_of_string, string &strr)
{
// base case to check if the string is not empty
if (start_of_string>= end_of_string)
return 1;
if (strr[start_of_string] != strr[end_of_string])
return 0;
// recursive call
return palindrome(++start_of_string, --end_of_string, strr);
}
Answer: see guidelines in explanation
Explanation:
For Mario to make his document accessible to technology assistants, he needs to do the following;
-Access the accessibility checker by clicking the FileHomeReview tab
-Click the InfoNewOpen option
-Click the Check for IssuesManageDocumentProtect, the document icon
-Then, click Check accessibility option, the accessibility pane will open.
-He needs to read the information about errors, warning, tips and steps to take to make his document accessible to other users.