A card is drawn from an ordinary deck. Find the probability of getting a 3 or a diamond card.
________ is one of the results obtained when a statistical experiment is carried out.
Select one:
a. Event
b. Activity
c. Outcome
d. Experiment
Adapt the following code to run in a windows form and also add a button to reset the input length and width boxes.
namespace PaintingEstimate
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Program computes the cost of painting the room");
//inputs room length and width
Console.Write("Enter room length: ");
int length = Convert.ToInt32(Console.ReadLine());
Console.Write("Enter room width: ");
int width = Convert.ToInt32(Console.ReadLine());
//calls method
int totalPrice = ComputePrice(length, width);
Console.WriteLine("Total price: ${0}", totalPrice);
Console.ReadKey();
}
//method computes work price
static int ComputePrice(int length, int width)
{
//price per square foot
int price = 6;
//ceiling
int ceil = 9;
int totalSquare = width * ceil * 2 + length * ceil * 2;
return price * totalSquare;
}
}
}
If the occurrence of an event does not influence the occurrence of another event, the two events are said to be
Select one:
Mutually Inclusive
Dependent
Mutually Exclusive
Independent
A customer opens an account at a bank with an initial amount. The account number, name, and balance of the customer are generated. The customer can deposit money and withdraw money as per need, this will modify the existing account balance. It should also be checked if the demanded amount is available during withdrawal. The customer can also close the account, the available amount will be paid out. Write a programme to input and display data for 5 customers with the use of Constructor and Destructor
Given event A, the set of outcomes in the sample space that are not listed in the event A is called
Select one:
a. Conditional Probability of A
b. Supplement of A
c. Complement of A
d. Composite of A
For the network of capacitors shown, find the equivalent capacitance and the total charge when connected to a 36 V source. Note that C1 = C2 = 4.0 F and C3 = C4 = 6.0 F.
For each of these relations on the set {1,2,3,4}, decide whether it is reflexive, symmetric, antisymmetric and/or transitive and then draw the graph of the relation.
a. {(1,1), (2,2), (3,3), (4,4)}
b. {(1,2), (2,3), (3,4)}
c. {(1,1), (1,2), (2,1), (2,2), (3,3), (4,4)}
d. {(2,4), (4,2)}
e. {(2,2), (2,3), (2,4), (3,2), (3,3), (3,4)}
f. {(1,3), (1,4), (2,3), (2,4), (3,1), (3,4)}
Silver sulphide and hydrogen gas are combined to form silver solid and hydrogen
sulphide gas. 10.0 g of H2 and 125.0 g of Ag2S are used in reaction.
What quantity of Ag is produced ?
How to reduce time of development and manufacturing process while delivering on costumers'values?