Answer:
A responsive layout is usually a common and important aspect of a theme since it can allow users to use different devices and receive a proper satisfactory visit.
Explanation:
Depending on the purpose of the site, you need to be decided what functionalities you deem necessary and which are just useful in case you might need it later on. Example
A blog site will required a good blog theme,
including one that has ecommerce options depends weather the blogger might be thinking of selling things or not.
Answer:
The only difference is the order of operations between the increment of the variable and the value the operator returns. So basically ++i returns the value after it is incremented, while i++ return the value before it is incremented.
Answer:
1/2000
Explanation:
import java.util.Scanner;
public class InputExample {
public static void main(String [] args) {
Scanner scnr = new Scanner(System.in);
System.out.print("Enter birth month and date:");//comment this line if not needed
int birthMonth=scnr.nextInt();
int birthYear=scnr.nextInt();
String output= birthMonth+"/"+birthYear+"\n";
System.out.println(output);
}
}
if using this code the out put should be 1/2000
Answer:
i) an instruction set, ii) pseudocode
And program in python is:
LENGTH=input("ENTER THE LENGTH OF THE ROOM IN FEET")
BREATH=input("ENTER THE BREATH OF THE ROOM IN FEET")
AREA=int(LENGTH) * int(BREATH)
print("THE AREA OF THE ROOM IN SQUARE YARDS IS", AREA/9)
print("THE CARPET REQUIRED IN SQUARE FEET",AREA)
Explanation:
The pseudo code is:
START
ENTER THE LENGTH OF THE ROOM IN FEET; LENGTH
ENTER THE BREATH OF THE ROOM IN FEET; BREATH
PRINT THE AREA OF THE ROOM IN SQUARE FEET IS; AREA
PRINT THE AREA OF THE ROOM IN SQUARE YARDS IS; AREA/9
PRINT THE CARPET REQUIRED IN SQUARE FEET; AREA
STOP