Answer:
The answer to this question is given below in the explanation section.
Explanation:
A <u> </u><u>logic </u><u> </u>error occurs when a program runs accurately, but yields the wrong result. Therefore, it is difficult to detect. However, a program can detect <u> </u><u>syntax </u><u> </u>errors rapidly, because they occur in the structure of programming code during the compilation stage.
Answer:
True.
Explanation:
Analytical processing uses multi-levelaggregates, instead of record level access.
Answer:
data, sort and filter, text filters
Explanation:
ed 2020
Th e most important external issue when using social media in emergency management is the disaster response. Disseminating information through social media is very effective especially when there are calamities and a disaster respond from both private and public sector is very urgent.
Answer:
1111000
Explanation:
perform the following. write from right to left:
- is the number even? then write down a 0
- is the number odd? then write down a 1 and subtract 1
- divide by 2
- repeat until you reach 0.
So for 120:
120 is even, so write down a 0 and continue with 120/2=60
60 is even, so write down a 0 and continue with 60/2=30
30 is even, so write down a 0 and continue with 30/2=15
15 is odd, so write down a 1 and continue with 14/2=7
7 is odd, so write down a 1 and continue with 6/2=3
3 is odd, so write down a 1 and continue with 2/2=1
1 is odd, so write down a 1 and finish with 0