Explain the BASIC key statement of INPUT? ​

Answers

Answer 1

Answer:

This portion of program that instructs a computer how to read Un

and process information.

Explanation:

Hope it helps.


Related Questions

Draw a flow chart that accepts mass and volume as input from the user. The flow chart should compute and display the density of the liquid.( Note: density = mass/volume ).​

Answers

Answer:

See attachment for flowchart

Explanation:

The flowchart is represented by the following algorithm:

1. Start

2. Input Mass

3. Input Volume

4 Density = Mass/Volume

5. Print Density

6. Stop

The flowchart is explained by the algorithm above.

It starts by accepting input for Mass

Then it accepts input for Volume

Step 4 of the flowchart/algorithm calculated the Density using the following formula: Density = Mass/Volume

Step 5 prints the calculated Density

The flowchart stops execution afterwards

Note that the flowchart assumes that the user input is of number type (integer, float, double, etc.)

Suppose you want to find pages that contain the word German but not the word Shepherd. Which search would achieve? German OR Shepherd "German Shepherd" German -Shepherd "German" + "Shepherd"

Answers

Answer:

The correct answer is C) "German -Shepherd"

Explanation:

Computerized have evolved to allow for the combination or contrasting or various words.

This is made possible using Boolean Logical Operators such as AND, OR and NOT. Using any of the terms above translates to the presence of a search strategy.

In some search engines, the symbol "+" symbol is used instead of the operator "AND". In other cases, the symbol  "-" is used instead of "NOT".

The effect achieved is that "German -Shepherd" excludes the word "Shepherd" from the results.

Cheers!

Answer:

C

Explanation:

Write a JavaScript program that reads three integers named start, end, and divisor from three text fields. Your program must output to a div all the integers between start and end, inclusive, that are evenly divisible by divisor. The output integers must be separated by spaces. For example, if a user entered 17, 30, and 5, your program would output "20 25 30" (without the quotes) because those are the only integers between 17 and 30 (including 17 and 30) that are evenly divisible by 5.

Answers

The question is incomplete! Complete question along with answer and step by step explanation is provided below.

Question:

Write a JavaScript program that reads three integers named start, end, and divisor from three text fields. Your program must output to a div all the integers between start and end, inclusive, that are evenly divisible by divisor. The output integers must be separated by spaces. For example, if a user entered 17, 30, and 5, your program would output "20 25 30" (without the quotes) because those are the only integers between 17 and 30 (including 17 and 30) that are evenly divisible by 5.

DO NOT SUBMIT CODE THAT CONTAINS AN INFINITE LOOP. If you try to submit code that contains an infinite loop, your browser will freeze and will not submit your exam to I-Learn.

If you wish, you may use the following HTML code to begin your program.  

Due to some techincal problems the remaining answer is attached as images!

Create a function called "strip_r_o" that takes in a STRING and strips all the Rs and Os from the string. Also use a FOR loop in you program to check each letter of the STRING

Python

Answers

Answer:

The program is as follows (Take note of the comments and see attachment)

#Start of Program

def strip_r_o(word): #Declare Function strip_r_o

     resultt = "" #initialize resultt to empty string

     for i in range(len(word)): #Iterate from first character of input string to the last

           if (not word[i] == "R") and (not word[i] == "O"): #Check if current character is not R and O

                 resultt = resultt + word[i] #if condition is true, add character to resultt

     print(resultt) #Print string after character has been removed

#End of Function

Word = input("Enter a string: ") #Prompt user for input

strip_r_o(Word) #Call strip_r_o function

#End of Program

Explanation:

The program starts and end with a comment

Line 2 of the program declares function strip_r_o

Line 3 initializes a string variable resultt to an empty string

Line 4 iterates from first character of input string to the last  

Line 5 checks each character for O or R

If true, line 6 is executed by removing O or R from the input string and saving what's left in variable resultt

Line 7 prints the end result after O and R have been removed from the input string

Line 8 is a comment

Line 9  prompts user for an input string

Line 10 calls the strip_r_o function

When considering who to approach as a possible mentor for you when you are

developing and marketing your game, you should consider: (1 point)
developers who succeeded in marketing a game
developers who failed to properly market a game
developers you don’t know personally
all of the above

Answers

Answer:

i would say all of the above

Explanation:

you can learn from peoples success and failures, and don't be shy to meet new people.

Availability is an essential part of ________ security, and user behavior analysis and application analysis provide the data needed to ensure that systems are available.

Answers

Answer:

Network

Availability is an essential part of Network security, and user behavior analysis and application analysis provide the data needed to ensure that systems are available.

Question 3 of 10
2 Points
What is the term for classifying and grouping organisms?
O A. Outgrouping
B. Taxonomy
O O
O C. Linnaeus
O D. Ancestor​

Answers

Answer:

B. Taxonomy

Explanation:

Taxonomy is a term used in biological sciences. It is defined as the grouping together or classification of living organisms such as Plants, Animals and Microorganisms in specific categories or groups based on similarities in certain characteristics or morphology which they share.

Carl Linnaeus a scientist (botanist) from Sweden has been described or named as the Father of Taxonomy. This is because created what is known as the Linnaean Taxonomy system in which organisms are classified and named.

Living Organisms are classified into ranks or hierarchy listed below:

a) Domain

b) Kingdom

c) Phylum(for Animals) or Division (for Plants)

d) Class

e) Order

f) Family

g) Genus

h) Species.

A file name extension provides what information about a file?

Answers

Answer:

A file extension or file name extension is the ending of a file that helps identify the type of file in operating systems, such as Microsoft Windows. In Microsoft Windows, the file name extension is a period that is often followed by three characters but may also be one, two, or four characters long.

Explanation:

Answer:

File format

Explanation:

What is the difference between user program and packages program?

Answers

Answer//

program is to enter a program or other instructions into (a computer or other electronic device) to instruct it to do a particular task while package is to pack or bundle something.

// have a great day //

Explanation//

A program is exactly that: a set of instructions that tells a computer how to do something.

The term package has multiple meanings, but with regard to programs, it generally means “the set of program files, data files, and other things that make up a particular application”.

// may I have Brainliest? //

the command button to protect a document is part of the​.
(a) Insert tab
(b) Home tab
(c) file tab

Plz answer me

Answers

Answer:

C file tab

Explanation:

hope this helps

In batch operating system three job J1 J2 and J3 are submitted for execution each job involes an I/O activity a CPU time and another i/o activity job a requires a total of 20 ms with 2 ms CPU time J2 requires 30 ms total time with 6 ms CPU time J3 requires15 ms total time 3 ms CPU time what will be the CPU utilization for uniprogramming and multiprogramming

Answers

Answer:

(A) The CPU time for J1 is =2 ms other time is =18 ms, for J2 CPU time =6 ms other time = 24 ms, for J3 CPU time = 3 ms and other time = 12 ms (B) The CPU Utilization for uni-programming is 0.203 or 20.3% (C) For Multi-programming, when a program is not free and busy with an operation, the CPU is allocated to other programs.

Explanation:

Solution

Given that:

A(1)Job J1 = CPU time = 2ms  

Other time =18 ms

Total time = 20 ms

(2)Job J2 = CPU time 6ms

Other time = 24 ms

Total time = 30 ms

(3)Job J3 = CPU time = 3ms

Other time =12ms

Total time = 15 ms

(B) For the CPU Utilization for uni-programming, we have the following as follows:

CPU utilization =The total time of CPU/The total real time

Thus,

=(2 +6+3) / (18+24+12)

= 11/54

=0.203 or 20.3%

(C) For the CPU utilization for multi-programming,  when a program is not available that is busy in an operation, such as the input and output the CPU can be allocated or designated to other programs

The function of PC Register?

Answers

Answer:

registers are types of computer memory used to quicky accept, store and transfer data and instuctions that ae being used immidately by the cpu

Explanation:

the registers used by the cpu are oftern termed as processor registers.

hope that helps :)

[ANSWER = BRAINLIEST] How to mark an answer as brainliest?

Answers

Answer:

once your question is answered you get an option available on the bottom of the answer

see attached

and you click on Mark as brainliest

Answer:

You are able mark a question Brainliest when there are 2 existing answers, or if 1 answer has existed for a while.

Hope this helps! Now get in there and mark me Brainliest! :v

LOL...s o r r y

What is the basic unit of measurement for RAM specs

Answers

Answer: RAM, random access memory is measured in GIGABYTES. Bsbdjdjdj

Answer: The basic unit of measurement for RAM specs is byte.

¿Cuánta energía consumirá una lavadora de 1200W de potencia, si se deja conectada durante 20 horas? ¿Cuánto deberemos pagar si el coste de la energía consumida es de 0,12€/kWh?

Answers

Answer:

The amount to be paid is €2.88 for the amount of power consumed

Explanation:

The first thing to do here is to convert the power consumption to kilo-watt

1 kilowatt = 1000 watt

x kilowatt = 1200 watt

x = 1200/1000 = 1.2 KW

we now convert this to kilowatt hour by multiplying the number of hours by the number of kilowatt.

That would be 20 * 1.2 = 24 KWh

Now, the charge is 0.12€/kWh

for 24 kWh, we have 24 * 0.12 = €2.88

What is
i) File
ii) Folder​

Answers

I File is an intermediate preprocessor output file format used by Borland C++. I files are used to compile and communicate a stream of binary tokens between the compiler's parsers. I files can also be used to compose textual outputs. And ii folder is a type of knife, but I think I might just not know the answer to your second question I’m sorry.

In terms of twitch skills vs thought skills, Tetris: (1 point)

emphasizes twitch skills
emphasizes thought skills
emphasizes both twitch and thought skills
uses neither type of skill

Answers

The correct answer is C. Emphasizes both twitch and thought skills

Explanation:

In games, twitch skills refer to the player's ability to respond in a short time or react to a certain stimulus. On the other hand, thought skills are complex skills that require players to create strategies or analyzing before taking any action in the game.

In the case of Tetris, which requires players to complete lines by using pieces with different shapes both twitch and thinking skills are involved because to complete the line correctly the players needs to analyze the shape and where this should be placed before pressing any buttons (though skills), but at the same time, the player needs to reach in a short time (twitch skills) for example, by rotating each piece in a short time to complete the line.

I NEED HELP ASAP:
A truth table has 8 inputs and 5 logic gates. How many rows will you need for your truth table? Show your working. [3 marks]

(Don't bother answering, your not getting brainliest)

Answers

Answer:

64

Explanation:

A truth table can be defined as a table that tells us more about a Boolean function.

A truth tables also gives us more information about how logic gates behave. They also show us the relationships between the inputs and outputs of a logic gates.

Logic gates are essential and fundamental components of an electrical circuit.

The rows on a truth table shows us the possible combinations of the inputs of a circuits as well as it's resulting or corresponding outputs.

In order to determine the number of rows that a truth table has, the formula below is used.

Number of rows in a truth table = (Number of Inputs)²

In the question above, we are told that

A truth table has 8 inputs and 5 logic gates. The number of rows needed for this truth table is calculated as:

Number of rows in a truth table = (Number of Inputs)²

Number of rows in a truth table = (8)²

= 64 rows.

The number of rows needed for the truth table is 64

The given parameters are:

Inputs = 8Logic gates = 5

The number of rows in the truth table is then calculated as:

[tex]Row = Inp ut^2[/tex]

Substitute value for Input

[tex]Row = 8^2[/tex]

Evaluate the exponent

[tex]Row = 64[/tex]

Hence, the number of rows needed for the truth table is 64

Read more about logic gates at:

https://brainly.com/question/20394215

do anyone know why the technology is more Important in our live??

Answers

Answer:

In general technology makes our lives so much more simpler (full explanation below)

Explanation:

With technology, we have the tools available to us that make it easier to manage our day to day lives and exchange valuable information to our friends and family and other people. Technology is basically harnessing the tools, systems and techniques that are used to help us with problem solving or just making our lives better and easier to live in some way. In fact, technology has played a very significant role in how we live in the world and how we interact with everything around us in the environment today. Hope I helped!

Explanation:

Simply, it simplifies our life making it better than ancient ages. Before, they used to walk using their limbs long distances to reach their destinations after getting exhausted or killed if the person was ill, however today everything has changed. Technology is exactly what human needs. For instance, if someone is going to die at any moment he can reach hospital in few seconds by the favor of technology (cars...)

Plus, Technology helps our lives to remain and become easier. ... Technology is considered to be extremely important in business because it provides faster and more efficient methods of getting a job done. For example, computer programs can be used in business to provide easier manufacturing of goods.

Hope this helps...

Have a great day.

What does FLUX do when soldering an electrical joint?

Answers

Answer:

Flux is an acidic blend that makes a difference evacuate oxides from the range of the joint and so makes a difference the patch stream effectively over the joint and frame a great bond. The flux can be seen as a brown fluid as a patch is warmed, and it in some cases gives off a impactful smoke that can act as a aggravation.

Explanation:

flux prevents oxidation of the base and filler materials. while soldering the metals, flux is used as threefold purpose, as it removes the oxidised metal from this surface to be soldered.

If you had an idea for a new software company, what would be the best approach to help make it a successful business? develop a business plan to describe how to maintain and grow revenues go back to school to get a degree in IT business administration hire employees who understand the software development industry seek out financial support for venture capital, angel investors and grants

Answers

Answer:

(A). Develop a business plan to describe how to maintain and grow revenues

Explanation:

I got it right on edge2020.

If you had an idea for a new software company, develop a business plan to describe would be the best approach to help make it a successful business.

What is software company ?

A business whose main offerings are different kinds of software, software technology, distribution, and software product creation is known as a software firm. They are what make up the software sector.

For corporations or customers, software development organizations create, create, and maintain apps, frameworks, or other software components.

Software may make your organization run more effectively in addition to enabling your computer hardware to execute crucial functions. Even new working methods can be developed with the correct software.

As a result, it is a vital company asset, and you should carefully select your software so that it meets your

Thus option A is correct.

To learn more about software company follow the link below;

https://brainly.com/question/10949949

#SPJ5

Which of the following might not exist in a URL?

А. The top-level domain

B. The resource ID

C. The protocol

D. The second-level domain​

Answers

Answer:

Resource ID

Explanation:

B the resource id will not exist

If you want to copy text formatting from one area of your document to another area, _____. a. select the formatting you would like to copy, click the Format Painter, then select the text to repeat the formatting b. select the formatting you would like to copy, copy the text, click Paste Formatting c. select the formatting you would like to copy, right-click the Format Painter, select Repeat d. double click the Format Painter

Answers

Answer:

I believe it is ‘A’

Explanation:

The Format Painter feature copies only the formatting from one selected text to another. The content and text of the selection will not be copied using Format Painter.

Answer:

It is A

Explanation:

Please help me guys! :))))) To activate the Spelling and Grammar check features, you can either navigate to the Review tab, or use the shortcut key _____. F9 Ctrl+F F7 Ctrl+H

Answers

Answer:

F7

Explanation:

I hope this helps! :)

Answer:

F7

Explanation:

What is the name of the item that supplies the exact or near exact voltage at the required wattage to all of the circuitry inside your computer?

Answers

Answer:

It's the power supply

Explanation:

The power supply is what essentially enables the computer to operate. It is able to do that by converting the incoming alternating current (AC) to direct current (DC) at the correct wattage rating that is required by the computer to function. The power supply is a metal box that is generally placed in the corner of the case.

If involved in a boating accident causing serious bodily injury or death while boating under the influence, the operator has committed a _____. felony misdemeanor non-criminal offense liability

Answers

Answer:

felony

Explanation:

It is an offence on the part of a boat operator who is under the control of alcohol while boating, as such could result in property damage, serious bodily injury or death. Where such leads to bodily injury or deaths, the operator could be convicted for felony while misdemeanor applies to property damage.

There have been a reoccurring boating incidence in the country especially in the state of Florida, which has the highest number of boating fatalities hence created stiff penalties for boating under the influence of alcohol.

While it is adviseable for motorists not to drink and drive, it is also not lawful be under the influence when boating as such could cause injury, deaths or property damage and such operator would receive appropriate penalty depending on the outcome of the incident.

Which branch of study can help Jessica study the concept of light

Answers

Answer:

Physics, Quantum Mechanics

Explanation:

Light is a stream of photons with no weight. If you want to dig deeper in this mysterious phenomena, you should study physics and quantum mechanics. Physics takes up things like the theory of relativity, which can be useful in studying spacetime and how light travels through it, and quantum mechanics, being the study of matter in an atomic level, should help you get an understanding on how photons of light travel and why they behave so strangely.

Answer:

Physics

Explanation:

Question 2: Write True or False beside each of the statements below:
a. Handheld computers are the smallest type of personal computer.
b. Mainframes are designed for interactive use.
c. A handheld can be used to keep track of appointments.
d. A server is usually found on an office employee’s desk.
e. A supercomputer is used to perform overly complex tasks.
f. A workstation usually features specific software.

Answers

Answer:

truetruetruefalsetruetrue

mention 5 advantages of internet​

Answers

Answer:

1) We can get various types of information, knowledge.

2) We can communicate with each other no matter where they are if they have internet connection.

3) It can be used as a source of entertainment.

4) Through internet, we can work from home especially in this quarantine time.

5) Through internet, we can show our talent and skills.

Hope it helps :)

If you liked it, please mark this answer as the brainliest one.

a search engine is aprogram to search what?

Answers

Answer:A web search engine or Internet search engine is a software system that is designed to carry out web search (Internet search), which means to search the World Wide Web in a systematic way for particular information specified in a textual web search query.

i think it's the good answer if im right

Explanation:

Answer:

This is a software system designed to search the internet on World wide web in a systemic way for particular information specified in a textual web search query.

Explanation:

I hope it helps you thanks!!.

Other Questions
the factors that account for Germanys early success in the war. 1 of 10Colin buys a tv for 810.It depreciates at a rate of 3% per year.How much will it be worth in 3 years?Give your answer to the nearest penny where appropriate.789qWertyuo For each of the descriptions below, perform the following tasks: i. Identify the degree and cardinalities of the relationship. ii. Express the relationships in each description graphically with an E-R diagram. a. A book is identified by its ISBN number, and it has a title, a price, and a date of publication. It is published by a publisher, which has its own ID number and a name. Each book has exactly one publisher, but one publisher typically publishes multiple books over time. b. A book is written by one or multiple authors. Each author is identified by an author number and has a name and date of birth. Each author has either one or multiple books; in addition, occasionally data are needed regarding prospective authors who have not yet published any books. c. In the context specified in 2a and 2b, better information is needed regarding the relationship between a book and its authors. Specifically, it is important to record the percentage of the royalties that belongs to a specific author, whether or not a specific author is a lead author of the book, and each author's position in the sequence of the book's authors. d. A book can be part of a series, which is also identified as a book and has its own ISBN number. One book can belong to several sets, and a set consists of at least one but potentially many books. e. A piano manufacturer wants to keep track of all the pianos it makes individually. Each piano has an identifying serial number and a manufacturing completion date. Each instrument represents exactly one piano model, all of which have an identification number and a name. In addition, the company wants to maintain information about the designer of the model. Overtime, the company often manufactures thousands of pianos of a certain model, and the model design is specified before any single piano exists. f. A piano manufacturer (see 2e) employs piano technicians who are responsible for inspecting the instruments before they are shipped to the customers. Each piano is inspected by at least two technicians (identified by their employee number). For each separate inspection, the company needs to record its date and a quality evaluation grade. g. The piano technicians (see 2f) have a hierarchy of reporting relationships: Some of them have supervisory responsibilities in addition to their inspection role and have multiple other technicians report to them. The supervisors themselves report to the chief technician of the company. h. A vendor builds multiple types of tablet computers. Each has a type identification number and a name. The key specifications for each type include amount of storage space and display type. The company uses multiple processor types, exactly one of which is used for a specific tablet computer type; obviously, the same processor can be used in multiple types of tablets. Each processor has a manufacturer and a manufacturer's unique code that identifies it. i. Each individual tablet computer manufactured by the vendor (see 2h) is identified by the type identification number and a serial number that is unique within the type identification. The vendor wants to maintain information about when each tablet is shipped to a customer. j. Each of the tablet computer types (see 2h) has a specific operating system. Each technician the company employs is certified to assemble a specific tablet typeoperating system combination. The validity of a certification starts on the day the employee passes a certification examination for the combination, and the certification is valid for a specific period of time that varies depending on tablet typeoperating system combination. What is the measure of angle c in degrees? *150309060 Whats the correct answer for this? I need help plzzzz i need answer Leigh is going diving and needs to descend to a depth of 360 feet below sea level. She wants to do it in 12 equal descents. How far should she travel in each descent? Is being a knight worth it? Which energy transformation occurs in an electric motor?A. electrical to kineticB. electrical to thermalC. potential to kinetic D. kinetic to electrical the Senator decides to purchase and distribute Norvasc (a medicine that reduces blood pressure), based on your results in (i), which age group (youth or old adults) should be given priority? Briefly explain your answer. True or false: Alcohol consumption and driving only affects the driver.TrueFalse The graph of a polynomial is shown below. At which value of x does thispolynomial have an extreme?5A. X= 4B. X= 2C. x= 3O D. x = 1.33 ill give you brainiest if your right !!!! Which angle is the angle of reflection? 1, 2, 0R 3? NF3 Draw the molecule by placing atoms on the grid and connecting them with bonds. Include all lone pairs of electrons. +- CHONSPFBrClIXMore Request Answer Part B HBr Draw the molecule by placing atoms on the grid and connecting them with bonds. Include all lone pairs of electrons. +- CHONSPFBrClIXMore Request Answer Part C SBr2 Draw the molecule by placing atoms on the grid and connecting them with bonds. Include all lone pairs of electrons. +- CHONSPFBrClIXMore Request Answer Part D CCl4 Draw the molecule by placing atoms on the grid and connecting them with bonds. Include all lone pairs of electrons. +- CHONSPFBrClIXMore Request Answer Provide Feedback Water leaves a spigot at a rate of 462 cubic inches per minute. How many cubic feet of water is this per hour? (Round your answer to the nearest whole number.) 1. Choose the three numbers that would round to 4.63.A. 4.632B. 4.6228C. 4.6257D. 4.6285 What were signs of trouble that contributed to the Great Depression?consumer and credit spendinggovernment intervention in businessfarm failuresRed Scare and the fear of Communism What is the difference between rain and mist?A. Rain forms from clouds, while mist forms at Earths surface.B. Rain is warmer than mist.C. Raindrops are larger than droplets of mist.D. Raindrops fall straight down while mist moves sideways. x^2+6x+8=0 someone help me with the equation. im super confused and dont know if im doing it right