Answer:
#include<iostream>
using namespace std;
//create the exchange function
void exchange(int a, int b){
int temp; //initialize temporary
//swap the variables value
temp=a;
a=b;
b=temp;
//print the output after exchange
cout<<"a is: "<<a<<endl;
cout<<"b is: "<<b<<endl;
}
//main function program start from here
int main(){
//initialization
int a=3, b=6;
exchange(a,b); //calling the function
return 0;
}
Explanation:
Create the function exchange with two integer parameter which takes the value from the calling function.
and then declare the third variable temp with is used for swapping the value between two variables.
first store the value of 'a' in the temp and then assign the 'b' value to 'a' and then, assign the temp value to b.
for example;
a=2, b=9
temp=2;
a=9;
b=2;
So, the values are swap.
and then print the swap values.
Create the main function and define the input a and b with values.
Then, calling the exchange function with two arguments.
Answer:
B. Planning
Explanation:
I believe the developer establishes the project goals in the planning phase.
Answer:
File Allocation Table(FAT):- It is a computer file system design and it is widely used on many computers and most of the memory cards. FAT file systems are commonly found on flash memory cards,floppy disks, digital cameras, and many other portable devices.
In floppy disks, the FAT has been standardized as ISO/IEC 9293 and ECMA-107.These include FAT12 and FAT16 only without any long filename support.
Laptops are portable decides , while desktops remain in one plcae
Dear ,you should ask it on stackoverflow and geekforgeelks , not here