Answer:blue is the best color choice for a global audience.
draw a flowchart to input a number and find out whether it is divisible by 7 or not
Note:
% is Modulus,
So it's taken as num mod 7, if that evaluates to 0 there is no reminder therefore divisible by 7.
write an algorithm to print the natural numbers from 1 to 15
Answer:
1. n = [ ]
2. i = 0
3. j = i + 1
4. i = j
5. append i to n
6. Repeat 3 to 5
7. Stop when i = 15
___ design uses the same webpage content, but applies styling depending on the viewport size of the device
What market was technology designed to appeal to?
Answer:
Explanation: Technology has transformed marketing by making campaigns more personalized and immersive for people and creating ecosystems that are more integrated and targeted for marketers. And it's not just the interface between brands and people that have been transformed.
What value is returned by the call mystery(2, 3, 6)?
answer choices:
9
10
14
8
20
Answer:
8888888888888888888888888888Explanation:
yyugjhgfgdsfsghgtredfzgxhcjvkiu
List 5 general safety precautions that you can take when working with a computer equipment.
Answer:
Wear the right clothes, unplug all equipment, keep your work area clean, check for damaged parts, and do not force components into ports.
Explanation:
These are all general safety precautions when working with computer equipment.
Dose anybody know how to do this because i dont.
Answer:
All you need to explain in this assignment is specific things which makes a product an innovationi or new. This is what emerging means in the first question. Then say why these new technologies can be hard to identitfy.
Explanation:
PI
s
ne
poem for the
During reading: Work
on the following questions:
suggests
I
a
1
b
What do you predict the poem will be about?
How does the shape support what the titles
How many stanzas does the poem have?
b How many sentences does it have?
3 Read the poem aloud in your group.
2
a
m
Until I saw the Sea by Lilian Moore
ou the Sea
Explanation:
As the qn was copy pasted from another document...the qn seems incorrect... and incomplete..
pls see to it and attach the correct qn...
sorry
The decimal equivalent of the product of 1011 and 1100 is
Answer:
132
Explanation:
We convert each number to base 10 (decimal) and multiply.
So 1011₂ = 1 × 2³ + 0 × 2² + 1 × 2¹ + 1 × 2⁰
= 1 × 8 + 0 × 4 + 1 × 2 + 1 × 1
= 8 + 0 + 2 + 1
= 11₁₀
1100₂ = 1 × 2³ + 1 × 2² + 0 × 2¹ + 0 × 2⁰
= 1 × 8 + 1 × 4 + 0 × 2 + 0 × 1
= 8 + 4 + 0 + 0
= 12₁₀
So, 1011₂ × 1100₂ = 11₁₀ × 12₁₀ = 132₁₀
So, the decimal equivalent of the product of 1011 and 1100 is 132
The First National Bank debited $100.00 from your checking account into your savings account. What would the transaction descripton be?
Answer:
32 Day Interest Plus
Amount 1 - 32 days (per annum) 33 - 64 days (per annum)
R1 000 - R9 999 0.55% 0.65%
R10 000 - R24 999 0.80% 0.90%
R25 000 - R49 999 1.05% 1.15%
R50 000 - R99 999 1.55% 1.65%
Explanation:
7. What is a slide transition?
Answer:
Is this multiple choice? If not, its a visual effect from one slide to another.
Explanation:
Answer:
A slide transition is the visual effect that occurs when you move from one slide to the next during a presentation. You can control the speed, add sound, and customize the look of transition effects
Explanation:
hope this helps:)
The following if statement tests the rainfall in New York’s Central Park during the months of June, July and August.
if (low <= rain && rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
It could be replaced with:
I.
if (rain >= low)
{
if (rain <= high)
System.out.println("Rainfall amount is normal.");
}
else
System.out.println("Rainfall amount is abnormal.");
II.
if (rain >= low)
{
if (rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
}
else
System.out.println("Rainfall amount is abnormal.");
III.
if (rain >= low)
System.out.println("Rainfall amount is normal.");
else if (rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
I only
II only
III only
(II or III)
I, II or III
Answer:
II only
Explanation:
In the original code, both conditions of low<=rain and rain >= high must be met for the print message to be executed. This is denoted by the && logical operator.
The code in II does the same thing. It first checks that the low <=rain condition is true; then it goes on to check if the rain >= high condition is true as well before the "normal" print statement can be executed. But if either of the condition is not true, it prints "abnormal" because both conditions must be true.
Where is information stored in the computer?
Answer:
files
Explanation:
data is stored in files
does trend in computing important for organization management?
Answer:
yes it is...................
What are some common summary operations that aggregate functions can perform in a crosstab query? Check all that apply.
adding
counting
dividing
subtracting
identifying an average
calculating a minimum or maximum
predicting the next value in a pattern.
Answer:
adding
counting
identifying average
calculating max or min
Explanation:
edg 2021