Kobe was the best basketball player R.I.P
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
#define MAX 1005
bool already_present(int data[MAX], int input, int size)
{
int i;
for(i=0;i<size;i++)
if(data[i] == input)
return true;
return false;
}
int read_stdin(int data[MAX])
{
int input;
int size=0;
while(true)
{
cout<<"Enter a non-negative integer (negative to quit): ";
cin>>input;
if(input<0)
break;
if(!already_present(data,input,size))
data[size++] = input;
}
return size;
}
void print_stdout(int data[MAX],int size)
{
int i;
cout<<"You entered\n";
for(i=0;i<size;i++)
cout<<data[i]<<" ";
cout<<endl;
}
int main()
{
int data[MAX],size;
size = read_stdin(data);
print_stdout(data,size);
return 1;
}
Answer:
VoIP ( Voice over internet protocol )
Explanation:
Voice over internet protocol is the standard recommended by the ITU for low bit-rate voice transmission over the internet
VoIP is a methodology and also a group of technology used for the efficient delivery of voice communication and also for the delivery of multimedia files
1. Power off the virtual machine.
2. Right-click the virtual machine, and click Migrate.
3. Click Change datastore.
4. Click Next, and select a datastore that is not the same as the current datastore.
5. From the dropdown, select the Thin Provision virtual disk format.
6. Click Next, then Finish. You can monitor the progress of the conversion in the Tasks and Events view in vCenter Server.