Janice can actually used both knowledge as an advantage. She can use her background in farming while learning more about medicine. In such a way, she can have a strong advantage in medicinal farming - like learn ways to create good and effective drugs from plants, etc.
Answer:
c. 4 to 6
Explanation:
According to the VMware, a virtual machine software company widely known for producing the virtualization software, which is capable of making computer hardware components to be compartmentalized into various virtual layers, recommended the best practices of virtual CPU per core to be running 4 to 6.
Hence, in this case, the correct answer is option C
Answer:
Following are the program in the Python Programming Language
#set variable to input sentence to replace words
sen = input()
#split that sentence
sen = sen.split()
#set variable to input whole sentence
get = input()
#set the for loop to replace words
for i in range(0, len(sen), 2):
#check condition when words of sen is in get
if sen[i] in get:
#then, replace words
get = get.replace(sen[i], sen[i+1])
#print the whole string after replacing
print('\n',get)
Explanation:
<u>Following are the description of the program</u>.
- Set a variable 'sen' that get a sentence for replacing the word.
- Split that sentence by split() method and again store that sentence in the following variable.
- Set a variable 'get' that gets the whole sentence from the user.
- Set the for loop for replacing words then, set the if conditional statement that checks the condition that the variable 'sen' in the variable 'get' then replace the words.
- Finally, print the whole sentence after the replacement.
The answer for this would be B.