Answer:
IDEs can let you code without internet.
Explanation:
1. you can code without wifi.
2. it combines common developer tools into 1 GUI (grafic user interface).
3. it gives a warning about memory leaks.
4. it can correct synaxes.
Hope This Helps! :)
Answer:
"Porous inkjet paper produces high-quality photos." and "Porous paper fades and scratches easily."
Explanation:
i took the test
Intensity is the brightness of a color. When a color is not mixed with any black or white it is at full intensity; Also called a pure hue. You can also change the intensity of a color by adding its complimentary color.
Hope this helps
For anyone reading this in the future, the correct answer is transmission. I just took the quiz
Answer:
1) The value of x will be 6.
2) The value of y will be 7.
Explanation:
1) The value of x will be 6.
The enum values are labeled by default from 1. This means that Sun = 1, Mon = 2, Tue = 3 and so on.
So, x = Mon = 2 and y = Sat = 6
x increases up to y = 6 in the while loop.
and then y also increments by 1.
2)So the value of y = 7.
You will need actual printf("Sun") or printf("Mon") for printing the actual text for the enum.