Linux would be a good example of?

Answers

Answer 1
Answer: open source software

Related Questions

To select a new theme for a slideshow use the blank tile in the ribbon
_____ is one color shade gradually progressing to another shade of the same color or to another color.
A _______ is the most commonly used input device.a. microphone c. printer b. keyboard d. dpi
Which type of interview is conducted in a format where the interviewee is questioned and presented to a panel of individuals?
Damage to which portion of the limbic system results in loss of memory of recent events and difficulty committing anything new to memory?

How to take a set of numbers and turn them into a list in python

Answers

Answer:

numbers = (0, 9, 8, 7, 5, 2, 4, 5, 3)

numList = list(numbers)

print(numList)

Explanation:

You plan to use the Fill Down feature on a formula and you need to keep a cell reference the same. Which one of the following formats will allow you to keep the same cell reference

Answers

You have to use this format for example $A$2
The format for absolute reference is designated with a dollar sign ($). If both column and, put a dollar sign before and in between the row and column. By doing this, column and row do not change when copied.

What happens if the cursor is in the last cell in a table and you press Tab?

Answers

I think it would move to the beginning of the next row

Write the definition of a method dashedLine, with one parameter, an int. If the parameter is negative or zero, the method does nothing. Otherwise it prints a complete line terminated by a newline to standard output consisting of dashes (hyphens) with the parameter's value determining the number of dashes. The method returns nothing

Answers

Answer:

The following are the program in the Java Programming Language.

//define a function

public void dashedLine (int x)

{  

//check the variable 'a' is greater than 0

if (x>0)

{

//declare integer data type variable

int i;

//set the for loop that iterates from 1 to variable 'a'

for (i=1;i<=x;i=i+1)

{

//print the following dashes

System.out.print("-");

}  

//for empty space

System.out.println("");

}

}

Explanation:

The following are the description of the program.

  • Define a function 'dashedLine()' and pass an argument 'x' in the function's parameter.
  • Then, set the if conditional statement that check the argument x is greater than 0 or not.
  • Then, declare the variable 'i' and set the for loop statement that iterates from 1 to the variable x then, print the dashes and print the empty spaces after every loop statement.

What is the decimal value of the result of adding 6410 6510 on a computer with 8-bit registers and Two's complement representation?

Answers

Answer:

Adding 6410 6510 on a computer with 8 bit registers and Two´s complement representation the decimal value is:

0 +8192+4096+0+0+512+0+0+64+32+16+8+0+0+0 =  +12920

Explanation:

  0 1100100001010

+ 0 1100101101110       =  0 11001001111000

Scientific NotationRepresent the following numbers in scientific notation

0.000000000006789

0.1

4

7800000000000000

30.2000000000

0.006734

8000

0.00000356

120100000000

2000.34

Answers

To put a number in scientific notation, you must simplify it to become a number between 1-10 and multiply it by 10 up to the number of spaces the decimal was moved to simplify the number.

For example, to put the number .000000000006789 in scientific notation, you must move the decimal 12 times ( I think) to make the number 6.789 x -10up to the 12, be cause you have to move the decimal backwards.

To do another, 0.1 in scientific notation becomes 1 x 10up to the 1.

4 doesn't need to be in scientific notation, as it is already a number between 1-10. However, if you were to do it, it would become 4 x 10up to the 0.

For one more example, 78000000000000000 in scientific notation becomes 7.8 x 10up to the 15.

And so on for the rest. I hope this helps!