Answer:
Apple, Samsung and Foxconn
Explanation:
They are the leading it companies today
Answer:
100 or so atoms of the periodic table, in different combinations, make up <u>Compounds</u>.
Explanation:
Atoms from different element in the periodic table combined together with the help of bond and make a new product that is called compound.
<u>For example</u>
Hydrogen and oxygen are the elements of the periodic table. When one atom of oxygen and two atoms of hydrogen are combined together, a compound will be formed named as water (H20).
In another example, two atoms of oxygen and one atom of carbon combines toghther through chemical reaction and make compund named as Carbon dioxide (CO2).
Answer:
The program to this question as follows:
Program:
quote="You can always edit a bad page. You can’t edit a blank page."
name="Jodi Picoult"
print("Quote:\n",quote)
print ('\t\t\t\t\t\t\t',"Author name-", name)
Output:
Quote:
You can always edit a bad page. You can’t edit a blank page.
Author name- Jodi Picoult
Explanation:
In the above python code, two variable "quote and name" is defined, in which variable both variable holds some string value.
- In the next line, the print function is defined, that first print "Quote" as a message, and for line breaking "\n" is used, then print quote variable value.
- In the last step, first, we use "\t" for line spacing then message "Author name-", and then name variable value.