Hi!
Science is a way of thinking about the natural world. It asks thought provoking questions and investigates deep into the human mind, our Earth, our periodic table, or our cosmos.
It's a vast field, with a myriad of career options. Scientists want to learn more about how our natural world works, and experiment to discover newfound facts about life as we know it.
Not to <em>blow... </em>away... your... expectations... but, in science, we rarely blow up things. If you're interested in seeing explosions, go apply to be a myth buster.
Hopefully, this helps! =)
Answer:
Explanation:
Let's do this in python
(a) Between 5 and 60 and divisible by 5
for i in range(5, 60/5):
print(5*i)
(b) Less than 200 and divisible and 2 and 7
for i in range(1, int(200/14) + 1):
print(14*i)
(c)Sum of multiple of 8 that are between 100 and 500
sum_result = 0
for i in range(100, 500):
if i % 8 == 0:
sum_result += i
print(sum_result)
(d)sum of all odd numbers between 20 and 10
sum_odd = 0
for i in range(10, 20):
if i % 2 == 1:
sum_odd += i
print(sum_odd)
Answer:
Feed tracking and use customs objects record fields and post them as an update. Feed tracking detects that user follows record and update their view of What follow.
Explanation:
Feed tracking is available in Sales Group, Professional, Enterprise, and Developer.
Custom Object is a set of records that allow you to store additional data in an account record and link the data to contact.
Create a custom object in Salesforce
- Login in sandbox
- click the new Custom Object. select create custom Object
- Enter Book for label
- Enter Book for plural label
- Click Save
// Created Custom Object and Custom Filed
- Click new Select Number for datatype and click Next
- Enter in the filed label
- Enter 2 in decimal places
- Click Next for filed-level security
- Click Save