Answer:
The OSI Model (Open Systems Interconnection Model) is a conceptual framework used to describe the functions of a networking system. The OSI model characterizes computing functions into a universal set of rules and requirements in order to support interoperability between different products and software.
B is the correct answer you are looking for
Answer:
A milestone is a significant progress point within your project. Milestones' main purpose is to set goals you have to achieve in order to succeed and complete your project
Explanation:
-Example 1-
You have to write a report for your project. This report contains introduction, problem background, results, and recommendations. The milestones for writing your report could be:
Milestone 1: introduction section is completed
Milestone 2: problem background section is completed
Milestone 3: results section is completed
Milestone 4: recommendations section is completed
-Example 2-
You have to design a webpage that allows the user to login, enters his/her name, and logout. The milestones in this case could be:
Milestone 1: login functionality is completed
Milestone 2: text field for typing the name is placed
Milestone 3: submit name button functionality is completed
Milestone 4: logout button functionality is completed
Milestone 5: all components of the webpage are fully integrated
You might think the goals in these examples can be set differently, and that is true. The definition of the milestones is in general subjective and it depends on how you design the steps you want to follow to complete your project. You might also want to add these milestones to a timeline so you have an estimated schedule of the development of your project.
Answer:
see explaination
Explanation:
I made use of python program to solve this.
text file name with fun.txt.
6 fun. 3 hello 10 <> 2 25 4 wow!
Program code:
import re
file = open('fun.txt','r') #for reading file
strings="" #declaring empty string
for k in file:
strings=strings+k #all character in file is storing in strings variable for do operations
pattern = '\s' #for pattern \s is for space
result = re.split(pattern, strings) #split the string with space
for k in range(len(result)): #loop through the list of string
if(k%2) == 0: #checking for integer to time of string
p=int(result[k])
print(result[k+1] *p) #print times of the string(k+1)
Check attachment for output