Answer:
Friction (drag)
Explanation:
The force resisting motion through a fluid is a type of friction, that is called drag.
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.
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.
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.
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:
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 are SmartArt graphics?
Graphics that were predesigned by Microsoft
Images that were hand-drawn and scanned in
Graphics that were downloaded from a camera
Images that were designed for different programs
Answer:
Option A
Explanation:
SmartArt graphic are nothing but the visual representation of ideas or information by using layouts that fits the context of the presentation. These smart art graphics include - sequence diagram, venn diagram, organizational chart etc. These smart art are part of MS office programs i.e MS Word, MS Powerpoint, MS excel etc.
Hence, option A is correct
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
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.
What tab appears that allows for charts to be formatted when a chart is selected?
Which HTML tag would you use to create a list like the one below? red blue green ol ul unorderlist orderlist
Answer:
Unordered list
Explanation:
Given
The html tag needed to create the given list
The list is not properly presented; however, the list in a properly presented question is as follows:
redbluegreenThe code to generate the above output is:
<ul>
<li>red</li>
<li>blue</li>
<li>green</li>
</ul>
When a list is generated using the <ul> ... </ul> tag, such list is an unordered list.
Answer:
ul
Explanation:
The < ul > tag is used to create an unordered list.
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
Help please!!!!! Drivers ed
Answer:
Away from the curb
Explanation:
by turning your wheels away from the curb if your breaks fail your car will roll back into the curb instead of into traffic.
Climax Medical Technology, a fast-growing global research firm, has accumulated so much client information that conventional database management systems cannot handle its customers' needs. Therefore, Climax purchased very sophisticated analysis software and supercomputing-level hardware. Climax Medical Technology is tapping the power of Group of answer choices mega IT. new age computing. super data. cyber-age databases. Big Data.
Answer:
big data.
Explanation:
It is correct to say that by implementing very sophisticated analytics software and supercomputing level hardware, Climax Medical Technology is harnessing the power of big data.
This is a tool capable of storing a large volume of data and making them available for organizational management in a structured, strategic and informative way, which helps an organization to achieve a competitive advantage in the market.
Big Data makes structured and unstructured data accessible to a company, so that they can use them intelligently for business solutions and to aid in the management and data collection process, helping to create more value and continuous improvement in an organization.
A dictionary is also known as
Answer:
wordbook, lexicon or vocabulary
Explanation:
learned, dunno what lesson ur doing tho
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)
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
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.
the computer that communicate with each other are called ______please ask the answer in 15 minutes after 1 p.m.
The computers that communicate with each other are called [tex]\sf\purple{transmission \:control\: protocol\: (TCP)}[/tex].
[tex]\large\mathfrak{{\pmb{\underline{\orange{Happy\:learning }}{\orange{!}}}}}[/tex]
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?
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
Which of the following is recalling the main points of a text?
Answer:
Option A< Rote learning
Explanation:
Options for given question
a) Rote learning
b) memorizing
c) Adapting
d) Seeming
Recalling of facts is associated with rote learning in which the education is de-emphasized in the form of science
Hence, option A is correct
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
Rinaldo and his game design team have
Answer:
HAVE DA baby
Explanation:LLLLLLLLLLLLLLLLLLLLLETS GOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
it is necessary to interpret manufacture's specification before using any processing equipment in order to?
Answer:
a. have an accurate and safe operation of the equipment.
Explanation:
The main reason for this is to have an accurate and safe operation of th equipment. Most devices are made differently and the manufacturers' job is to make sure that the equipment works as intended and is safe for the user. The cannot control how the user uses the equipment and therefore, create the specifications so that the user will read them and understand how to properly operate the equipment so that neither the user nor the equipment gets damaged.
39 POINTS !
Okay so basically I have a 60 percent keyboard, and it’s LED perfect in shape jkeyboard okay.
I try connecting it to my ps4 and it’s detected but it won’t light up nor will any of the keys respond.
I have tried resetting my ps4
Iv’e tried unplugging and replacing in
I’ve tried holding FN and N to disable the n rollkey
I be tried plugging it into a pc
But nothing wors does anyone know how to fix it?
Answer:
Contact a service center electronics managementAnswer:
take it back to the store with your the receipt and get a new one
Dan is a nature photographer who wants to share his pictures on his blog site. He wants to retain the high quality of the pictures, regardless of file size. Which file format is best suited for this purpose?
Answer:
JPEG or jpg
Explanation:
JPEG maintains almost 100% quality and reduces file size to up to 90 or 100% of the original
Outline the dangers arising as a result of using computers
Answer:
Visual impairment
Physical Health problem
Explanation:
The benefits of computers are so numerous a d has been an essential business and educational tool every organization must possess for one purpose or the other. Such is how immense its importance is. However, the computer also comes with it's own risk, which may include :
Visual impairment is a major problem most computer users face or will likely encounter in the future due to prolonged exposure of the eyes to the light emanating from the screen. This visual challenge is populary called the. Computer Vision Syndrome.
Similarly, related health related issues affecting the physical body such as the back, hip, neck pains which result from postural position when using the computer.
Who did Connie Macpherson think her visitor was?
Connie Macpherson thought that her visitor was her husband,Jim!
I hope it will helps you!
we use _____command to get data from the user? (python)
Answer:
INPUT
Explanation:
EXAMPLE PYTHON CODE
_______________________________________________________
INPUT CODE:
_______________________________________________________
foo = input('foo: ')#Have some text printed before the input field
bar = foo
print(bar)
_______________________________________________________
OUTPUT CODE:
_______________________________________________________
foo: Hello World!
Hello World!
>>> bar
'Hello World!'
>>>foo
'Hello World!'
When numbers are formatted in percent format, they are multiplied by _______ for display purposes.
1000
100
10
20