Answer:
The correct answer to the following question will be "It is a discrete random variable".
Explanation:
A variable that assumes algebraic expressions defined by a randomized occurrence result, is a Random variable.
- There are several potential or possible values for a single randomized variable.
- A discrete random variable's chances for each value is between 0 (zero) and 1 (One), as well as the total amount among all possible outcomes, is equitable to 1.
So, a Discrete random variable is the right answer.
Usability emphasizes utility over aesthetics statement best describes the concept of usability.
B. Usability emphasizes utility over aesthetics.
<u>Explanation:</u>
Usability mainly speaks about the utility of an item. There are many wastes created in home and work place and those are sometimes thrown without knowing that it can be re-used for another purpose.
It is always better to re-use the product without considering aesthetic aspects though aesthetic is equally important. We can make the old objects to create a new one.
There are many videos in the social media to make the old objects to be used as a sub-product to create a new object and sometimes it looks better than an old one.
Answer:
The answer to this question is given below in the explanation section.
Explanation:
#include <iostream>
// it is preprocessor director that manipulate the input output in the program
using namespace std;// it is used to format input and output
int main() {
// main function is started
int x = 5;
// variable x is declared and initialized with value 5.
int y = 6;
//variable y is declared and initialized with value 6.
int z = 34; //variable z is declared and initialized with value 34.
int total = (x+(x + y)*z+y);
// variable total is declared and initialized with value of x,y,and z. and calculation performed on these value such as (5+(5+6)*34+6) that is equal to 385.
cout << total;
// print the value of total variable that is 385
return 0;
}