<p>Java Programming simple question? 1) There are two types ofvariables in Java: references and __________. 2) Dog d = new Dog();Dog.bark(); In the code above, the method bark is an
<p>Answer the following question, showing your work:</p><p>(a) You have a processor that is capable of achieving 2,850million instructions per second, where the clock rate of theprocessor is set at 1.5GHz.
<p>import random</p>fave_word = 'hello'# add 'world' and a random number (between 0-3) of 'Bob's to this wordfave_word += "world"rand_num = random.randint(0,3)if rand_num == 0: fave_word += ''elif