Sorry the website wasn’t working for me
Answer:
does anybody know this answer?
Explanation:
no nobody does
Answer:
Table function
Explanation:
The table function can also be used to compare between items. The items can be arranged in columns and the features tonbe compared can be placed in columns. With this one can make comparison between the items.
Answer:
Flashdrive
Increased Durability. Unlike traditional hard-disk drives, flash drives lack moving parts. ...
Maximum Portability. ...
Plenty of Storage Capacity. ...
Fast Transfer Speeds. ...
Compatibility with Many Devices. ...
Use Flash Drives as Promotional Materials.
Answer:
#include <iostream>
using namespace std;
int cube(int num)//function cube..
{
return num*num*num;
}
int main() {
int result=cube(4);//result stores the value of cube(4).
cout<<result;//displaying it to the screen.
return 0;
}
Explanation:
The above code is in C++ language.The function cube is passed with value 4 and the result of it is stored in the variable result of integer type.Then the result is displayed using the cout. Which is used to print the statement to the output screen.