Answer:
It really depends - in general every data structure has its use.
Explanation:
Furthermore, traversing the list will be inefficient because the data items are not contiguous in memory, forcing the CPU to jump all over the RAM memory causing further slowdown.
The user cannot close all the programs if he closes the open virtual desktop.
<h3>What are virtual desktops?</h3>
A virtual desktop is a computer operating system that does not run directly on the endpoint hardware from which a user accesses it. The desktop environment is separated from the physical device used to access it.
I call it a false desktop.
It is use to separate your work activities.
Therefore, the user cannot close all the programs if he closes the open virtual desktop.
learn more on virtual desktop here: brainly.com/question/14332029
#SPJ12
<span>Schema classes define all objects that AD can handle.</span>
The answer is "<span>performance statistics"......</span>
Answer:
Following are the program in the Python Programming Language.
#set variable for input year by user
y=int(input("Enter year: "))
#set variable and initialize to 0
flag=0
#check condition that year is divisible by 4
if(y%4==0):
#check that the year is divisible by 100
if(y%100==0):
#check that the year is divisible by 400
if(y%400 ==0):
#then initialized flag to 1
flag=1
else:
#otherwise remain 0
flag = 0
else:
flag = 1
else:
flag = 0
#for break line
print()
#check that if flag is equal to 1
if(flag==1):
print("29 days in February")
#otherwise else
else:
print("28 days in February")
<u>Output</u>:
Enter year: 2020
29 days in February
Explanation:
<u>Following are the description of the program</u>:
- Set variable 'y' in which we get integer value as year from the user.
- Set variable 'flag' and initialize that variable to 0.
- Then, we set if-else conditional statements to check that the variable 'y' is divisible by 4 then, we check that the variable 'y' is divisible by 100 and we also check that the following variable is divisible by 400.
- Finally, we set if-else conditional statement to check that the variable 'flag' is equal to 1 then print about the leap year, otherwise it print about the non-leap year.