Answer:
1,3,4
Explanation:
They all make sense except for 2. They cannot advertise or state something that is not to guaranteed to happen.
Answer: a) busy hour b) Average handle time.
Explanation:
a) In order to design a telephony circuit, trunk, or call center, it is needed to take into account the busiest calling hour (as a "sliding" 60-minute period) in one day, or week, month or year, generally calculated as an average.
This period is called the "busy hour" and is used to compute the traffic intensity, in Erlangs, considering that if the circuit is busy 100% of the time during 3600 seconds, it will be cursing 1 Erl of traffic.
This traffic can result from 60 calls of 1 min each, 36 calls of 100 sec each, or any combination that have the same outcome of 1 Erl.
b) In order to define, for instance, the number of employees in a call center, a very important parameter is the average time used for each call, adding the queuing time, the true talk time and any other time needed to set up a successful call, i.e., the time that the subscriber stays on the phone after putting the call.
This time is known as AHT (Average Handle Time).
Answer:
1. Copyright.
2. Trademark.
3. Patent.
Explanation:
A patent can be defined as the exclusive or sole right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention for a specific period of time.
Generally, patents are used on innovation for products that are manufactured through the application of various technologies.
An intellectual property can be defined as an intangible and innovative creation of the mind that solely depends on human intellect.
Simply stated, an intellectual property is an intangible creation of the human mind, ideas, thoughts or intelligence. They include intellectual and artistic creations such as name, symbol, literary work, songs, graphic design, computer codes, inventions, etc.
Basically, the three (3) main ways to protect an intellectual property is to employ the use of the following;
1. Copyright: protects the specific expression of a creation.
2. Trademark: protects signs, symbols, names, or short phrases that reveal the origin of a product or service.
3. Patent: protects the idea underlying a creation.
First of all, we will need a function that checks if a number is prime or not:
boolean isPrime(int n){
for(int i=2; i<=math.sqrt(n); i++){
if(n % i == 0) return false;
}
return true;
}
Then, in the main program, we will call this function with all the desired inputs, and we will print the prime numbers:
for(int n=100; n<= 1000; n++){
if(isPrime(n)) print(n);
}