Answer:
margin: 30px 0 0 150px;
Example:
<html>
<body>
<div style="margin: 30px 0 0 150px">
Welcome In Bangalore
</div>
</body>
</html>
Explanation:
The Above example is written in HTML and inline CSS in which I have created a division and given margin to it through internal CSS.
First value in the margin is 30px then 0px for bottom margin then 0px for right margin and at last we have given 150px margin to the left side.
Answer:
See explaination
Explanation:
A loop program is a type of program that supports iteration.
It is a conditional statement ptogram that produces its result after a series of iteration or repetition from one loop to the other.
Please go to attachment for the loop program that examines the eight bytes in the words y and z. If a byte is the code for a decimal number, output it to the console. Otherwise, simply ignore it and examine the next byte.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The correct answer to this question is:
Stacking order refers to how objects are stacked on top of each other in PowerPoint.
When you prepare a PowerPoint presentation, you may insert multiple objects on a slide, and these objects such as pictures, shapes, and text, etc appear in the stacking order. Stacking refers to placing objects in a slide one on top of another. In other words, the first object you draw on a slide appears at the bottom and the last object that you put on the slide appears at the top.
While the options are not correct because;
How objects are ordered in the rotation of animation is referring to aligning the objects, the size of the picture does not link with the stacking order, and also to delete objects from slide does not have any relation with stacking order.
Answer:
Procedural abstraction is a method in which all sub tasks of a whole functionality must be created separately as method and each method/ procedure must be performing a distinct functionality. For example if we want to write a program to calculate and display result of students in class and create separate methods to get students record, to calculate grades to display results is a procedural abstraction approach. Here not only the methods created have distinctive function the administrative can vary the level of abstraction as well.
It is important in computer science for the following ways:
1) Increase the level of code readiness as all separate functionality tasks will have a separate methods.
2) Prevents unauthorized of data.
Answer:
In Python:
#The program calculates and prints the remainder when num1 is divided by num2 using the fmod function
import math
num1 = int(input("Input 1: "))
num2 = int(input("Input 2: "))
print(math.fmod(num1, num2))
Explanation:
This program begins with a comment which describes the program function
#The program calculates and prints the remainder when num1 is divided by num2 using the fmod function
This imports the math module
import math
The next lines get input for num1 and num2
<em>num1 = int(input("Input 1: "))</em>
<em>num2 = int(input("Input 2: "))</em>
This calculates and prints the remainder when num1 is divided by num2
print(math.fmod(num1, num2))