Web conferencing would allow you to communicate freely with the team but cloud computing allows you to share data between the group. The answer would be A. Cloud Computing
Answer:
45
Explanation:
Initially, myNum is equal to 14 and yourNum is equal to 4
Then, myNum is incremented by 1 and becomes 15
Also, yourNum is decremented by 1 and becomes 3
Finally, myNum is set to myNum x yourNum, 15 x 3 = 45
A file extension includes the three or four characters that follow the dot in the file name
<h2>
Answer:</h2>
Following are the vocabulary words matched to their definitions:
1. Command:
Instructions that tell a computer what to do.
Pressing a single button such enter key can also be said as command. So command is any instruction that tells a computer to perform specific action.
2. Desktop
The background screen on a computer.
When the computer is turned ON, the screen we see the first is the Desktop. It has several icons that lead to different folders and files.
3. GUI
Rectangular area on a computer screen where the action takes place performing more than one activity at a time.
GUI stands for Graphical User Interface. It is an interface that allows to create application that may run using icons and labels instead of text commands
4. Menu
List of commands.
A menu is a drop down list that allows us to choose a command from the present ones. Menus are used vastly. For example: Simply a right clicking on computer's screen we see a menu having commands for arranging of icons as well as refreshing.
5. Multitasking
Interface that enables users to easily interact with their computers.
Multitasking allows the users to perform more than one task at a time. Multitasking helps to save time.
6. Window
The main work area.
The opened pane o any program is termed as a window. work is done inside the window of the program.
<h2>I hope it will help you!</h2>
Answer:
// program in python
# import math library
import math
#read input from user
num=int(input("enter an integer:"))
while True:
#find square root on input
s_root=math.sqrt(num)
#find remainder of root
r=s_root%1
#if remainder if 0 then perfect square
if r==0:
print("square root of the number is:",s_root)
break
else:
#if number is not perfect square then ask again
num=int(input("input is not perfect square !!enter an integer again:"))
Explanation:
Read an integer from user.Find the square root of the input number and then find the remainder of square root by modulo 1.If the remainder is 0 then number is perfect square otherwise ask user to enter an integer again until user enter a perfect square number.
Output:
enter an integer:12
input is not perfect square !!enter an integer again:16
square root of the number is: 4.0