Answer:
Primary memory is directly accessible by Processor/CPU. Secondary memory is not directly accessible by the CPU. ... The memory devices used for primary memory are semiconductor memories. The secondary memory devices are magnetic and optical memories
The way that real-time text or RTT on her phone can help her is that;
C: On phone calls, it will convert speech into text
<h3>Speech to Text</h3>
We are told that Deirdre has a hearing disability. This means that she has difficulty in hearing words clearly but can read.
Thus, from her friends advice about real time text or RTT, it will aid her because whenever someone calls her on the phone, it can convert the content of the call speech into text.
The missing options are;
A. It will make her phone vibrate to notify her when she gets a phone call
B. It will make her phone vibrate to notify her when she gets a text message.
C. On phone calls, it will convert speech into text. D. While text messaging, it will convert text into speech
Read more on speech to text at; brainly.com/question/2375490
Answer:
Descriptives is the correct answer of this question.
Explanation:
Some software packages provide data column definitions that include qualitative summaries such as control averages, mean, average, minimum, standard deviation, number of zero values, number of empty records, etc.
- A descriptives summary is a sentence that gives someone information or something.
- Description is the style of narration creation aimed at making a location, an event, a character or a community vivid.
There are 2 types of Descriptives :-
- Narrative type.
- Argumentative type.
Answer:Search engine optimization (SEO) is the process of optimizing your online content so that a search engine likes to show it as a top result for searches of a certain keyword. ... When it comes to SEO, there's you, the search engine, and the searcher.
Explanation:
Answer:
Following are the program in python language the name of the program is factors.py
num= int(input("Please enter a positive integer: "))#Read the number by user
print("The factors of ",num,"are:")
for k in range(2,num): #iterating over the loop
if(num%k==0): #checking the condition
print(k)#display the factor
Output:
Please enter a positive integer: 12
The factors of 12 are:
2
3
4
6
Explanation:
Following are the description of the program
- Read the number by user in the "num" variable
- Iterating the for loop from k=2 to less then "num".
- In the for loop checking the factor of "num" variable by using % operator.
- Finally display the factor by using print function