Answer:
Monica should have been dead
Explanation:
She ran in the street
A party caucus is a meeting in the legislative committee in order to have the party leaders as well as to have a policy. It is usually called as a conference by the republicans so among the choices the best answer would be c. meeting between the House and Senate committee.
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
if (boolean expression)
{
Do statement;
}
// A block if statement: { } required
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Note