Answer:
<u>First generation are</u>
a)they are unreliable
b)they are very costly and
c)huge in size
<u>Second generation are</u>
a)they use a transistor
b)smaller in size compared to first generation
c)they are faster than the first generation
<u>Third generation are </u>
a)its more reliable than the first generation and the second generation
b)faster than first generation and the second generation
c)consume less electricity
<u>Fourth generation are</u>
a) they are very cheap
b)they are very small in size
c)they are portable and reliable
Explanation:
explanation is in the answer
Answer:
Users of the application may have the ability to determine information about the locations of users that are not on their contact list.
An example of using the Internet of Things (IoT) to deliver innovative Cloud-based solutions to customers is: A. wearable technology that provides customers with on-the-spot personalized experiences.
<h3>What is cloud computing?</h3>
Cloud computing can be defined as a Cloud-based solutions that typically requires the use of shared computing resources over the Internet, rather than using local servers, wired-connection and hard drives to provide various services to customers.
In Computer technology, a good example of an application of the Internet of Things (IoT) to deliver innovative Cloud-based solutions to end users is wearable technology that is designed and developed to provide users with on-the-spot personalized experiences.
Read more on cloud computing here: brainly.com/question/19057393
#SPJ1
<u>Complete Question:</u>
What is an example of using the Internet of Things (IoT) to deliver innovative Cloud-based solutions to customers?
A. wearable technology that provides customers with on-the-spot personalized experiences
B. scheduled conferences with brand ambassadors to pitch customers on new offers
C. customers using a PC connected to a local network to search for recommendations
D. online surveys that gather customer input to improve services in the future
E. I don't know this yet.
Answer:
Following are the program in the C++ Programming Language.
//set header file or namespace
#include <iostream>
using namespace std;
//define main function
int main() {
//set integer type array with indexing 10
int a[10];
//set integer type variable to 1
int i=1;
//set element in 1st index
a[0]=17;
//set element in last index
a[9]=29;
//set while loop for the remaining elements
while(i<9)
{
//set -1 in the remaining elements
a[i]=-1;
i++;
}
//set for loop to print array
for ( int j = 0; j < 10; j++ ) {
cout << a[j]<<endl;
}
}
<u>Output:</u>
17
-1
-1
-1
-1
-1
-1
-1
-1
29
Explanation:
In the following program, we define the main function "main()" and inside it.
- Set an integer type array element "a[]" with index value 10.
- Set integer data type variable "i" initialize to 1.
- Set elements in the first and last place in the array.
- Set the while loop to initialize elements for the remaining place.
- Set the for loop to print the array elements.
Answer:
B.4.75
Explanation:
Buffer solutions are the solutions which can resist the change in the pH up to some extent. They are the solutions of either weak acid and conjugate base of it or weak base and conjugate acid of it.
The pH of a buffer solution can be measured by the equation known as Henderson–Hasselbalch equation.
pH=pKa+log[base]/[acid]
A good buffer that buffer which has its acid's pKa within one pH unit of desired experimental conditions.
Thus, desired pH = 5.3
Preferable pKa = 4.3 - 6.3
<u>Answer - B. 4.75</u>