Question

In: Statistics and Probability

A private television decides to opt for the system of ”pay-program” using the decoders ordered by...

A private television decides to opt for the system of ”pay-program” using the decoders ordered by 8-digit codes.

a)Find the number of potential subscribers and the number of subscribers with code consisting of 8 different digits.

b)Calculate the number of codes with 2 different digits; one used 1 time and the other 7 times.

c)Same question with 3 different digits, 2 of them used 1 time and the 3rd used 6 times.

Solutions

Expert Solution

Therefore

Total number of potential subscribers = 16777216

Total number of subscribers with code consisting of 8 different digits = 40320

number of codes with 2 different digits; one used 1 time and the other 7 times. = 45*8 = 360 ways

number of codes with3 different digits, 2 of them used 1 time and the 3rd used 6 times. = 120*56 = 6720.


Related Solutions

You are building a safe messaging system by using an Encryption such as private key (symmetric)...
You are building a safe messaging system by using an Encryption such as private key (symmetric) and public key (Asymmetric) that would prevent the utility company from knowing the content of the communications being exchanged. The receiver can be disconnected and cannot receive messages, how can this situation be managed by your system?
Using C++ Write a program to calculate the amount a customer should pay in a checkout...
Using C++ Write a program to calculate the amount a customer should pay in a checkout counter for the purchases in a bagel shop. The products sold are bagels, cream cheese, and coffee. Use the pseudo code discussed in the class to write the program. Make reasonable assumptions about the prices of bagel, cream cheese, and coffee. Declare prices of bagel, cream cheese, and coffee as constants.
Using C++ write a program to calculate the amount a customer should pay in a self...
Using C++ write a program to calculate the amount a customer should pay in a self checkout counter for his purchases in a bagel shop. The products sold are everything bagels, garlic bagels, blueberry bagels, cream cheese, and coffee. Using "doWhile loops" write the program to display the menu of the Bagel shop. Make the user buy multiple items of different choices. Finally display the total amount for the purchases. Below is my current code to work with. Please add...
Modify the bellow program by using only system calls to perform the task. These system calls...
Modify the bellow program by using only system calls to perform the task. These system calls are open,read,write, and exit .Use text and binary files to test your programs. #include <stdio.h> void main(int argc,char **argv) { FILE *fp1, *fp2; char ch, buf[20], *pos; int n; pos = buf; if ((fp1 = fopen(argv[1],"r")) == NULL) { puts("File cannot be opened"); exit(1); } fp2 = fopen(argv[2], "w"); while ((n = fread(pos, sizeof(char), 20, fp1)) == 20) { fwrite(pos, sizeof(char), 20, fp2); }...
Rewrite following Java program using use List and not arrays. public class Shoes { private String...
Rewrite following Java program using use List and not arrays. public class Shoes { private String name; private int size; private String model; public Shoes() { } public Shoes(String name, int size, String model) { this.name = name; this.size = size; this.model = model; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getSize() { return size; } public void setSize(int size) { this.size = size; } public String getModel()...
This is for a java program. Payroll System Using Inheritance and Polymorphism 1. Implement an interface...
This is for a java program. Payroll System Using Inheritance and Polymorphism 1. Implement an interface called EmployeeInfo with the following constant variables: FACULTY_MONTHLY_SALARY = 6000.00 STAFF_MONTHLY_HOURS_WORKED = 160 2. Implement an abstract class Employee with the following requirements: Attributes last name (String) first name (String) ID number (String) Sex - M or F Birth date - Use the Calendar Java class to create a date object Default argument constructor and argument constructors. Public methods toString - returning a string...
Write a C++ program that will be an information system for Oregon State University using classes...
Write a C++ program that will be an information system for Oregon State University using classes as well as demonstrating a basic understanding of inheritance and polymorphism. You will create a representation of an Oregon State University information system that will contain information about the university. The university will contain a name of the university, n number of buildings, and m number of people. People can be either a student or an instructor. Every person will have a name and...
Write a C++ program that will be an information system for Oregon State University using classes...
Write a C++ program that will be an information system for Oregon State University using classes as well as demonstrating a basic understanding of inheritance and polymorphism. You will create a representation of an Oregon State University information system that will contain information about the university. The university will contain a name of the university, n number of buildings, and m number of people. People can be either a student or an instructor. Every person will have a name and...
Write a program for hotel booking system using C++ Program Requirement 1. You can write any...
Write a program for hotel booking system using C++ Program Requirement 1. You can write any program based on the title assigned. 2. The program must fulfill ALL the requirements below. The requirements listed below are the MINIMUM requirement. Your program may extend beyond the requirements if needed. a) Create at least one (1) base class. b) Create at least two (2) derived classes that inherit from the base class created in 2(a). c) Create at least one (1) object...
I want to indent this c++ program #include<iostream> using namespace std; class Rectangle{ private: double width;...
I want to indent this c++ program #include<iostream> using namespace std; class Rectangle{ private: double width; double length; public: void setWidth(double); void setLength(double); double getWidth() const; double getLength() const; double getArea() const; double getPerimeter() const; bool isSquare() const; }; void Rectangle::setWidth(double w){ width = w; } void Rectangle::setLength(double l){ length = l; } double Rectangle::getWidth() const{ return width; } double Rectangle::getLength() const{ return length; } // Added Method definitions double Rectangle::getArea() const{ return (width * length); } double Rectangle::getPerimeter() const{...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT