Answer:
I wonder what are you saying?
Explanation:
Please give me brainliest :)
It’s obviously C.Signaling your intent by using your blinkers also known as the lights at the back of your car!
Answer:
#include <iostream>//including libraries
using namespace std;
int main()
{
int arr[6] = { 0,1,2,3,4,5 };//make sure size of arr is 1 less than secArr
int secArr[7];//second array (1 element bigger)
for (int i = 0;i < 6;i++)//looping through each element (6 times)
{
secArr[i + 1] = arr[i];//transferring elements to second array and shifting by 1 cell
cout << secArr[i + 1] << endl;//printing elements of second array
}
return 0;//terminating program
}
Explanation:
The array size can range from any number. just make sure to keep arr one less than secArr. This is because we need the room for the extra element. This task is to help you understand how array work and how to parse through them using loops. For loops are the best for this task because even if you think intuitively, they work for as long as there are items in the array. and you can define the size yourself.
Answer:
B. Virtual reality
Explanation:
In a virtual reality context, the visual and auditory senses of the user are fed by data (images, sounds) from the computer using a goggle and earphones. That allows the person to be totally cut off her real physical environment and be totally immersed into the world (reality) managed by the computer.
Not to be confused with<u> augmented reality</u>, where the physical reality and perception of it aren't changed... but an additional layer of information is added on top of it. Like pointing your phone camera to a building and getting information about the building displayed on your phone.