f = int(input("Enter a number: "))
if(f%7==0):
print("It's divisible by 7.")
else:
if(f<7):
print("7")
else:
print(str(f-(f%7))+", "+str(f+(7-(f%7))))
Answer:
Behaviour
Style
Structure
Explanation:
Above are the three primary separation of concerns for a web application at client side.
Structure --> we can define the structure of the application at client side using HTML
style-->style is used to give some styling information like font,color,headings so on at client side .In general we use CSS to do this at client side
Behaviour--> it actually defines the functionality of the elements at client side like when we click button what it should do.We will use JavaScript to define the behaviours at client side
The answer to your question is,
Server virtualization
-Mabel <3