Answer:
The answers are:

Explanation:
<u>a. (1001111) 2 = ( ) 10</u>
In order to convert a base 2 number to base 10 number system the place values are used.
the procedure is as follows:

<u>b) (11000001) 2 = ( ) 16</u>
In order to convert a base 2 number into base 16, group of 4-bits are made starting from right to left
The groups from the given number are:
1100 0001
Then the groups are changed in to decimal/hexa
So,

Writing in the same order in which groups were:

<u>c) (E16) 16 = ( ) 10</u>

<u>d) (56) 10 = ( ) 16</u>
Dividing by 16 and noting remainders
16 56
3 - 8
So,
The number in base 16 is 38
<u>e) (63) 10 = ( ) 2</u>
Dividing by 2
2 63
2 31 - 1
2 15 - 1
2 7 - 1
2 3 - 1
1 - 1
So the number after converting in base 2 is:
111111
Hence,
The answers are:

Using the knowledge in computational language in JAVA it is possible to write a code that organizes and synchronizes the programs that will run on the computer.
<h3>Writting the JAVA code as:</h3>
<em>import java.util.concurrent.ExecutorService;</em>
<em>import java.util.concurrent.Executors;</em>
<em>public class Main</em>
<em>{</em>
<em>Integer sum=new Integer(0);</em>
<em>Main(){</em>
<em>ExecutorService e=Executors.newFixedThreadPool(1000);</em>
<em>final Sum s = new Sum();</em>
<em>for(int i=0;i<1000;i++){</em>
<em>e.execute(s);</em>
<em>}</em>
<em>e.shutdown();</em>
<em>while(!e.isTerminated()){</em>
<em>}</em>
<em>System.out.println(sum);</em>
<em>}</em>
<em>public static void main(String[]args){</em>
<em>new Main();</em>
<em>}</em>
<em>class Sum implements Runnable{</em>
<em>public void run() {</em>
<em>m();</em>
<em>}</em>
<em>public void m(){</em>
<em>sum=sum+1;</em>
<em>}</em>
<em>}</em>
<em>}</em>
See more about JAVA at brainly.com/question/12978370
#SPJ1
Answer:
The 2nd one on top and The Star ones.. (sorry if its wrong
Explanation:
Most managers see inappropriate dressing every day. Some are left angered while some are confused as to what is the right way to approach such situations. What follows next needs to be professional oriented. Being the manager, I would start by finding out what the appropriate dressing policies are. Some companies might have dress code policies while others might not. Assuming that this company has, I would read these policies carefully. The next thing that is required from me is to have a small conversation with the employee discretely. As professional as I can be, I will mention how I feel his or her dress code is inappropriate and try to summon the employee by asking him or her whether they are fully aware of the appropriate dress code. I will try to agree with the employee on what is appropriate and what is not. If we agree, requesting the employee to home and change clothes is unnecessary, but if the need to do that arises, I would consider that to be an option.
Answer:
Software aspect of computing
Explanation:
Boole never regarded logic as a branch of mathematics, instead, he proposed that logical propositions should be expressed as algebraic equations. Mathematical operations were replaced with AND, OR.
Boolean algebra provides the basis for analyzing the validity of logical propositions because it captures the two-valued character (binary: (1 or 0) ) of statements that may be either true or false which is very important for all digital computation of which softwares are part of.