What is a computer??????????????????????????????????????????????????????????

Answers

Answer 1
Answer: A computer is a decive.
Answer 2
Answer: It's a device programmed with only 1 and 0 (Plz mark brainliest if i helped!)

Related Questions

What kind of negative social impact has wireless communications had on today's society?
Explain why using infrared telescopes would not be useful for stargazing in the city?
Please help, I can't find the answer but I understand the topic. Question:Fill in the missing parentheses to have x equal 15.int x = _ 2 + 3 _ * 3;Console.WriteLine(x);
What is the hardest known mineral
Why does this say I'm in middle school?

When performing actions between your computer and one that is infected with a virus which of the following offers no risk becoming infected

Answers

Going to need your answer choices

thanks :)

Skype Windows for DesktopEvery time I open Skype, it opens 2 windows. 1 window is Skype, and 1 window is the Skype setup page that you get when you open Skype for the first time. I click 'Do not show me again' and have tried pressing yes and no. I have tried restarting my computer multiple times. Nothing is stopping it from popping up when I open Skype. What should I do?

Edit; Every time I close/open Skype my settings reset also.

Answers

There is a glitch you need to redownload the whole software like the Windows that should do the trick
Like they said redownload the whole software but use a different browser to download. Try google chrome or safari or internet explorer

If you bury a story on digg what have you done?a) voted down a web page
b) voted up a web page
c) withdrawn a story
d) archived a story

Answers

its voted down a web page

Answer:

its voted down a web page

Explanation:

Which fingers should you use to type the reach keys?A- Index
B- Middle
C- Pinkie
D- Thumb

Answers

The correct answer is:

___________________________________________________

[A]: "index fingers". Note that you want to keep your left index fingers near the "ASDF" keys; and your right index fingers near your "JKL;" keys; so you use your "index fingers" for easier dexterity to "reach" for the other keys to more easily "access", or "reach", the "reach keys" ; and then retract those fingers to the original positions.

____________________________________

A ____________ variable is available throughout a program.

Answers

Answer:

global

Explanation:

Its the global variable, and its scope is the whole program. And hence, a global variable is available throughout the program. And you need to know that a local variable has its scope in the block where it has been declared. Its scope is that block or the function or the loop only. And if you want it to have a global scope, then you will have to declare it as a global variable.

Find the error in the following pseudocode. Module main () Call raiseToPower (2, 1.5) End Module Module raiseToPower (Real value, Integer power) Declare Real result Set result=value^power Display result End Module

Answers

Answer:

Call raiseToPower (2, 1.5) '

or

raiseToPower (Real value, Integer power)

Explanation:

To solve this, first organize the pseudo code,

1) main ()

2) Call raiseToPower (2, 1.5)

3) End Module

4) Module

5) raiseToPower (Real value, Integer power)

6) Declare Real result

7) Set result=value^power

8) Display result

9) End Module

The first three lines in pseudo code are representing the main module. While lines 4-9 shows the definition of module that is being called in main function.  

If we look at the raiseToPower definition at line5, we can see that it is requiring any real value for the base number. However, for power, it defines only integers.

But, in the main function, 1.5 is placed as a power that is not an integer. Therefore, this is the error in pseudo code. It should be changed to any integer.

Alternatively, change the integer power to real power to avoid this error.