Answer:
Embedded technology is a technology that exists inside another device.
<u>C++ program to print the digit without a comma </u>
#include<iostream>
#include<string>
using namespace std;
void commaremoval(string num) /*Defining function commaremoval with parameter num of string type*/
{
string s=num;
for(int i=0; i< s.length();i++)
{
if(s[i]!=',')
/*Checking whether the string doesn't contain ' ,' */
cout<<s[i]; //Printing Output without comma
}
}
//driver function
int main()
{
string num;
cout<<"Enter a digit between 1,000 and 999,999:"<<endl;
/*taking input from user*/
cin>>num;
commaremoval(num);
//calling function
return 0;
}
<u>Output</u>
Enter a digit between 1,000 and 999,999: 22,343
22343
Answer:
The correct answer is letter "B": rapid.
Explanation:
Nowadays, India has become the second largest telecommunications network in the world. Phone and internet services are very low-price because of the vast number of competitors in the market. This scenario is boosted by the constant improvement technologies being implemented in the country in this matter such as better signaling gateways and fiber-optics. By the end of 2018, India had almost 20% of the world's share of internet users.
C hjhjiiiiiiiiiiijjjiiiio