The technology combines with 5g capabilities to allow the monitoring of shopping trends in this way is called internet of things
For better understanding, lets explain what internet of things means.
- Internet of things is simply known to be a network of Internet-Enabled objects that is often combined along with web services as they often interact with these objects.
- There is a known development of the Internet where objects always have network connectivity giving them room to send and receive data.
From the above, we can therefore say that the answer The technology combines with 5g capabilities to allow the monitoring of shopping trends in this way is called internet of things is correct.
Learn more about internet of things from:
brainly.com/question/19995128
You mean when they screen shot it?
Answer:
return.
Explanation:
When a "return" statement is executed then the given expression or variable in the function is evaluated and the result will be returned by the function when the function is called.With the help of return statement, we can terminate the execution a method/function and then give control to the calling function.
Example:
#include <bits/stdc++.h>
using namespace std;
long long sq( int s )
{
/* here "return" will first execute the expression and then
return the value to the calling function i.e. sq() in the main
function.
*/
return( s * (long long)s );
}
int main()
{
long long y;
int x = INT_MAX;
// sq() will return a value and that value is store in the variable "y"
y = sq( x );
cout<<y<<endl;
return 0;
}
The answer is the letter (D)