Answer:
gggaghqjgfdttedfvqtffqgfq graffiti qtrdgg
for my assignment 2: Room area assignment, I keep getting a negative number for room 2, and I don't know why I'm getting the wrong answer because i copied a girl that got 100.
Answer:
The program in Python is as follows:
A = int(input("Side A: "))
B = int(input("Side B: "))
C = int(input("Side C: "))
D = int(input("Side D: "))
E = int(input("Side E: "))
A1 = A * B
A2 = (D - B - E)*(A - C)
A3 = 0.5 * E * (A - C)
Area = A1 + A2 + A3
print("Area:",Area)
Explanation:
One reason, you're getting a negative answer is that you probably entered a greater value for side C than A. Side A is meant to be greater than side C. Since the program do not need to be validated, you have to be careful with your inputs.
Another reason could be that your program is incorrect.
Get input for sides A to E
A = int(input("Side A: "))
B = int(input("Side B: "))
C = int(input("Side C: "))
D = int(input("Side D: "))
E = int(input("Side E: "))
Calculate rectangle area 1 (A1)
A1 = A * B
Calculate rectangle area 2 (A2)
A2 = (D - B - E)*(A - C)
Calculate the triangle area 3 (A3)
A3 = 0.5 * E * (A - C)
Calculate the total area
Area = A1 + A2 + A3
Print the calculated area
print("Area:",Area)
Computing hardware, computers using vacuum tubes were called the first generation; transistors and diodes, the second; integrated circuits, the third; and those using microprocessors, the fourth
If you have an ordered list of all the states in North America, and you want to add a title "States of North America", what tag will you use?
A.
B.
C.
D.
Answer:
B
Explanation:
I think that is the answer
What tab appears that allows for charts to be formatted when a chart is selected?
Ethan wants to change the font in his document. He should _____.
delete the text, select a font, and type
select a new font and highlight the text
highlight the text and select a new font
zoom in on the text, click on style, and make a selection
Answer:
C because it will work. I tried that a lot of time with documents.
Explanation:
Answer:
Ethan wants to change the font in his document. He should _____.
A. delete the text, select a font, and type
B. select a new font and highlight the text
C. highlight the text and select a new font
D. zoom in on the text, click on style, and make a selection
It is highlight the text and select a new font
Explanation:
13) When developing film, how do you dispose of fixer as opposed to developer?
A) Fixer is poured down the drain while developer can be reused.
B) Developer is poured down the drain while fixer can be reused.
C) Both developer and fixer can be poured down the drain.
D) I don't know.
Answer:
B) Developer is poured down the drain while fixer can be reduced
Explanation:
The effluents produced during photographic processing includes, wash water, bleach, fixer, and developer
The developer is an alkaline solution, with a pH of approximately 10.0, while the pH of the fixer is about 4.3, it is therefore, acidic
The rate of discharge of the developer to the fixer is 2 to 1, and the exhausted developer, fixer and process effluents combined are neutral and can be handle by the the treatment works and the drain pipes
Fixer which remain clear can be reused for more than a day, while the spent basic Developer and the acidic Spent Stop Bath can be combined to form a neutral solution, having a pH of approximately 7, which make them less hazardous to be disposed off down the sink into the drain
Therefore, developer is poured down the drain while fixer can be reused
1. PIN
Create a program that asks the user to enter his or her PIN. The program displays a
message if the PIN is correct. Else, it displays another message if the PIN is incorrect.
Answer:
pin the answer you fakoma
Explanation:
Which media example would be best for mayas presentation
Answer: c. a diagram that explains the steps involved in photosynthesis
Explanation:
The best graphic to use would be one that explains the processes involved in the process of photosynthesis. The best option is therefore the third one as it would actually show useful information on what photosynthesis is and how plants use it to get energy.
The first option would not educate anyone on what photosynthesis is as it does not talk about the process. The second and fourth options are the same.
is monitor is a television
Answer: Can you rephrase the question
Explanation:
What is one common way to select a package name for a project?
Select one:
a.
Use a company's domain name for uniqueness
b.
Use a very short name to save typing
c.
Use a secret phrase like a password
d.
Use an encryption key for security
Answer:
Jeez idrk
Explanation:
Akkaqka
Mary recently read about a new hacking group that is using advanced tools to break into the database servers of organizations running public websites. In risk management language, what term is used to describe a hacking group? Group of answer choices Risk Threat Actor Vulnerability Standard
Answer:
Threat
Explanation:
In risk management, the hacking group would be considered a Threat. This is because a threat is anything that is able to analyze, find, and take advantage of vulnerabilities of your system. This applies regardless of the intentions of the group. In this case, the hacking group is using various tools to exploit specific existent vulnerabilities in Mary's companies database servers and would therefore classify as a Threat. In risk management, this is serious and is usually a priority that needs to be dealt with.
5.What is returned by the call go(30)?
public static String go ( int x)
{
String s = "";
for (int n = x; n > 0; n = n - 5)
S = S + x +
return s;}
Answer:
The string returned is: 303030303030
Explanation:
Given
The above method
Required
The returned string
The method returns a string that is repeated x/5 times.
Take for instance;
x = 30
The method will return a string that contains x in 30/5 (i.e. 6) times
Hence, the result of go(30) is 303030303030
You have been asked to install a WLAN for a small business. You centrally locate the WAP in a large room that contains about 15 cubicles where employees work with their mobile devices. You test connectivity from all locations and find that signal strength is good throughout the room. Several months later, you are called to troubleshoot connectivity problems at the site. You find that the large room was divided into two smaller rooms by a floor to ceiling wall with metal studs. What is the most likely reason for the connectivity problems
Answer:
interference
Explanation:
The most likely reason for the connectivity problems is interference. This interference can be caused by many factors but in this scenario the most likely factor would be the metal studs and all the metal used to create the ceiling/floor. Metal is a huge interference when it comes to wifi signals. Depending on the type of metal and the amount it can greatly diminish the signal strength or even completely prevent the signal from passing to it's destination, regardless of how close the destination device is located.
Write a loop that displays your name 10 times. 2. Write a loop that displays all the odd numbers from 1 through 49. 3. Write a loop that displays every fifth number from 0 through 100. 4. Write a code sample that uses a loop to write the numbers from 1 through 10 to a file. 5. Assume that a file named People.txt contains a list of names. Write a code sample that uses a while loop to read the file and display its contents in a ListBox control.
Answer:
Kindly check explanation
Explanation:
(1.)
n = 0
While n < 10 :
n+=1
print('fichoh')
# initiate counter n = 0 ; set condition, while n is not equal to 10 ; it print 'fichoh' and counter is increased by 1. This terminates once it reaches 10.
(2.)
for number in range(1,50):
if number%2 != 0 :
print(number)
#An odd number won't have a remainder of 0 when Divided by 2 ; so, for numbers 1 to 49 using the range function, if the number is divided by 2 and leaves a remainder other Than 0, such number is displayed
(3.)
for number in range(0,101,5):
print(number)
# Using the range function, starting from 0 to 100; it is number in the for loop is incremented by 5 and displayed.
(4.)
outfile = open('my_file.txt', 'w')
for n in range(0,11):
outfile.write(str(n))
outfile.close()
#open, 'w' creates a text file, my_text.txt and writes into it ; using the range function, numbers 0 to 10 is written into the created file.
5.)
name_file = open('People.txt', 'r')
While name_file:
out_file = name_file.readline()
if out_file = ' ' :
break
name_file.close()
names = name
#Open, 'r' ; opens and read from the file People.txt ;
#readline reads the content of the opened text file into a list out_file ; using the if ' ', the loop terminates once an empty content is read.
describe the third generation of computers
Answer:
The period of third generation was from 1965-1971. The computers of third generation used Integrated Circuits (ICs) in place of transistors. A single IC has many transistors, resistors, and capacitors along with the associated circuitry.
The IC was invented by Jack Kilby. This development made computers smaller in size, reliable, and efficient. In this generation remote processing, time-sharing, multiprogramming operating system were used. High-level languages (FORTRAN-II TO IV, COBOL, PASCAL PL/1, BASIC, ALGOL-68 etc.) were used during this generation.
Third Generation
The main features of third generation are −
IC used
More reliable in comparison to previous two generations
Smaller size
Generated less heat
Faster
Lesser maintenance
Costly
AC required
Consumed lesser electricity
Supported high-level language
Some computers of this generation were −
IBM-360 series
Honeywell-6000 series
PDP (Personal Data Processor)
IBM-370/168
TDC-316
When numbers are formatted in percent format, they are multiplied by _______ for display purposes.
1000
100
10
20
The American National Standards Institute:is the coordinating organization for the United States' national system of standardsis a professional society in the U.S. whose standards committees focus on local area network standardssets the standards that govern how much of the Internet will operateis an agency that develops federal information processing standards for the federal governmentmakes technical recommendations about global telephone rates
Answer:
is the coordinating organization for the United States' national system of standards.
Explanation:
The American National Standards Institute (ANSI) is the coordinating private non-profit organization for the United States' national system of standards with respect to services, products, processes, personnels, and systems.
Basically, the American National Standards Institute (ANSI) is saddled with the responsibility of facilitating, overseeing and coordinating voluntary standards and conformity assessment systems (activities) in the United States of America. It was established on the 14th of May, 1918 with its headquarters being situated in New York, USA.
In conclusion, the American National Standards Institute (ANSI) is typically focused on enhancing and promoting the global competitiveness of US-based businesses and general quality of life in the United States of America.
The part of an HTML document where the CSS file is linked is the..?
A) body
B) footer
C) header
D) paragraph
Answer:
C) header
Explanation:
HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.
Generally, all HTML documents are divided into two (2) main parts; body and head.
The head (header) contains information such as version of HTML, title of a page, metadata, link to custom favicons and cascaded style sheet (CSS) etc.
On the other hand, the body of a HTML document contains the contents or informations that a web page displays.
Hence, the part of an HTML document where the cascaded style sheet (CSS) file is linked is the header. A style sheet can be linked to an HTML document by three (3) main methods and these are;
I. External style.
II. Inline style.
III. Embedded (internal) style.
Which of the following is not a characteristic of a large database?
a) Optstore items in a filing cabinet.
b) Stores items in a computer such as music.
c) stores large amounts of items such as an online store.
d) can be used as a small recipe book.
Rinaldo and his game design team have
Answer:
HAVE DA baby
Explanation:LLLLLLLLLLLLLLLLLLLLLETS GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
Please help! Why is my windows homepage like this with no desktop pictures for apps? It has like a mail logo for everything. How do I fix it?
It is good for your eyes to look away from your computer screen (look at something far away) at least once an hour
Your computer system is a participant in an asymmetric cryptography system. You've crafted a message to be sent to another user. Before transmission, you hash the message and then encrypt the hash using your private key. You then attach this encrypted hash to your message as a digital signature before sending it to the other user. Which protection does the private key-signing activity of this process provide
Answer: integrity
Explanation:
Hashing refers to changing a string of characters into shorter fixed-length value which represents the original string. Hashing is faster to find items in the database.
Based on the information given, the protection that he private key-signing activity of this process provide us integrity.
Match each with the correct answer.
1. Practice 4.2
Match the CPU part to its definition.
1. ________ arithmetic logic unit. (ALU)
2. ________ bus unit.
3. ________ cache.
4. ________ control unit.
5. ________ decode unit.
6. ________ regular unit.
-options
A. Decodes instructions and data and transmits the data to other areas in an understandable format.
B. Contains many separate, smaller storage units.
C. Connects all the other major components together, accepts data, and sends data through the input and output bus sections.
D. Control of the overall operations of the CPU.
E. Performs mathematical functions on data stored in the register area.
F. Small temporary memory area that separates and stores income data and instructions.
Answer:
1. E
2. C
3. F
4. D
5. A
6. B
Explanation:
CPU: this is known as the central processing unit and it is considered to be the brain of a computer system. It is the system unit where all of the processing and logical control of a computer system takes place.
A. Decode unit: decodes instructions and data and transmits the data to other areas in an understandable format.
B. Register unit: contains many separate, smaller storage units. Modern CPUs need only a few nanoseconds to execute an instruction when all operands are in its registers.
C. Bus unit: it is used to connect all the other major components together, accepts data, and sends data through the input and output bus sections.
D. Control unit: control of the overall operations of the CPU. The component of the central processing unit (CPU) that controls the overall operation of a computer is the control unit. It comprises of circuitry that makes use of electrical signals to direct the operations of all parts of the computer system. Also, it instructs the input and output device (I/O devices) and the arithmetic logic unit how to respond to informations sent to the processor.
E. Arithmetic logic unit (ALU): performs mathematical functions on data stored in the register area.
F. Cache: small temporary memory area that separates and stores income data and instructions.
What is the benefit of an intranet?
Answer:
Espero te sirva
Explanation:
Suerte :)
statement
Looping
WAP to display
name 50 times.
Answer:
can you specify what program you're doing this in? I can do qbasic and maybe python
Why do people enjoy codehs
Answer: this is a moral question, but here is my view
Explanation:
we get to learn about things like java which i am currently learning for AP computer science A
Who did Connie Macpherson think her visitor was?
Connie Macpherson thought that her visitor was her husband,Jim!
I hope it will helps you!
Explain how the use of the internet has allowed people to achieve some
normalcy during the Current Pandemic
I don't know if this is going to help you or not because I'm only 13 but let me know if it helps people can now talk to one another more effectively because of things like zoom and it's become more efficient to work at home because we can have online meetings
does anyone know how to skip the video on e2020?
You can’t.
You can usually skip the last 10-20 seconds. If you click on the button that says next repeatedly you can skip a few seconds. That’s the most you can do though :/
Answer:
you can't
Explanation: