<span>The National Science Foundation (NSF) is the organization which </span><span>developed a network called CSNET to provide a network free to all American research and educational institutions. It is an agency in the government of the United States that is responsible for research and development in the field of science and engineering. </span>
Answer: Telecom engineering
Explanation:
As, the telecom engineering is the process of capturing, processing and transmission of information in the digital form. Basically, it is responsible for transmission of data by converting the analog signal into the digital form by using various optical fiber tools and electronic service system. It is the type electronic data exchanger by which information is transmitted by using cables or wires.
I believe the answer to this question is XML
Suppose that a linked list is used as a data structure for the hash table, create a program that includes steps his application counts the number of phrases in documents decided on via way of means of the user #include.
<h3>What is Programming?</h3>
It is the manner of making hard and fast commands that inform a pc the way to carry out a task. Programming may be finished the usage of lots of pc programming languages, inclusive of JavaScript, Python, and C++.
- This application counts the quantity of phrases in documents decided on via way of means of the user.
- #include
- #include
- #include the usage of namespace std; //Function 1 int count(string word)go back word.size();
- }
- //Function 2
- int vowel(string word)> filename;
- //Open the {input|enter">enter file.
- inputfile.open(filename.c_str()); cout<<"nWord listing after format";
- cout<<"n____nn"; //If the file succesfully opened, process it.if (inputfile).
Read more about program :
brainly.com/question/1538272
#SPJ1
Answer:
def fizzbuzz (num):
for item in range(num):
if item % 2 == 0 and item % 3 == 0:
print("fizzbuzz")
elif item % 3 == 0:
print("buzz")
elif item % 2 == 0:
print("fizz")
else:
print (item)
fizzbuzz(20)
Explanation:
Using Python programming Language
Use a for loop to iterate from 0 up to the number using the range function
Within the for loop use the modulo (%) operator to determine divisibility by 2 and 3 and print the required output
see attached program output screen.