Answer:
Bluetooth is a wireless communication is typically limited to six feet distances
Explanation:
Bluetooth is one type of communication maximum it covers 10 meters to 30 meters. but it is one to one communication made for data transactions. After 25 meters of coverage on communication will be very slow on data transactions. But Bluetooth has also had a limitation.
IR. It is one of communication where infrared technology used. It is like face to face communication and speed of data transaction limited and it is also one to one communication made for data transactions. Communication paired and covered very little distances.
NFC it is chip-based and covers very little in fact just to device meet each and communication started. And very it caries very little data during the data transactions. it is also one to one communication made for data transactions
RFID is one of communication and it is powerful to cover more areas with multiple connections at the same time. It has a limitation in distance and it covers like a net with a specific distance
Answer: The amount of interest to be paid is $972
Explanation: This is gotten by firstly getting the amount of money to return per year without the interest which is $114400/10(years)= 11440
11440 is to be paid per year without interest. To get amount of interest is $11440*8.5/100 = $972 this is the amount of interest to be paid per year including in year 2.
Therefore, total amount of money together with interest to be paid each year and in year 2 = $11440+$972=12412.
Answer:
Five provisions of cyber ethics are:
Your computer or system should not be used to harm others. Your cyber knowledge should not be used to steal other people's resources. One should not use or copy softwares for which you have not paid. ... Never use other people's resources without their consent.
Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int[] array = new int[10];
int index = 0;
while(index < array.size()){
int number = (rand() % 100) + 1;
for (int i = 0; i < 1; i++) {
array[index] = number;
cout<< "Position "<< index << "of the array = "<< number << endl;
++index;
}
}
}
Explanation:
The while loop in the source code loops over a set of code ten times, The for loop only loops once to add the generated random number between 1 and 100 to the array of size 10. At the end of the for loop, the index location and the item of the array is printed out on the screen. The random number is generated from the 'rand()' function of the C++ standard library.