Answer: (A) Fixed interval
Explanation:
The fixed interval schedule is the type of schedule of the reinforcement in the operand conditioning in which the the initial response are rewarded by some specific amount of the time.
The main issue with the fixed interval schedule is that the people have to wait until the reinforcement schedule get occur and start their actual response of interval. This type of reinforcement schedule occur as the output value does not posses constant value all the time.
Therefore, Option (A) is correct.
Hello <span>Pouerietzach
Question: </span><span>Which of the following are recommended techniques for protecting computer files and data? Check all of the boxes that apply.
</span><span>
Answer: A, B, D, E, G
Hope That Helps
-Chris</span>
Answer:
Correct code for the above question which is written in the place of loop in the above question code:
for a,b in contact_emails.items(): # for loop to print the above items one by one.
print(str(b)+" is "+str(a)) # print statement to print the item of the list.
Output:
- The above code is in python language which display the output as the above question demands.
Explanation:
- The above question code is in python language, so the for loop to prints the list is defined in the answer part.
- The for loop syntax defined in the question part is not correct. It never gives the output which the question demands.
- The above list defined in the question part is in the form of key-value pair which comes in the categories of the dictionary concept.
- So to print the above list, any user needs an item function that will display the output in the key-value pair.
- There is also needs two variables in the 'for' loop one is for key and the other is for value.
Answer:
if(goodsSold>500000){
bonus = 10000;
}
Explanation:
A complete Java program that prompts user to enter value for goodsSold is given below:
<em>import java.util.Scanner;</em>
<em>public class num14 {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner in = new Scanner(System.in);</em>
<em> System.out.println("Enter goods Sold: ");</em>
<em> int goodsSold = in.nextInt();</em>
<em> int bonus =0;</em>
<em> if(goodsSold>500000){</em>
<em> bonus=10000;</em>
<em> }</em>
<em> System.out.println("You bonus for "+goodsSold+" is "+bonus);</em>
<em> }</em>
<em>}</em>