Answer:
From the given diagram, consider a MIN node whose children are terminal nodes, if MIN plays
suboptimal. MIN will never be lower than the utility obtained playing against an optimal MIN
MIN will always select a move having minimax utility greater than or equal to the move that is
predicted by the minimax that is the MIN-played optimal value.
Then the MIN node's value is increased to MAX. This is done by induction.
One can do better than the minimax strategy, if the suboptimal play is predicted by MIN.
If MIN always falls for certain for certain kind of trap and losses, then setting up a trap guarantees a win.
Explanation:
See attached picture also.
List, resumes, spread sheet, databases, contracts
Answer:
import java.util.Scanner;
public class num10 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the numbers to add up. enter 999 to stop");
int num = in.nextInt();
int sum = 0;
while (num!=999){
sum = sum+num;
System.out.println("Enter the next number");
num = in.nextInt();
}
System.out.println("The sum is: "+sum);
}
}
Explanation:
The application is implemented in Java
A while loop is used to continously prompt user for inputs. The condition of the while loop is while (num!=999)
When the number 999 is entered, it displays the sum which is initialized to 0
Answer:
"IT governance" is the answer for the above question.
Explanation:
- "IT governance" is a type of framework which is related to information technology and It is used to justify that the processor takes by the organization is in the right direction or not.
- It suggests the user take the decisions to achieve the business goal for the objective of the organization.
- The above question asked about the framework which is used to ensure the objective of a business is achieved by the process or not. So that framework is known as "IT governance".
Answer:
Some of the differences that can be found in this communication means are: the time of reception and response, impression methods, presentation, resources invested, environmental impact.
Explanation:
In today's world it is possible to have endless possibilities in terms of the means of communication through which we can send a message effectively. In the past before the technological era that we are living at the moment, the most common form of communication was the business letters that were normally constituted in a very formal way since its writing, its impression, the way in which it was physically distributed its information, its envelope and the time of diffusion also had to be a little more extensive.
Now according to the technological advances and all the benefits that technology offers us, e-mail is the most efficient form of communication even for companies, who have been able to adapt satisfactorily the characteristics of the messages contained therein in order to achieve a formal communication in the same way and transmit the message in a much faster and more effective way, without having to spend on prints, luxurious envelopes and the sending of the physical document and can also leave a record of the sending of the information. In addition the e-mail can not only be used for formal communications but for any type of communication that is necessary, almost immediately and very effectively, with a low impact in the environment with less use of paper.