Answer:
The answer is: they are comparable to suit of hearts
Explanation:
The answer is: they are comparable to suit of hearts
Answer:
C. layout of each page with its respective elements
Explanation:
A layout of each page with its respective elements will give the client a good idea of the final product and help him confirm his desires/requests towards the creation of the Web site. Most people are visual, especially about things they don't fully understand, so a clear and visual representation is best.
<u>A. Bulleted lists and titles</u>... won't give the idea of the full layout of the Web site.
<u>B. chart depicting</u>.... that's more a tool for the programmer than the client, although user flow is important, it isn't as much as the visual aspect of each page.
<u>D. pictures and screenshots of websites of other florists..</u>. That could be a useful aid on the first contact, but the question implied the Web site is already in progress... so that wouldn't help much.
<u>E. programming code for the website</u>, absolutely not, the client hired Jeremy not to have to deal with that.
Answer: URN(Uniform Resource Name) is the basically a subset of the Uniform Resource identifier(URL). It uses "urn"scheme for the working an implementation. Uniform resource name functions by identifying components uniquely through their name.
The most common example of URN is ISBN (International Standard Book Number)number which helps in the unique searching and identification of book.
If we are talking about a simple North American Keyboard, The answer would be F1 to F12
Hope this Helps!!!
Answer:
#program in python.
#variables
slice_area=14.125
pi=3.14159
#read diameter
d=int(input("Enter diameter of pizza:"))
#area of pizza
area=pi*(d/2)*(d/2)
#number of slice
no_slice=int(area/slice_area)
#print slice
print("total silce are:",no_slice)
Explanation:
Declare and initialize a variable "slice_area" with 14.125 which is the area of a pizza slice.Initialize a variable "pi" with 3.14159.Then read the diameter of pizza.Find the area of pizza as "area=pi *d/2*d/2".Divide the total area with area of pizza slice.This will be the number of slice.
Output:
Enter diameter of pizza:20
total silce are: 22