Question #1
Multiple Select
Which features are important when you plan a program? Select 4 options.
Knowing what the user needs the program to accomplish.
Knowing how to find the result needed.
Knowing how many lines of code you are allowed to use.
Knowing what information is needed to find the result.
Knowing what you want the program to do

Answers

Answer 1

Answer:

Multiple Select

Which features are important when you plan a program? Select 4 options.

Knowing what the user needs the program to accomplish.

Knowing how to find the result needed.

Knowing what information is needed to find the result.

Knowing what you want the program to do

Explanation:

It is the other 4, and not Knowing how many lines of code you are allowed to use.

Answer 2

A program refers to software that is written by computer experts to help users to accomplish certain special tasks. The features that are important when you plan a program are;

Knowing what the user needs the program to accomplish. Knowing how to find the result needed. Knowing what information is needed to find the result. Knowing what you want the program to do

To successfully plan a program, the programmer ought to know what the intention of the user is. It could be for communication, blogging, advertisement, etc.

Next, you need to know how to write the code. Java, HTML, etc are possible programming languages that can be used to do this.

A good grasp of the information needed to write the code is also necessary.

Learn more here:

https://brainly.com/question/20057346


Related Questions

How can you find the square root of 8 using the pow() function

Answers

import math

print(math.pow(8, 0.5))

You can find the square root of any number by squaring it by 0.5

Write the code in python to input a number and print the square root. Use the absolute value function to make sure that if the user enters a negative number, the program does not crash.

Answers

Answer:

Code in Python :-

num = float(input("Enter any number : "))

ab = abs(num)

sqrt = float(ab ** 0.5)

print(sqrt)

In python:

print(abs(float(input("Enter a number: ")))**0.5)

* 9) Which is a function of an operating system?
Provide user interface
Protect against malware
Edit images
Browse the internet

Answers

Answer:

Provide user interface

Explanation:

What is the main difference between a fileserver and network attached storage (NAS)?

Group of answer choices


NAS provides more services.


A fileserver is more customizable.


A fileserver is less customizable.


A fileserver is better for smaller companies.

Answers

Answer:a filserver is better for smaller companies

Explanation:

Hope this helps :)

Answer:

A fileserver is more customizable

Explanation:

In which era was theater the most popular performing art in Europe?

18th century
Renaissance
early 20th century
19th century

Answers

Renaissance era, it was mid 1500s to 1600s.

Drag each label to the correct location on the image.
Match the different types of mounting techniques with their definitions.
uses triangular pockets
to hold the corners of a
photograph to the mount
board
uses wet glue to stick
the print to a mount
board
uses a heat-activated
adhesive to permanently
stick the photograph to
a rigid backing board
uses different patterns
of tape to create hinges,
which attach the print to
a mount board
dry mount
photo corners

Answers

Answer: uses a heat activated.... the answer is dry mount

Use triangular pockets to hold the corners....the answer is photo corners

Use different patterns of tape.....hinge mount

Uses wet glue to stick the print....wet mount

Explanation: I got this right on a post test

The matchup of the mounting techniques are:

uses a heat activated-  dry mountUse triangular pockets to hold the corners-  photo corners Use different patterns of tape-h/in/ge mountUses wet glue to stick the print- wet mount

What is the mounting techniques

Mounting could be a handle by which a computer's working framework makes records and registries on a capacity gadget (such as difficult drive, CD-ROM, or organize share) accessible for clients to get to through the computer's record system.

There are diverse sorts of strategies in mounting craftsmanship work, exhibition hall mounting and dry mounting. Gallery mounting is authentic and reversible and dry mounting is authentic (in most cases) and non-reversible.

Read more about mounting techniques here:

https://brainly.com/question/20258766

Select the correct answer. Which application is a digital version of a manual typewriter? A. database B. presentation C. spreadsheet D. word processor

Answers

Answer:

Word Processor

hope i helped :D

Answer:

(D)- word processor

Explanation:

got it right

I'm not sure how to do these. By the way, it has to be python.

Answers

Task 1:

float75 = float(75)

string75 = "75"

# you cannot add together a number and a string because a string has no inherent numerical value like a number does.

Task 2:

num = float(input("Enter a number"))

print(num**2)

Task 3:

num = int(input("Enter an integer: "))

print("When you divide "+str(num)+" by 7, the quotient is "+str(num//7)+" and the remainder is "+str(num%7)+".")

Task 4:

gigs = int(input("How many gigabytes does your flashdrive hold? "))

print("A flashdrive with "+str(gigs)+ " gigabyte(s) holds "+str(gigs*8589934592)+" bit(s).")

For task 4, you might have to change the number 8589934592 to something else. I'm not entirely sure how many bits are in a gigabyte. I hope this helps though.

YOOO CAN ANYONE SOLVE THIS IN JAVA??

Answers

public class JavaApplication80 {

   public static String swapLetters(String word){

       char prevC = '_';

       String newWord = "";

       int count = 0;

       if (word.length() % 2 == 1 || word.isBlank()){

           return word;

       }

       else{

           for (int i = 0; i<word.length(); i++){

               char c = word.charAt(i);

               if(count % 2 == 1){

                   newWord  += (c +""+ prevC);

               }

               prevC = c;

               count+=1;

               

           }

       }

       return newWord;

   }

   public static void main(String[] args) {

       System.out.println(swapLetters("peanut"));

   }

   

}

This works for me. Best of luck.

Answer:

I do not know

Explanation:

Which sign or symbol will you use to lock cells for absolute cell reference?
A.
ampersand
B.
asterisk
C.
dollar sign
D.
exclamation mark

Answers

Answer:

Option C. dollar sign is the correct answer

Explanation:

There are two types of referencing styles used in MS excel.

Relative and absolute.

Out of these two, absolute referencing is used where we don't want the cell addresses to change when the formula with cell reference is copied. Dollar sign is with the row and column number to write an absolute cell reference.

An absolute cell reference for cell C5 is written as:

$C$5

Hence,

Option C. dollar sign is the correct answer

Answer:

C. dollar sign

Explanation:

define application software​

Answers

Answer: An application software is a type of software that the user interacts with, while a system software is a type of software that the system interacts with.

Hope this helped you :)

Is this statement true or false?



A presentation is always in front of a group of people.


true

false

Answers

Answer:

NOPE

Explanation:

sometimes presentations can be for one person only. For instance if you work in a company sometimes you present for your boss only etc.

Hope this helped :)

Answer:

im sure this is false!

Explanation:

There are many reasons to convert to the decimal numbering system. Select the best answer. When checking numeric values in computer memory, decimal makes sense because you use decimal numbering every day. When checking words in computer memory, decimal makes sense because you use decimal numbering every day. When comparing values in a computer program, decimal numbering makes sense because it is always shorter than hexadecimal. When checking words in computer memory, decimal numbering makes sense because it is easier than hexadecimal.

Answers

Answer:

first statement makes most sense.

Explanation:

When checking numeric values in computer memory, decimal makes sense because you use decimal numbering every day. --> sounds OK.

When checking words in computer memory, decimal makes sense because you use decimal numbering every day.  --> doesn't make sense

When comparing values in a computer program, decimal numbering makes sense because it is always shorter than hexadecimal. --> Not true

When checking words in computer memory, decimal numbering makes sense because it is easier than hexadecimal. --> Hexadecimal would be easier when inspecting computer words, because you can easily see the byte alignment of the values.

Answer:

the first statement

Explanation:

got it right on edge

tractor in reverse brainliest answer

Answers

Answer:

Valtra

Explanation:

It is the only tractor that goes in reverse.

Thank you so much!

Have a good day

Hope this helped,

Kavitha Banarjee

Which of the following is true of functions?

A: Replacing repeated code with a function will reduce the number of commands the computer needs to run
B: Functions are called once but can be declared many times

C: Programs written with functions run more quickly

D: Functions can help remove repeated code from a program

Answers

Answer:

the answer is D

Explanation:

What game is this?????????????????????

Answers

Sonic the hedgehog

Hope this helps you broski

Two girls were born to the same mother, on the same day, at the same time, in the same month and the same year and yet they're not twins. How is that possible?

Answers

Answer:

They are not twins but triplets or quadruplets.  

Explanation:

select the correct text in the passage. Which statements indicate inductive reasoning?

1. Tanya is an engineer.

2. She lives with her grandma.

3. All engineers work in the computer application field.

4. So, Tanya also works in a software company.

5. In the evening, she listens to music to relax.

Answers

Answer:

i think 4.so tanya also works in a software company.

Your answer is option number 3

Free 35 points!!!

I'm attempting to create a game on Khan Academy using the computer coding courses, but I can't find how to program a moving background or enemies, can someone please give me pointers/suggestions?

P.S. I'm trying to make a Galaga-like game (2-Dimensional) , and it has to be in JavaScript Processing code.

Answers

Answer:

free points?? why does it have question then

Explanation:

Answer:

Well I dont use Khan Academy sorry

Explanation:

untern
1.
What is interne
2.
3.
What is URL? Explain the component of URL.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The questions are what is the internet and what is URL? and explain the component of the URL.

Internet:

Internet is a network of computers to send data and communicate with each other, such as an example of the post office, that sends letters from one place to others places. Such as, the internet is the network of computers that communicate with each other while sending digital data in small packets.

URL:

URL is a uniform resource locator that locates an existing resource over the internet. For example, when you want to search for something over the internet, you will put the address of that resource in your browser address bar. Or when you directly search using a search engine, the search engine provides you in return to your quarry a list of search-related links. When you click the link and link open in your browser address bar. That link is a URL.

A URL normally has three or four components such as Scheme, Host, Path, and, a Query String.

Scheme: The scheme identifies the protocol to access the resource over the internet such as HTTPS (with SSL) and HTTP (without SSL).

Host: A host identifies the host-name that holds the resource, for example, www. abc.com, in it abc is a host.

Path: It identifies the specific resource in the host that the web client or browser wants to access. For example, /course/topics/first-topic/index.html.

Query string: A query string is a string that is appended in the URL that stores the information about the resource hold.

HTTP is made to facilitate which kind of communication?

computer to computer
IT Support to User
computer to user
user to computer

Answers

Answer:

Computer to computer.

Explanation:

HTTP facilitates the connection between websites, so the answer is computer to computer.

you are splitting up all your apples equally between 3 people. which statement below will calculate how many apples will be left over ?

a. var leftOver = numApples / 3;


b. var leftOver = 3/ numApples;


c. var leftOver = numApples % 3



d. var leftOver = 3% numApples


Answers

Answer:

The correct answer is:

c. var leftOver = numApples % 3

Explanation:

JavaScript uses different operators to perform various mathematical functions. In mathematics, when a number is not completely divisible by other the answer contains the remainder and quotient.

Modulus operator is used in JavaScript to find the remainder.

For example,

20/3 will return the quotient which is 6 while

20%3 will return the remainder which is 2

In the given statement, we have to find the number of remaining apples after being divided into three people

So,

Number of apples mod 3 will give us the number of remaining apples.

Hence,

The correct answer is:

c. var leftOver = numApples % 3

A Von Neumann model for a computer system has a central processing unit (CPU) that makes
use of registers.Identify three registers that may be used​

Answers

Answer:

1. Calculation unit

2. control unit

3. storage

Explanation:

if you could repeat the lab and make it better, what would you do differently and why? lab report:heredity and punnet square

Answers

Answer: Mendel's studies constitute an outstanding example of good scientific technique. ... The gardener or experimenter can cross (cross-pollinate) any two pea plants at will. The anthers from one plant are removed before they have opened to shed ... (or individuals) represent different forms that the character

What is the output of the following program?

numA = 1
for count in range(3,5):
numA = numA * count
print(numA)
Output: ____

Answers

I don't know if the print statement is indented into the for loop.

If the print statement is indented like this:

numA = 1

for count in range(3,5):

   numA = numA * count

   print(numA)

The output will be:

3

12

if the print statement is indented like this:

numA = 1

for count in range(3,5):

   numA = numA * count

print(numA)

The output will be:

12

I hope this helps!

Based on the scenario above , the  output of the following program written is 12.

What is computer output?

An output is known to be a kind of data that a computer often brings out.

The loop goes from 3 to 5. therefore, Based on the scenario above , the  output of the following program written is 12.

Learn more about output from

https://brainly.com/question/11451813

#SPJ2

Take two String inputs of the same length and merge these by taking one character from each String (starting with the first entered) and alternating. If the Strings are not the same length, the program should print "error".

Sample Run 1:

Enter Strings:
balloon
atrophy
baatlrloopohny
Sample Run 2:

Enter Strings:
terrible
mistake
error

Answers

Answer:

Written in Python

print("Enter strings: ")

str1 = input()

str2 = input()

if len(str1) == len(str2):

     for i in range(0,len(str1)):

           print(str1[i]+str2[i], end='')

else:

     print("Error")

Explanation:

Prompts user for two strings

print("Enter strings: ")

The next two lines get the input strings

str1 = input()

str2 = input()

The following if condition checks if length of both strings are the same

if len(str1) == len(str2):

If yes, this iterates through both strings

     for i in range(0,len(str1)):

This prints the the characters of both strings, one character at a time

           print(str1[i]+str2[i], end='')

If their lengths are not equal, the else condition is executed

else:

     print("Error")

import java.util.Scanner;

public class JavaApplication89 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter Strings:");

       String word1 = scan.nextLine();

       String word2 = scan.nextLine();

       String newWord = "";

       if (word1.length() != word2.length()){

           newWord = "error";

       }

       else{

           for(int i = 0; i < word1.length(); i++){

               newWord += word1.charAt(i)+""+word2.charAt(i);

           }

       }

       System.out.println(newWord);

   }

   

}

This is the java solution. I hope this helps!

4. What is an example of a Trans receiver? *
A. Pager
B. Wi-Fi
C. Telephone

Answers

I really think it A : pager
I hope this helps !!


Which of the following variables are valid? Give reasons for those which
are invalid ​

Answers

Answer:

hope am right...

Explanation:

variables must not not contain any special characters i.e N%

Variables should only begin with a letter of the alphabet or a $ sign

what is an hard ware ? ​

Answers

Explanation:

tools, machinery, and other durable equipment.

Do all careers or professions need computer science? Why or why not?

Answers

Answer:

Most careers or professions need computer science

Explanation:

As humanity is improving technological wise most jobs will be replaced and other jobs would come into play and in order for individuals to become employed in jobs that will be available in the future to come they will have to have a degree in computer science or know how to operate computers.

Answer:

No not all careers and professions require computer science

Explanation:

There are so many careers, many in which you may not sit in front of a computer. If you become a farmer, janitor, teacher or more you may not need computer science skills.

Other Questions
What is this property? When x=1/3 and y=1/6, 2x+8y= I really need help What is the definition of pe What is the definition of Sports? * what is the difference between Physical Education and sports? *Summarize your thoughts on how participating in Physical Education and Sports are similar & different. * 1 point6. At five below there is a discount of $5 for every 4 items you buy. If thereceipt show discount of $20 how many items did you buy?*HINT: This problem is similar to #6, page 90O A You bought 20 itemsB You bought 15 itemsC You bought 16 itmesD You bought 8 items According to the TED Talk video with Richard Turere, what observation did he make about the natural world around him?A. the lions were killing the people of his villageB. the lions were killing the cattle in his father's herd C. the elephants were getting into his village D. the lions were keeping up too much noise in his village 3. What was the course of the voyage after Magellans death? Amy drew a map of Texas for Mrs.Smiths class. According to Amys map scale, a half inch on the map represents approximately 28.5 kilometers. If the actual distance from Austin to Amarillo is approximately 798 kilometers, what is the approximate distance between Austin and Amarillo on Amys map? HELP! The value of y is directly proportional to the value of x. Given y = 11 when x = 77. What is the value of y when x = 98? 17 7 686 14 Compare the emergence of advanced civilizations in Meso and South America with the four early river valley civilizations.Religious ideas from which ancient river valley civilization includes ideas that are most like the beliefs of ancient Native Americans? The function f(t) = 349.2(0.98)t models the relationship between t, the time an oven spends cooling and the temperature of the oven. A 2-column table with 5 rows. The first column is labeled time (minutes)t with entries 5, 10, 15, 20, 25. The second column is labeled oven temperature (degree Fahrenheit) f(f) with entries 315, 285, 260, 235, 210. For which temperature will the model most accurately predict the time spent cooling? 0 100 300 400 Jana and Tim both sell cleaning products to local housecleaning services. When Jana orders from the manufacturer of the products she sells, she is given a 15% discount on her total purchase, and she must pay a $15 shipping fee. Each of Tim's orders to his manufacturer is charged at 85% of the full purchase price of the products, and he pays a $4 handling fee, plus $11 for shipping. Choose ALL of the statements that are true. When Jana and Tim purchase products having the same total value, their costs for the purchases will always be the same. Jana and Tim will never spend exactly the same amount on purchase orders to their manufacturers. Jana and Tim will only spend the same amount on purchase orders to their manufacturers when they each order products with a total purchase value of $100. If Jana switches to Tim's manufacturer for her product purchases, her cost will decrease. If Tim switches to Jana's manufacturer for his product purchases, his cost will remain the same. Look at triangle ABC.Coordinate grid shows negative 5 to positive 5 on the x axis and y axis at intervals of 1. A triangle ABC is shown with A at ordered pair 4, 5, B at ordered pair 2, 1, and C at ordered pair 4, 1.What is the length of side AB of the triangle? 2 Square root of 20 6 Square root of 38 Read this excerpt from Immigrant Kids, by Russell Freedman.My mother, my stepfather, my brother Giuseppe, and my two sisters, Liberta and Helvetia, all of us together, happy that we had come through the storm safely, clustered on the foredeck for fear of separation and looked with wonder on this miraculous land of our dreams.Giuseppe and I held tightly to Stepfather's hands, while Liberta and Helvetia clung to Mother. Passengers all about us were crowding against the rail. Jabbered conversations, sharp cries, laughs and cheers -- a steadily rising din filled the air. Mothers and fathers lifted up babies so that they too could see, off to the left, the Statue of Liberty.Which detail best supports the idea that arriving in America was a great relief after the long voyage?Immigrant passengers were very crowded on the ships deckImmigrant passengers were afraid of being separated.Immigrant passengers made noise when they saw the Statue of Liberty.Immigrant passengers held tightly to their families.you will get 100pts if you answer it please hurry!!! A plot of grass behind a building is shown.A composite figure is shown. The top horizontal side is labeled 16 meters. The left vertical side is labeled 8 meters and the right vertical side is labeled 16 meters. From the bottom corner of the left side, a horizontal side that is labeled 12 meters goes right. From its right end, a vertical side labeled 10 meters goes down. A line connects the bottom of this side to the bottom of the right vertical side.What is the area of the plot of grass? What is the reason for continental drift? MNO was dilated, then _____________, to create YHQ. rotated reflected translated dilated explain to "the 6th grader" how to find the area of a square Enter the equation of the line in slope-intercept form.The line parallel to y = 5/4x + 8 that passes through (8, 0).The equation of the line that passes through (8, 0) is y = ??? Find the length of the shortest side ( rounded to 2DP) if the area of the rectangle is 28m^2