Answer:
I'm pretty sure it's a cable. A lan cable specifically.
Explanation:
Calculate and print the average mark achieved for a test for a group of four students.
Answer:
To calculate the average, add the test scores together and divide the sum (483) by six.
Explanation:
On which of the following space objects would scientists most likely expect to find life?
A
a planet with no solid surface
B
a planet with an ocean on its surface
C
a large planet very far away from the Sun
D
a small, rocky planet with no atmosphere
Answer:
B ocean planet
Explanation:
one of the criteria astronomers set to determine if a planet is habitable is the planet having liquid water on its surface.
which of the following best describes ""compilation"" in reference to computer science?
Answer:
Compilation is a computer's process of turning high-level programming languages into easily-processable computer languages.
Explanation:
One example is of HTML. If you type
<div class="col card rounded-0 m-1 text-muted tooltipster" title="Primary #FF6C6C" style="background-color: #FF6C6C"></div>
This will create a light-red block that will show it's hex code when a user hovers their cursor over that block. However for this to work the computer must take that line of code and squish it down and then stretch it out until it's just 1's and 0's so it's easier for the computer to "digest".
Discuss the advantages of using analogue multi-tester or digital multi-tester over the other.
Answer:
Advantages of Digital Multimeters:
1)They are more accurate than analog multimeters.
2)They reduce reading and interpolation errors.
3)The 'auto-polarity' function can prevent problems from connecting the meter to a test circuit with the wrong polarity.
4)Parallax errors are eliminated.
I hope this helps.
Select the correct answer.
Which of these practices should you avoid in navigation design?
O A. linking the organization logo to the home page
O B. providing users with different types of navigation elements
OC. providing users with as many choices as space allows
OD. using metaphor to represent real-life objects
Answer:
C
Explanation:
Coming from a purely practical point of view, providing users with as many choices as space allows is a bad idea. You do not want to overwhelm a navigation bar with too many options, especially not "as many choices as space allows". You should keep them short and if need be, categorised.
Hope this helps!
recent top-level domains include _____. select all that apply.
Answer:
.aaro, .mobi
Explanation: these domains are now available in the root zone. Similar to .com and .gov
What is system Analysis
Answer:
Systems analysis is the process by which an individual (s) studies a system such that an information system can be analyzed, modeled, and a logical alternative can be chosen. Systems analysis projects are initiated for three reasons: problems, opportunities, and directives.
Explanation:
i did this Q just check it to see if its right :)
Which one is the primary storage of a computer?
Answer:
Usb drive
Explanation:
An object on the computer use to store data, information and settings is known as?
Answer:
Hard disk maybe.......
Susan is excited to learn various safe ways to browse the Internet. She is looking for suggestions that would help her. Which are the valid suggestions for Susan? The Internet is a medium used by numerous individuals. As a user of it, the responsibility of privacy and security rests with the user. Susan should be aware of the potential risks associated with improper use of the Internet. She should hence share her Social Security number whenever asked for it. She should be careful when using third-party applications and download applications from trusted and secure sites only. Susan should also be careful while using social networking websites. Susan should update her location information whenever possible. She should not click on any unknown links and use secure browsing and strong passwords. An example of a strong password is susanishere.
Answer:
a
Explanation:
According to which virtue do you need to secure information by limiting computer access to authorized personnel only?
Answer:
Confidentiality is a virtue which states that you need to secure information by limiting computer access to authorized personnel only.
1. The correct definition of ergonomics is: (a) The correct way to position your feet when in front of electronic equipment. (b) How to use a computer to view safety software. O (c) The creation and adjustment of products and systems, so that they are comfortable and safe for day to day use. (d) The creation of products and systems that will not be so comfortable so as to cause the user to fall asleep while using it.
Answer:
I'd assume it's C.
Explanation:
hope this helps!
What is a special kind of block that can only give two responses?
A.
forever block
B.
conditional block
C.
loop block
D.
Boolean value
Answer:
A. forever block
Explanation:
u dont need a explaination
how do i stop my computer from automatically connecting to a wireless network
Answer:
:p
Explanation:
Should be in wireless network settings.
or
If you have a home wifi or network, lock into that (via connecting and clicking connect automatically or clicking stay connected- depending on the network band and type as well as your computer model and make)
Hope this helps :P
Have a nice day (or night)
What methods do you use when researching a complicated or difficult subject? What tools are most useful to narrowing down and validating your research? Explain your answers.
This feature allows you to adjust your view to see the lower and upper part of a document
Scroll bar i hope this helps :D
Answer: scroll bar
Explanation: It allows you to change your view from side to side and up and down
:D
en que año ocurrio otra tormenta solar que fue tres veces menos poderosa que la de 1859
Answer:
not sure but 2003
Explanation:
what is written on the three-line heading on a work sheet?
Answer:
The name of the company, the name of the report, the date of the report.
please brainless i need it to level up
Explanation:
The correct response is - The corporate name, the report's title, and its publication date.
What is a Report?A report is a written document that organizes information for a particular audience and use. Complete reports are nearly usually supplied in the form of written papers, despite the fact that summaries of reports may be given verbally.
a description of an occurrence, circumstance, or the like, generally the outcome of observation, research, etc.: a conference report on peace; a summary of the patient's health. a proclamation or notice. a statement or news item that has been widely reported; a rumor; or gossip.
Report writing is a formal way of writing in-depth on a subject. Reports always have an official tone. The target audience is the segment on which you should concentrate. Reporting on events that occurred in school.
To read more about Report, refer to the - https://brainly.com/question/4640527
#SPJ6
2. YOU CANNOT IGNORE A SUGGESTION GIVEN BY WORD TO SAY YOU SHOULD CORRECT A SPELLING ERROR. *
True
False
Answer:
False
Explanation:
If you spell a word that Microsoft Word doesn't recognize, you can always click the little opened book icon (the spelling check book will appear with either an x or a check mark) at the bottom left hand-corner, and you have the option to ignore the misspelled word.
Hope this helped :)
If it didn't, then I'm sorry
being able to download a chapter of a new book before buying it or trying out a software option for a month before purchasing are examples of which aspect of the 4e framework?
Answer:
Experience the product
Explanation:
Being able to download a chapter of a new book before purchasing it is an example of how consumers can experience the product.
Which 2 tools are useful to remote employees and coworkers.
Can someone help me code the statments in the picture?
Answer:
(In this section I will put the code with no comments and I'll put the code plus comments in the explanation below :)
public class Main
{
public static void main(String[] args)
{
double cost = ParkingSpot.getPrice(4);
System.out.println(cost);
}
}
//End OF Main class
//ParkingSpot class
public class ParkingSpot
{
public static double getPrice(int hours)
{
double cost = 4.25 * hours;
if (cost < 7.00){
cost = 7.00;
}
if (hours > 3){
cost = cost * 0.25;
}
return cost;
}
}
Explanation:
(Here I will add the comments so you better understand what is written and whats going on :)
public class Main
{
public static void main(String[] args)
{
/* the code should be written in the ParkingSpot
* class. You may use this main method to call
* methods to test your code
*/
/*We send an integer representing x amount of hours, also calling the
method and displaying the result
*/
double cost = ParkingSpot.getPrice(4);
System.out.println(cost);
}
}
//End OF Main class
//ParkingSpot class
public class ParkingSpot
{
/* Finish the static class getPrice. The parameter hours indicates the time parked.
*/
public static double getPrice(int hours)
{
//Here we set the rates
/*
It costs 4.25 per hour to park in the ParkingSpot
If the total cost come in at less than 7.oo, the price should
be adjusted UP to 7.00, the minimum Price Allowed
If the number of hours is more than three hours,
a 25% discount should be appllied
*/
double cost = 4.25 * hours;
//If the cost is less than 7.00 we set the price up to 7.00
if (cost < 7.00){
cost = 7.00;
}
/*If hours is more than 3 (meaning 4 or it would have said 3 and/or more),
a 25% discount will be appllied*/
if (hours > 3){
cost = cost * 0.25;
}
//Return cost of parking for x amount of hours
return cost;
}
}
What is a problem (worldwide or personal) that was solved by social media?
I need to write about some sort of problem that what fixed by the use of social media
how to play powerpoint slides automatically without clicking 2021?
Answer:
Turn on autoplay it is at the bottom of the screen
Explanation: Press the 3 dots at the bottom of the screen. Then click autuplay.
Also set the amount of seconds.
a.1111+1011. b. 10111+11111 c. 1111*1011 d. 1110*1101 perform the binary calculations.
Answer:
a.1111+1011=2,122
b.1011+1111=2,221
c.1111*1011=1111.1011
d.1110*1101=1011.1111
Explanation:
I think that the answer because this binary calculations it is a perform the solving the solution to the equation
In the lesson, you were introduced to the difference between data, information, and knowledge. Think of an example in your life where a number could be described as data, information, and knowledge.
A file won’t open on your friend’s computer, which leads to the inevitable question: “Why do there even need to be different file types, anyway?” How would you respond?
Think about the last business that you purchased a product or a service from. What three types of software might they need? Why would they need them?
If virtual reality becomes commonly used, what are some problems and concerns that might arise?
A family member who hasn’t worked with computers before has decided to change jobs. You’ve been asked to explain some of the basics. You begin by explaining the basic idea of word processing software, spreadsheets, databases, and presentation software. You sense that the following question is coming: “Why so many different things? Why can’t there just be one software that you could use for everything?” How would you answer?
Answer:
subject
Computers and Technology, 26.08.2021 15:30 laiba012305
A family member who hasn’t worked with computers before has decided to change jobs. You’ve been asked to explain some of the basics. You begin by explaining the basic idea of word processing software, spreadsheets, databases, and presentation software. You sense that the following question is coming: “Why so many different things? Why can’t there just be one software that you could use for everything?” How would you answer? {This is not for a quiz, test, exam so dont report me. I would ask my dad but he's at work.}
Explanation:
Answer:
information technology (it) pertains to the hardware, software, and data components. an information system (is) is an assembly of data, procedures, and people that produces information.Explanation:
WHO IS BEST FREE FIRE PLAYER IN WORLD?
Answer:
SULTAN PROSLOIs known to be the best free fire player.
list out the input and output device .
Computer - Input Devices
Keyboard.
Mouse.
Joy Stick.
Light pen.
Track Ball.
Scanner.
Graphic Tablet.
Microphone.
Computer - Output Devices
Monitor.
Printer.
Headphones.
Computer Speakers.
Projector.
GPS.
Sound Card.
Video Card.
The terms mainframe computer and supercomputer are interchangeable: both refer to the largest, most powerfut computers. O True O False
Answer:
False
Explanation:
A mainframe computer is way more commonly available than a supercomputer as it is not as powerful/costly.
The statement "The terms mainframe computer and supercomputer are interchangeable: both refer to the largest, most powerfut computers." is false.
Is the statement true or false?The terms "mainframe computer" and "supercomputer" are not interchangeable, as they refer to different types of computers with distinct purposes, architectures, and applications.
Mainframe Computer: Mainframes are large, powerful, and highly reliable computers designed to handle massive amounts of data processing and perform complex transactions. They have been traditionally used in organizations and industries that require high-speed processing, such as financial institutions, government agencies, and large corporations. Mainframes are known for their robustness, scalability, and ability to handle multiple tasks simultaneously. They are typically used for tasks like processing large databases, running critical business applications, and supporting many users concurrently.
Supercomputer: Supercomputers, on the other hand, are the most powerful computers in terms of processing speed and performance. They are specifically designed to solve extremely complex problems and perform intensive numerical calculations at very high speeds. Supercomputers are commonly used in scientific research, weather forecasting, simulations, and other computationally demanding tasks. They are optimized for parallel processing, which allows them to divide complex tasks into smaller parts and process them simultaneously.
While both mainframe computers and supercomputers are powerful machines, they serve different purposes. Mainframes are geared towards transaction processing and business applications in large organizations, whereas supercomputers are focused on scientific research and high-performance computing tasks. Their architectures, hardware, and software configurations are tailored to their specific functions, making them distinct types of computers in the world of advanced computing.
Learn more about supercomputers:
https://brainly.com/question/27291413
#SPJ3
which item is developed last in the cyclical design process
The item that is developed last in the cyclical design process is known to be Prototype.
What is the last step in the design process?Designers which can be known to be evaluators are said to test the complete product using the best solutions known to be in the Prototype stage.
Note that The item that is developed last in the cyclical design process is known to be Prototype.
Learn more about design process from
https://brainly.com/question/10039920
#SPJ1