Answer
Spelling and Grammar checkers
Explanation
A word processor is a software program for editing, storing, manipulating, and formatting text entered from a keyboard for the purpose providing the intended output. t allows users to create, edit, and print documents. It enables you to write text, store it electronically, display it on a screen,
Spelling and Grammar checkers are the inbuilt components of word processors programs for personal computers. They have Salient features that helps in identifying grammatical errors and misspellings.
Pretty sure it's Fiber Distributed Data Interface
Answer:
The answer is "True".
Explanation:
Integration control is a system selection, which is important to ensure the proper coordination of the different components of the programs. Analogies between conflicting goals and solutions must be made to meet or surpass the needs and wishes of participant groups. This mechanisms use events for identifying, defining, combining, unifying and coordinating software development procedures and events, that's why the given statement is true.
Answer:
a. We <u>used to</u> go to school together.
b. How did you <u>use to</u> spend the winter evenings?
c. We <u>used to </u>have our milk delivered.
d. I <u>used to</u> be in love with him.
e. At one time there <u>used to</u> be trees in the garden.
Answer:
Check the explanation
Explanation:
#include <iostream>
using namespace std;
void hex2dec(string hex_num){
int n = 0;
//Loop through all characters in string
for(int i=0;i<hex_num.size();i++){
//take ith character
char c = hex_num[i];
//Check if c is digit
if(c>='0' && c<='9'){
n = 16*n + (c-48);
}
//Convert c to decimal
else{
n = 16*n + (c-55);
}
}
cout<<hex_num<<" : "<<n<<endl;
}
int main()
{
hex2dec("EF10");
hex2dec("AA");
return 0;
}
The Output can be seen below :