printer is softcopy output device ​

Answers

Answer 1

Answer:

ys printer is soft copy

Explanation:

output device


Related Questions

Which tags are used to display the body/content of a webpage

Answers

Answer:

The <body> element contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

<p>

<img>

<h1>

<h2>

<div>

<table>

Description. The HTML tag defines the main content of the HTML document or the section of the HTML document that will be directly visible on your web page.

Which of the following statements holds true for the term plug-in? Group of answer choices It refers to a program (typically a marketing effort) that requires customer consent. It refers to a program that enrolls all customers by default, but that allows consumers to discontinue participation if they want to. It refers to the generation of bogus clicks, either for financial gain or to attack rivals by draining their online ad budget. It refers to a small computer program that extends the feature set or capabilities of another application. It refers to recruiting a network of users with the goal of spreading IP addresses across several systems.

Answers

Answer:

it refers to the generation of bogus clicks, either for financial gain or to attack rivals by draining their online ad budget

Explanation:

A plugin can be regarded as piece of software which serve as an add-on to a web browser, it provides the browser with additional functionality. It's functionality give room to a web browser so that the web can display additional content that was not designed to display originally. It should be noted that plug-in refers to the generation of bogus clicks, either for financial gain or to attack rivals by draining their online ad budget

The average numbers of shares a piece of content receives is known as its:

Answers

Answer:

Amplification.

Explanation:

Social media publishing can be defined as a service that avails end users the ability to create or upload web contents in either textual, audio or video format in order to make them appealing to a target audience.

Thus, these web contents are generally accessed by end users from time to time through the use of various network-based devices. As users access these contents, they're presented with the option of sharing a particular content with several other people a number of times without any form of limitation.

Hence, the average numbers of shares a piece of content receives is known as its amplification. The higher the average numbers of shares a particular content receives, the higher the number of traffic it generates for its publisher.

Is computing gcse easy or hard

Answers

Answer:

my friend that took it said that there was a lot of complex theory involved- i was initially supposed to take it, but my blocks didn't align so i had to take geography instead

honestly, i would say it was one of the best decisions I've made, since i see lots of computing students completely confused by what they're doing.

To be honest i have never taken a GCSE but give your self time to study like any other  test and stress about it.

hope this helped

-scav

How can learning opportunities for AI be extended to all

Answers

Answer:

Learning opportunities for AI can be extended to all through the inclussion of courses and different teaching methods related to Artificial Intelligence, new technologies, computer science, programming and, in short, everything related to the digital world, in the educational plans at the national level. This is so because artificial intelligence and computer systems are the basis for the development of the new tools jobs of tomorrow. Thus, education in these subjects is essential so that citizens can enter the labor market once they acquire the necessary age, having the knowledge to do so in a proper way.

Which statement best describes the problem statement below?

Vision: We want to decrease errors in our billings to clients.

Issue: Clients complain that they receive multiple bills for the same month. We have one software that keeps track of services made to clients, another software that keeps track of the charges of those services, and another software that bills the clients.

Method: Print out services and charges, and enter these values into a billing software.
This problem statement is a clear, well-defined problem statement.
This problem statement does not clearly define the issues.
This problem statement will help stakeholders participate in addressing the problem.
This problem statement does not provide a useful statement of method.

Answers

Answer:

B

Explanation:

This problem statement does not clearly define the issues.

Answer:

B

Explanation:

What is a variable in programming?
1) A symbol or set of characters in a programming statement whose value can
be changed
2) A symbol in a mathematical equation
3) The characters that make up a string
4) The output when code is printed

Answers

A symbol or set of characters in a programming statement whose value can be changed

Select the correct answer.
What type of media is/are only used for one-time backups?
A.
internal hard disk
B.
external hard disk
C.
DVD, optical media, and removable media
D.
remote shared folder
E.
tape

Answers

Answer:

E

Explanation:

Answer:

It's D I promise

Explanation:

i did it! D is right

Write the output of the following program:

CLS

a=20

FOR x = 1 to a

IF x MOD 2 < > 0 THEN

S S+x

END IF

NEXT X

PRINT S

END​

Answers

Answer:

Expression A

Explanation:

In this Pseudocode, the output would be 100. This is because the code is looping from 1 to 20 and adding together all of the odd numbers between 1 and 20. Since it is checking to make sure that the remainder of each number is not equal to 0 which would indicate an odd number, and if it is odd then it adds it to the variable S. Therefore, the odd numbers between 1 and 20 are the following...

1 + 3 + 5 + 7 + 9 + 11 + 13 + 15 + 17 + 19 = 100

Employees are one of the main contributors to cybersecurity breaches because of _____? Select 3 options.

software bugs

malware

inattention

negligence

lack of knowledge

Answers

Answer: inattention, lack of knowledge, and negligence.

Explanation: employees are often the cause of workplace incidents because they may be unknowledgeable about security protocols, negligent, or simply make a mistake.

Answer: lack of knowledge , inattention, negligence

Explanation: Edge 2023

A goal should be___.

A difficult to achieve

B an undefined dream

C simple

D realistic

Answers

Answer:

D

Explanation:

so its D you should always make a goal realistic to you dont over go overboard and bite off to much to chew but push yourself. lastly make it fun

Hope I helped

-scav

You just learned how search, wikis, commerce, and news have changed as a result of technology. Pick a search engine, wiki, online business, or news outlet, and write a response that: Describes how this innovation works Describes how this innovation inputs, transforms, and outputs data Lists one existing or potential benefit (to society, the economy, a group of people, culture) of this innovation Lists one existing or potential harm (to society, the economy, a group of people, culture) of this innovation Compares the existing technology to tools that were previously used to accomplish the same task

Answers

Answer:

Search Engines

Explanation:

Search Engines are incredibly innovative technology. They allow us to search for absolutely anything and gives us all the information that exists surrounding that topic in a matter of seconds. This has helped every single individual with access to a search engine regardless of the industry or reason of use. Even though this access to instant knowledge has endless benefits it can also cause harm. Since anyone's information can be displayed for anyone to see and easily found through a search engine. It ultimately falls down to what the user's intentions are with the data available, which can sometimes be malicious. Previously the only way to access information was through books at a library which could take days, weeks, or even months to find the information that you initially needed. Search engines completely changed this.

What is a ternary operator? Explain with the help of an example.
The ternary operator deals with three operands. It is also known as a conditional operator. In this operator, the value of the variable depends on the logical expression.
Example:
int a = 5:
int b = 3;
int max = (a > b)? a : b;​

Answers

Answer:

A ternary operator, also called a conditional operator, is a special kind of operator used in some programming languages as a shorter way of writing an if..else block. It is denoted by a question mark and then a colon (? : ). It takes 3 operands:

i. A boolean expression which would evaluate to a true or a false.

ii. A first value that will be assigned if the boolean expression gives a true.

iii. A second value that will be assigned if the boolean expression gives a false.

The general format is:

variable = boolean expression ? first_value : second_value;

For example:

A ternary expression can be written as;

String f = (3 > 5) ? "yes" : "no";

In the above expression;

The boolean expression is 3 > 5

The value to be assigned, to f, if the boolean expression is true is "yes"

The value to be assigned, to f, if the boolean expression is false is "no"

So in this case, since (3 > 5) evaluates to false, "no" will be assigned to f.

Therefore, the above expression will give the same result as;

String f = "no"

Another example:

=================

int a = 5:

int b = 3;

int max = (a > b)? a : b;​

==================

In the above code snippet,

Since a > b i.e 5 > 3, the first value a (which is equal to 5) will be assigned to max.

Therefore, int max = 5.

The value of max is 5

PS:

These examples and explanations are given using Java. Similar scenario, maybe different syntax, will be obtainable in other programming languages.

100 POINTS
When the Find and Replace dialog box is open to the Replace tab and you want to replace an underlined phrase, how can you access the dialog box that lets you tell Word to find the underlined instances of the phrase?
Select the phrase in the “Find what” field, then click More, then click Format, and then click Font.
Select the phrase in the main document, then click Spelling and Grammar, and then click AutoCorrect.
Click the “Replace with” field, then click Options, then click Special, and then click Symbols.
Click the Go To tab, then click Styles, and then click Find Styles.

Answers

Answer:

Select the phrase in the “Find what” field, then click More, then click Format, and then click Font.

Explanation:

Just the right answer

waluigi for smash who agrees ​

Answers

Answer:

I do

Explanation:

Well, if i didnt, i wouldn't be part of the internet, now would I?

(can i get brainliest? pls?)

totally i agree-even tho i dont really play anymore

Claudette is shocked to discover that her company's data has been stolen, and their Web site shut down, by a malicious ex-employee. She had thought their security was airtight! Two recent changes they made were migrating their database to a private, on-premises cloud and installing IoT devices that communicate with the database continually. What most likely occurred

Answers

Answer:

The answer is "Ex-employee hack IoT firms from Claudette to access them".

Explanation:

Computer system hacking is only a breach between both the access as well as the stealing or misuse of critical information between both computer software from the target system. In this sense, a malicious attacker uses a computer device or even a network to access or illicitly exploit information.

Which computer specifications would be best suited for the following scenario? The marketing department wants to buy two new computers. One computer will be used for their graphic artist to create graphics and videos for the Web, and a second one for the secretary to keep track of billing and hours. What would you advise the department to purchase? Two computers with identical specifications A computer with a high-capacity CMOS RAM chip for the graphic artist and a computer with multiple sockets for the secretary A computer with a large power supply for the graphic artist and a computer with multiple internal buses for the secretary A computer with a multicore, high-speed processor for the graphic artist and a computer with a slower processor for the secretary

Answers

Answer:

A computer with a large power supply for the graphic artist and a computer with multiple internal buses for the secretary.

Write a program that repeatedly asks the user to type in an integer until they input a multiple of 7

Answers

Answer:

 See the code in the explanation below

Explanation:

For this excersie we are going to be using C++, if you want me to produce the code in another language do let me know

// Online C++ compiler to run C++ program online

#include <iostream>

using namespace std;

int main()

{

int Number;

   do

{

 cout <<"Enter a  multiple of seven: ";

 cin >> Number;

 

 if(Number%7 == 0 ){

     cout<<"correct!!! the number is a multiple of seven";

 

 }

} while(Number%7 != 0);

}

   

   

 

   

   

   

   

       


Calvin needs to design a simple yet professional interface for his users. Which option should he implement?

Answers

Answer:

switchboard

Explanation:

The option that he should implement would be a switchboard interface design. These design structures for graphic user interfaces use a single main page, large icons/buttons, a fixed navigation menu, and all the necessary functionality right in front of the user. This design is made with simplicity in mind in order to make it as easy as possible for a new user to pick up and efficiently and intuitively navigate the user interface. Therefore, since Calvin needs a simple yet professional design, this would be the best implementation.

Answer:

switchboards is the correct answer

Explanation:

just did the test

How many values can a binary digit store?
A
A binary digit can store two values at a time.

B
A binary digit can store ten values at a time.

C
A binary digit can store one of two values (0 or 1).

D
A binary digit can store one of ten values (0-9).

Answers

Answer:

A.) A binary digit can store two values at one time

Explanation:

A single bit can only represent two different values. That's may not be very much, but that is still enough to represent any two-valued state.

You want to use a computer to make a painting of your backyard to go along with a story you wrote. Which software would be appropriate? Choose all that apply.
Adobe Photoshop
LibreOffice Calc
LibreOffice Draw
Internet Explorer
GIMP

the answer is A, C, E

Answers

Answer:

A, C, and E

Explanation:

I did the math

Write your first impression of the Lamborghini Miura.

Answers

Answer:

Nice car, You'd probably get a lot of looks driving it

Explanation:

Answer:

It's looks like a pancake flatted Porsche

Explanation:

What are your thoughts about this re-designed Logo? Is it good? Or is poorly designed? Explain your answer below.

Answers

Answer:

It is good but the back is not good enough.

PLEASE HELP WITH MY COMPUTER
this thing is popped up and it's annoying. I'm on a HP laptop how do i get rid of it?​

Answers

Answer:

Escape or turn it off then back on??

Explanation:

I'm not very sure what is going on but idfk

Description
How many minutes of video would fill an iPhone with 8 GB of
storage, where 3 GB is already used.
One minute of video takes 150 MB of storage.
One GB (gigabytes) is about 1000 MB (megabytes).
Hint: Do all of your calculations in megabytes (MB).

Answers

33.33 minutes of video

3 GB already used which means you have 5 GB left, 5GB is the same as 5000 MB

So 5000 MB divided by 150 MB is 33.33 minutes of video that can be stored on the iPhone

HELP PLS 10 MINUTES LEFT!! In this unit you have learned about ways to be faster at word processing. In 3 to 4 sentences, describe one or two skills
you have learned that will make you faster at word processing.​

Answers

Answer:

The answer is below

Explanation:

There are many skills I have learned which have made me faster at word processing, some of which are:

1. Copying, Cutting, and Pasting: in word processing, one can easily copy or cut words, sentences, paragraphs within a word document and pasted them somewhere else, either inside the same word document or another word documents entirely. This made the work faster as I wouldn't need to re-type all over again. To do this, I can use either the in design key combinations like Ctrl+C for copying, Ctrl+X for Cutting, Ctrl+P for pasting.

2. Spelling and Grammar Check: while the word processing app (Microsoft word) has a way of notifying users of errors concerning grammar and spelling, instead of rewriting or looking for the correct spelling or grammar, I can quickly use the inbuilt function in the Microsoft word to check and make the correction. To do this, I can right-click the mouse on the error, and select the appropriate spelling or grammar

Fred is explaining to their client, Foodoko, that the user journey is a complex one when it comes to creating a conversion. Which phases of the user journey does what's described as the "messy middle" include?

Answers

Answer:

The answer is "The exploration and evaluation phase".

Explanation:

The expedition is a trip or an exploration. The deep-sea trip to find new sea lives is an instance of a journey of discovery. That's the search or travel via a site to find information and resources; exploring takes place throughout all non-sessile animal species, including humans. This is also an exploration.

The assessment design is the period of the marketing funnel wherein clients decide not whether they intend to buy that product. This is the time in ABM advertising whenever the sales department works closely with decision-makers to guide & close a sales process.

Un comerciante de régimen código para comprar mercancías gravadas a un comerciante de régimen simplificado precio de venta al público 1.800.000 incluido el IVA tarifa general (19%)

Answers

Answer:

El valor sin impuestos de las mercancías era de $1.512.605.

Explanation:

Dado que un comerciante de régimen código para comprar mercancías gravadas a un comerciante de régimen simplificado pagó un precio de venta al público 1.800.000 incluido el IVA tarifa general (19%), para determinar el valor de las mercancías sin el impuesto incluido se debe realizar el siguiente cálculo:

1.19 = 1.800.000

1 = X

1.800.000 / 1.19 = X

1.512.605 = X

Por lo tanto, el valor sin impuestos de las mercancías era de $1.512.605.

Can you move it like this? I can shake it like that
Can you move it like this? I can shake it like that
Can you move it like this? I can shake it like that
C'mon ladies rock the party Shake your body everybody

C'mon everybody
Let's move it all night
Gonna take you back to the old school
Can u feel the vibe
Just dance to the rhythm and let me
See ya wind your waistline
Jump back and the do the twist
And the electric slide yeah
(Move it man)
Can you move it like this? I can shake it like that
Can you move it like this? I can shake it like that
Can you move it like this? I can shake it like that
C'mon fellas rock the party Shake your body everybody

Lets get funky do the? sound
And say here we get on the floor and do it like this

Can anyone do the Double Bump?
Like back in the day
We thought we'd bring it to ya
Baha Men keep it groovin' yeah yeah
Well I can see everybody on the floor
Doing the running man
Do the mash potato
Or walk the Philly Dog if you can
Yeah
(Move it man)
Can you move it like this? I can shake it like that
Can you move it like this? I can shake it like that
Can you move it like this? I can shake it like that
C'mon y'all let's rock the party Shake your body everybody

Remember back in the day
When we used to dance the Boogaloo
Everybody used to rock the beat
Solid Gold kickin' up too
And everybody rock together with the DJ when he plays
Smooth music is kickin' clippin'
We rush back and we keep dippin'

C'mon baby let's rock let's rock
We gonna get up on the dance floor and do the Pee wee Herman
So shake it up
And do the bus stop
And do the Robot
And baby do the rock yeah
(Move it man)

Can you move it like this? LA! I can shake it right back
Atlanta!
Can you move it like this? New York! I can shake it right back
Whazzup!
Can you move it like this? Seattle! I can shake it right back
Dallas and Houston!
C'mon y'all let's rock the party Shake your body everybody

Answers

Answer:

okkkkkkkkkkkkk???


T.L.E

LEARNING ACTIVITY: TRUE OR FALSE
Direction: Tell whether the following sentences are acceptable secting
position while using the computer. Write frue if yes or false if not.
1. Using the preferred keying posture, depending on the style of
keying used
2. The head and neck are in a forward facing and midine
position
3. Having knees at a height higher with the hips
4. Sitting with the body close to the desk
5. Having feet flat on the floor or footrest​

Answers

Having the head and neck forward facing is true

Other Questions
Cyclohexane (C6H12) is one of the components of crude oil. Which shows thebalanced combustion reaction for cyclohexane? Define the theory of plate tectonics. If you can help me with these 4 questions I'll give brainliest :)) More Than Just DesertsThe landscape of the Middle East has a great deal of variety. Movies make it seem like it is all desert, but this isn't accurate. Rivers allowing for productive agriculture were the key factor in the first development of cities in ancient times. Mountain ranges provided natural barriers to invaders.The fertile soil of the Middle East led to the development of early civilizations. The area that stretches from the Tigris and Euphrates rivers northwest to the Mediterranean coast and then down to the Nile River is often referred to as the Fertile Crescent. Here people farmed, domesticated plants and animals, built cities, and prospered. The lands between the Tigris and Euphrates was called Mesopotamia in ancient times. This was home to the Sumerians 6,000 years ago, the world's first city-based culture. The Egyptians, rivals of the Sumerians, lived along the Nile River and had rich harvests because the river's annual flooding fertilized the soil. They exported wheat and barley all over the region. Their cities were protected from invaders by vast deserts. Soon, the Hittite civilization in Anatolia (modern Turkey) and the seagoing Phoenicians in the eastern Mediterranean (modern Israel, Lebanon, Palestine) were competing with the Egyptians and the Mesopotamians for trade and power.Mountain ranges in the Middle East helped isolate various peoples from each other. The Taurus Mountains of southern Turkey separated Anatolia, also known as Asia Minor, from parts of Asia. This kept the Hittites and Mesopotamians apart, while the Zagros Mountains protected Mesopotamia from the invaders to the east.Mountains have also provided refuge for oppressed minorities, such as the Alawites in Syria; the Christians in Lebanon; and the Kurds in Turkey, Syria, Iran, and Iraq. Essay claim: Laws requiring people to show photo identification in order to vote decrease voter participation. 3) What techniques does the author of this passage use to create a senseof mystery and suspense?A)The author uses a flashback from the narrator's youthto make the reader uneasy.B)The author's use of a first person perspective createsa sense of unease and discomfort.C)The author's use of dialogue and characterizationimply that something evil is soon to occur.D)The author's use of dark and forbidding imagery and.detailed description create a tone of a gloomy future. PLZZZZZZZ HELP MENO LINKS OR I WILL REPORT THE ANSWERWILL GIVE BRAINLIESTLOOK AT ALL OF THE PICTURES Mention two similarities between solid and gas. A store manager claims that 60% of shoppers who enter her store make a purchase. To investigate this claim, she selects a random sample of 40 customers and finds that 40% of them make a purchase. She wants to know if the data provide convincing evidence that the true proportion of all customers who enter her store that will make a purchase differs from 60%. The P-value of this test is 0.0098. Interpret the P-value.Assuming the true population proportion of shoppers who will make a purchase is 0.60, the probability of obtaining a sample statistic of 0.40 in a random sample of 40 customers is 0.0098.Assuming the true population proportion of shoppers who will make a purchase differs from 0.60, the probability of obtaining a sample statistic of 0.40 in a random sample of 40 customers is 0.0098.Assuming the true population proportion of shoppers who will make a purchase is 0.60, the probability of obtaining a sample statistic as extreme as or more extreme than 0.40 in a random sample of 40 customers is 0.0098.Assuming the true population proportion of shoppers who will make a purchase is different from 0.60, the probability of obtaining a sample statistic as extreme as or more extreme than 0.40 in a random sample of 40 customers is 0.0098. Sujet : prenez vous que largent puisse donner de lassurance . raliser le bonheur et rendre la personne heureuse .crivez un texte argumentatif o vous justifiez votre point de vue Choose the correct possessive adjective to fill in the blank. Watch agreement of gender and number.-Mi hermana y yo vamos a hacer una fiesta este viernes. Quieres asistir a nuestra fiesta?-S, me encantara asistir a ______ fiesta.A.) vuestraB.) nuestra C.) vuestro What is one goal of fine art photography?A. to emphasize elements from the everyday world to offer a new perspectiveB. to deemphasize elements from the everyday world to portray them exactly as they areC. to ensure that the lightest areas of the image appear darkestD. to produce multiple vague and lofty images of the same thing 2) Andy is seven years older than his wife Lori. If Andy and Loris agesadd up to fifty-one, how old are Andy and Lori?3) Alex is fourteen years old, and he is also nine years older than hissister Kristen. How old is Kristen?4) Myron is three years older than his wife Denise. If Myron andDenises ages add up to sixty-five, how old are Myron and Denise?5) Jim is four years older than his sister Kathy. If Jim and Kathysages add up to fifty-four, how old are Jim and Kathy?6) Vicki is eleven years older than Chuck. Five years from now,Vicki will be twice as old as Chuck. Find their present age. The average mass of a certain type of microorganism is 2.4x10^-6 grams. What is the approximate total mass, in grams, of 5x10^3 of these microorganisms?a. 1.2X10^-4b. 1.2X10^-3c. 1.2X10^-2d. 1.2X10^-1 Which of the following would most likely be used to diagnose Down syndrome? 10 pointsA) a blood-clotting testB) a karyotypeC) a pedigreeD) a Punnett square The cost of a car rental is $30 per day plus 20 per mile. You are on a daily budget of $94. Write andsolve an inequality to find the greatest distance you can drive each day while staying within yourbudget. Use pencil and paper. Find 2 other two-step inequalities with the same solutions. simplify m/2 + m/3. plss Find the value of y. 108 degrees 40 degrees. x, y, z, w How do you eat Jammie dodgers? What does the VSEPR theory predict? A. Valence electrons will pair up with electrons from another atom. B. Valence electron pairs are transferred from a central atom to bonding atoms. C. Valence electron pairs will move as far apart from each other as possible. D. Valence electrons around a nucleus will pair up whenever possible.