Answer:Discloses actual/potential dangers
Help create an environment supporting ethical conduct
Explanation: The clauses that are presented by the Code of Ethics for software engineering which are upheld by a whistle blower are termed as 1.03, 1.04 and 6.08.These describe about the below mentioned terms:-
- 1.03-it gives permission to software by receiving assurance that it meets the requirement, protected , good qualities and other such testable factors.
- 1.04- Disclosing to the correct and reliable person regarding any potential danger towards the user.
- 6.08- reporting errors and malicious activities, detecting it ,correcting those errors etc so that software conduct can work smoothly.
You may want to rephrase the output.
```
#!/usr/local/bin/python3
### Written for Python version 3! ###
import sys
num = int( sys.argv[ 1 ] )
exp = 0
while( num > 2**exp ):
exp += 1
print( "It takes %d bits to get to the center of a Tootsie Roll" % exp )
exit( 0 )
```
Answer:
Make sure to have the right tools for the right job. if you don't it would be probably best to send it to a shop to get fixed.
Answer:
a. 6 bits
b. 1
Explanation:
Ans (a)
40 Characters need to be represent by binary coded Zebronian (BCZ) , So You will need 6 bits.
5 bits wold only give you 32 = 2 x 2 x 2 x 2 x 2 unique characters.
So 6 bits would allow you to represent 64 characters.
Ans(b)
BCD = Binrary Coded Decimal is very common in electronics, particularly it displays numerical data.
BCD Encodes each digit of a decimal number into 4 digit binary form.
Each decimal digit is indiviidually converted to oits binary equivalent
For Example : 146 , the decimal degits are replaced by 0001 , 0100 and 0110 respectively
Addition
1 0 = 10 is binary value of 2 2
+1 1 = 11 is binary value of 3 + 3
---------- -----------
1 0 1 5 Ans
Subtraction
1 1= binary value of 3 3
- 1 0 = binary value of 2 - 2
--------- -----------
0 1 1 Ans
Answer:
what design do you want, also what design am i redesigning.