The type of windows I am using is:Windows 8.1
The Answer is toolbar.
<span>The mini or small toolbar contains frequently used formatting commands that are displayed when selecting text or objects with the mouse.
Toolbar is also known as Ribbon. It is present in computer interface design. We can see toolbar in many softwares like Microsoft office suite, web explorer, designing softwares etc. it is mostly present under the menu bar and it has many options.</span>
Answer:
Plan the script, characters, and how the game is played
Answer:
- Operating System.
- Laptop.
- Convertible computer.
- Peripheral.
- Desktop Computer.
Explanation:
Operating system is a software that manages the hardware and the software in the system and provides the interface between machine and the user.
Laptops are the portable computing devices which you can carry with you.
Convertible computer have a keyboard that is detachable and can be converted into a tablet.
Peripherals are devices which we can attach to the computer.
Desktop computer is a computing device that not portable at all.
Answer:
Written in Python
for num in range(1,1001):
sum=0
for j in range(1,num+1):
if num%j==0:
sum = sum + j
if num == sum:
print(str(num)+" is a perfect number")
Explanation:
This line gets the range from 1 to 1000
for num in range(1,1001):
This line initializes sum to 0 for each number 1 to 1000
sum=0
This line gets the divisor for each number 1 to 1000
for j in range(1,num+1):
This following if condition line checks for divisor of each number
<em> if num%j==0:
</em>
<em> sum = sum + j
</em>
The following if condition checks for perfect number
if num == sum:
print(str(num)+" is a perfect number")