The light bulb is important because it helps you see in the dark.
The light bulb is a round object that produces light from energy.
People can't live without the light bulb because it helps you out a lot such as see in the dark like when you do homework at night.
It could help businesses profit because many will want to buy it cause they can be cheap but many will sell and it could help you a lot!
Answer:
A tablet can have mobile data such as MetroPCS. But the tablet can not make phone calls or texts.
Answer:
In C++:
#include <bits/stdc++.h>
#include <iostream>
#include <vector>
using namespace std;
int main(){
vector<int> vectItems;
cout << "Vector length: ";
int ln; cin>>ln;
int num;
for (int ikk = 0; ikk < ln; ikk++){
cin >> num;
vectItems.push_back(num);}
int small, secsmall;
small = secsmall = INT_MAX;
for (int ikk = 0; ikk < ln; ikk++){
if(vectItems[ikk] < small){
secsmall = small;
small = vectItems[ikk]; }
else if (vectItems[ikk] < secsmall && vectItems[ikk] != small) {
secsmall = vectItems[ikk];} }
cout<<small<<" "<<secsmall;
return 0;}
Explanation:
See attachment for program file where comments are used for explanation