You hit ctrl than the plus/equal sign Hope that helped!
Answer:
literacy
Explanation:
Media literacy. This is a worldwide educational movement that aims to teach to people to understand how the media affect both individuals and society as a whole.
Answer:
b. mkdir -p ~/2019projects/project/projectplans
Explanation:
mkdir command in Linux environment is used to create a new directory. This command is used to create a folder to store the information in organized manners.
-p is used to create a parent folder in the directory. If we want to start a new project or want to store information about some new topic we will create a new folder for that purpose. So, -p is used to create a new folder in directory.
In above mentioned case, this is the first project that Mindy started in 2019, so she should create a parent directory of 2019 to save all projects details that she worked in 2019. So she should use -p with mkdir command to make 2019 as a parent folder.
Plagiarism is taking the work of others word by word and saying that it’s yours.
Answer:
Hi!
10010101 = 149;
01110110 = 118;
00110011 = 51;
11100010 = 226;
10000001 = 129;
Explanation:
To convert binary numbers you can use this formula:
, where position of the bit₀ is the rightmost digit of the number.
Results, using the formula:
10010101 = 1*2⁰+1*2²+1*2⁴+1*2⁷ = 1 + 4 + 16 + 128 = 149.
01110110 = 1*2¹+1*2²+1*2⁴+1*2⁵+1*2⁶ = 118;
00110011 = 1*2⁰+1*2¹+1*2⁴+1*2⁵ = 51;
11100010 = 1*2¹+1*2⁵+1*2⁶+1*2⁷ = 226;
10000001 = 1*2⁰+1*2⁷ = 129;
<em>Note:</em> All bits in 0 multiplied by any number are 0.