Using complete sentences post a detailed response to the following.

What are the advantages and disadvantages of top-down and bottom-up programming? How would you decide which one to use? Do you approach problems in your real life from a bottom-up or top-down approach?

Answers

Answer 1

Answer:

some advantages of top down is that you can start off from what you know and figure out what you need to complete it, advantages to bottom up is that you can make something new . if you are starting something from scratch and you dont know what the end goal might be you would use bottom up but if you already have an idea or the final product of what you want you would go the top down approach.

Explanation: just saying you shouldnt just copy and paste my response but rather pick out what you want to say and use this to complete what ever your working on. hope i helped :)

Answer 2

Answer:

the guy on top of me is super right follow him

Explanation:


Related Questions

As a user of media what will you say to those people who are under of misleading use media

Answers

Answer:

search more sa google

Help me! I’ll mark you brainly and give extra points!

Answers

Answer:

52 5,

Explanation:

A database has one physical schema and one conceptual (logical) schema but many external schemas (views).
a) True
b) False

Answers

Answer:

true

Explanation:

A database has one physical schema and one conceptual (logical) schema but many external schemas (views): a. True.

A database refers to a structured (organized) collection of data that are stored on a computer system and usually accessed in various ways such as electronically.

In database management, a database schema can be defined as a structure which is typically used to represent the logical design of the database. Thus, it denotes how data are stored (organized) and the relationships existing in a database management system (DBMS).

Generally, there are two (2) main types of a database schema and these include;

Physical database schema: it is only one per database.Conceptual (logical) schema: it is only one per database.

However, there are multiple number of external schemas (views) for each database because it is what an end user is interested in.

Read more on database here: https://brainly.com/question/3259292


Please help!! I’ll mark you brainly

Answers

Answer:

1. raster and vector

2. Resolution

3. Color depth

4. Forms, Shapes

5. Tone

6. Balance

7. White space

8. Aspect ratio

9. Focus

10. cropping

Hope this helped :)

i’m just your second response so you can mark him brainly lol

4.2 code need help plz someone 15 points if u help

Answers

def func():  

 total = 0

 while True:

   pet = input("What pet do you have? ")

   if pet == "rock":

     return

   total += 1

   print("You have a {} with a total of {} pet(s)".format(pet, total))

func()

We wrapped our code in a function so that whenever the user enters rock, we can simply return and exit the function. If you have any other questions, I'll do my best to answer them.

Does anyone know how to fix this error of " the media could not be loaded, either because the server or network failed or because the format is not supported " in the playback of web videos ?

Answers

Answer:

Restart your WiFi!

Explanation:

It happened to me I did that and it fixed it

Answer: try shutting down your computer or close all tabs and restart!

Step-by-step: if that no works message me

We study computer____to become familiar with how circuits and signals collaborate to create working computer systems.
A) architecture
B) organization
C) layers
D) systems of linear equations

Answers

Answer:

Option B (Organization) would be the correct answer.

Explanation:

It communicates about either the simple interface provided to either the compiler as well as the OS by the digital hardware to accommodate customers' requirements. Computer company struggles through computer program hardware components, including input machines, processing elements (CPU), storage, as well as main memory systems.

The other options offered aren't relevant to the scenario presented. So, the solution here is just the right one.

Write pseudocode for a function that translates a telephone number with letters in it (such as 1-800-FLOWERS) into the actual phone number. Use the standard letters on a phone pad.

Answers

Answer:

Explanation:

Function telToNumbers with one parameter of a String input for the telephoneNumber

String var newTelephoneNum;

for loop through telephoneNumber {

Char var currentChar = current Character in the loop;

currentChar to lower Case;

Switch statement (currentChar) {

 case "a" or "b" or "c" : newTelephoneNum += "2"; break;

 case "d" or "e" or "f" : newTelephoneNum += "3"; break;

 case "g" or "h" or "i" : newTelephoneNum += "4"; break;

 case "j" or "k" or "l" : newTelephoneNum += "5"; break;

 case "m" or "n" or "o" : newTelephoneNum += "6"; break;

 case "p" or "q" or "r" or "s" : newTelephoneNum += "7"; break;

 case "t" or "u" or "v" : newTelephoneNum += "8"; break;

 case "w" or "x" or "y" or "z" : newTelephoneNum += "9"; break;

 default : newTelephoneNum += currentChar; break;

 }

}

print newTelephoneNum;

7-9 validation rule in a field will​

Answers

Answer:

Validation rule in a field will restrict the input from user into a field or table

Explanation:

Validation is used in database to ensure that the correct data type is entered in the fields. When validation is applied to a field, a message is displayed to the user if he enters the data of wrong datatype.

Hence,

Validation rule in a field will restrict the input from user into a field or table

if you make homemade knitted garments and you sell them to individuals online, what e-commerce are you participating in?
is it B2B or B2C or C2C or SaaS

Answers

The Answer Of This Question Is C2C.

On his website, Mario has a video that visitors must click to play. He wants the video to play automatically when the page loads. What attribute should Mario add to the
A. controls
B. loop
C. autoplay
D. play

Answers

Answer:

C: AutoPlay

Explanation:

it is C because the definition of AutoPlay is: a functionality that causes a video, audio file, etc. to play automatically, without action from a user.

ANSWER THIS CORRECTLY TO GET BRAINLY
What is a row of data in a database called?

a
Field

b
File

c
Record

d
Title

Answers

the answer is c. record

A user can view
and
in the Reading pane.

Answers

Answer:

sorry,but I can't understand your question.

Answer:

email messaging and attachments

Explanation:

2023 edg 100%

Which input value causes the loop body to execute a 2nd time, thus outputting "In loop" again? { String s = "Go"; while ((!s.equals("q"))&& (!s.equals("")) System.out.println("In loop"); 5 - scnr.nextO;
a) "Quit"
b) "q" only
c) "Q only
d) Either "q" or "Q"

Answers

Answer:

a) "Quit"  

c) "Q only

Explanation:

Given

String s = "Go";

while ((!s.equals("q"))&& (!s.equals("")))  {

System.out.println("In loop");

s = scnr.next();

}

Required

What input causes another execution

Analyzing the while condition

while ((!s.equals("q"))&& (!s.equals("")))  

This can be split into:

!s.equals("q")) && (!s.equals(""))

Meaning

When s is not equal to "q" and when s is not an empty string

In other words,

the loop will be executed when user input is not "q" and user input is not empty.

So, from the list of given options: The loop both will be executed when:

a) Input is "Quit"

c) Input is Q only

Input of q will terminate the loop, hence b and d are incorrect

Write an If/else statement to check whether host is online. If it is online, then print system is online otherwise print system is unreachable.

Answers

Answer:

from socket import *

hostname = input('Enter the host to be scanned: ')

ip_add = gethostbyname(hostname)

connections = [ ]    

for i in range(133, 136):

   s = socket(AF_INET, SOCK_STREAM)

     

   conn = s.connect_ex((ip_add, i))

   print(conn)

   connections.append(conn)

if 0 in connections:

   print ('Host is online')

   s.close()

else:

   print ('system is unreachable')

Explanation:

The python source code above scans for all the available range of ports in the provided hostname, if any port is available, the host is online else the program print the error message "system is unreachable.

This is the department that is responsible for hiring, firing, training, new employees for the business or corporation.
Group of answer choices

Human Resources

Information Technology

Advertising

Marketing

Answers

Answer:

Explanation:

human resources

hoped this helped

If you need to download something for a class, first

Answers

Answer:

left click, then click save image

Explanation:

Answer:

first try to do it on kami, then on Google docs, then on doc-hub

Which logic correctly describes an algorithm to find the smallest of the three numbers a, b, and c and store the smallest number in small?

A.
If a is less than b, then set a to small, else set b to small, else set c to small.
B.
If a is less than b, then set small to a, else set small to b.
If c is less than small, then set small to c.
C.
If a is less than b, then set small to b, else set small to c.
If c is less than small, then set small to a.
D.
If a is less than small, then set small to a.
If b is less than small, then set small to b.
If c is less than small, then set small to c.

Answers

Answer:

D

Explanation:

Answer:

B. If a is less than b, then set small to a, else set small to b.

If c is less than small, then set small to

Explanation:

Plato correct!!

How can you enter Task Manager in Windows? Select 3 options. right-click the taskbar and choose Start Task Manager right-click the taskbar and choose Manage Tasks press Ctrl + Shift + Tab press Ctrl+Alt+Delete and then click Task Manager press Ctrl + Alt + Esc

Answers

Answer:

Press [Ctrl]+[Shift]+[Esc] and Windows Task Manager will launch instantly

Explanation:

Answer:
1. Press Ctrl+Alt+Delete and then click Task Manager
2. right-click the taskbar and choose Start Task Manager

3. Press Ctrl+Alt+Esc

Explanation:

Took the test. If you are on a windows computer you can also test the answers to see what works and what does not.

Which choices correctly describe an Else
statement? Check all that apply.
a conditional statement that will show
different information if the answer to the If
statement is true
a conditional statement that will show
different information after the If statement
answer is false
a statement that contains the code to be
executed when the If value is false or zero
a conditional statement that runs a piece of
code when all program statements are true

Answers

Answer: B C

Explanation:

Answer:B,C,D

Explanation:

Which of the following internet protocols is used to request and send pages and files on the World Wide Web

Answers

it is . org Explanation:

Determine the number of character comparisons made by the brute-force algorithm in searching for the pattern GANDHI in the text
THERE_IS_MORE_TO_LIFE_THAN_INCREASING_ITS_SPEED
(Assume that the length of the text-it is 47 characters long- is known before the search starts).

Answers

Answer:

Total number of character comparison = 43

Explanation:

Using the Brute force algorithm

The string of n characters is known as text, and the string of m characters is known as the pattern.

From the given information:

The text (n)=THERE_IS_MORE_TO_LIFE_THAN_INCREASING_ITS_SPEED

The pattern (m) = GANDHI

The total no of characters that we have in the text = 47

The total number of characters in pattern = 6

For a brute force algorithm;

Since; the first character of the pattern does not exist in the text, then the number of trials made can be attempted can be expressed as = n – m + 1

= 47 – 6 + 1

= 47 – 5

= 42

Thus; the algorithm will attempt the trial 42 times.

Now, for loop in the algorithm to run 42 times, the G in the pattern will have to align against the for T in the text, and in the last case, it will be aligned against the last space.

On each attempted trial, the algorithm will make one unsuccessful comparison.

However, at the trial at which the G in the pattern Is aligned with the G in the text, there will be two successful comparisons.

Hence, we can calculate the total number of character comparison as follows:

Total number of character comparison = [tex]\mathbf{\bigg ( ( 42 - (no. \ of \ failed \ comparison) ) \times 1 + (1 \times ( Two \ successful \ comparisons) ) \bigg ) }[/tex]

Total number of character comparison = ( (( 42 – 1) × 1 ) + ( 1 × 2) )

Total number of character comparison = 41 + 2

Total number of character comparison = 43

What question did the use of a telescope by Hubble answer?

A

Is Earth the center of the universe


B

Is the sun the center of the universe


C

How do the planets move in the solar system


D

Are there more galaxies beyond the Milky Way

Answers

Answer:

The Answer is D

For the sake of maximizing hardware utilization in a multicore system with a many to many threading model, the relationship of the number of user threads U to the number of kernel threads K to the number of CPU cores P should be:

Answers

Answer:

"U > K > P" would be the appropriate answer.

Explanation:

When performing or executing the software, user threads (U) could easily be accomplished and therefore are typically wide in the amount to provide excellent or excellent performance. Multiple kernel threads could indeed be appointed to every other core as well as try to emulate the algorithm for scheduling.

PLEASE ANSWER QUICK
How can improving one’s reasoning skills also improve one’s performance on the job?
A. If one can improve one’s reasoning, one can also improve one’s physical fitness and athletic performance.
B. If one can improve one’s reasoning, one can perform anything.
C. High-performing workers always work reasonable schedules.
D. High-performing workers are able to analyze sophisticated streams of data and solve complex problems.

Answers

Answer: C

Explanation:

C high performance workers always work

what is the first things u do upon seeing this sheet?​

Answers

Answer:

umm ok

Explanation:

plz mark brainlyest

Mmmmmm yh, I’m not sure ??

how has the Internet of Things affected business​

Answers

Internet of Things devices can be connected to each other and controlled to improve efficiency,which in turn has direct effects on the productivity of the business. Hope this helps!

Answer:

Business equipment can be continually adjusted based on analysis of data

Explanation:

A P E X

Help me! I’ll mark you brainly ! Please help me I need this now

Answers

Explanation: For number 3 I would say shade and darkness.

nder a Huffman encoding ofnsymbols with frequenciesf1, f2, . . . , fn, what is the longest a codewordcould possibly be

Answers

Answer:

The longest codeword that could possibly be for "n" symbol is n-1 bits.

Explanation:

From the given information:

Suppose we are to consider a set of frequencies [tex]\mathtt{f_1,f_2,f_3 ...,f_n}[/tex], for which f is a symbol for the length n. Therefore, the longest codeword that could possibly be for "n" symbol is n-1 bits.

However, during the encoding for "n" in conjunction with n-2, then the possibilities for n are; [tex]\mathtt{\dfrac{1}{2}, \dfrac{1}{4}, ... \dfrac{1}{2^{n-2}}}[/tex]

We can conclude that the longest codeword that could possibly be for "n" symbol is n-1 bits.

When would you insert a merge field?

A. when updating the source document

B. when choosing which information you want to enter into a letter

C. when choosing which information you want to insert in a merged letter

D. when creating a document

Answers

Answer:

Once you have a data source connected to your document, adding merge fields is a way to personalize a document with information from the data source.

I believe it’s C, but please correct me if I’m wrong!!
Other Questions
the cost (in dollars) of making n birthday cakes is represented by C= 24n + 35. How many birthday cakes are made when the cost is $419? Which will best show lakes, rivers, and streams are healthy? The diagram below shows what happens to an atom of uranium-235 when bombarded by a neutron. Which isotope is represented by X in the diagram? Please help ASAP!! I will mark brainliest! 5. The role of mitosis in asexual reproduction has what effect on genetic variation?a. It greatly increases genetic variation.b. It limits genetic variation.C. It prevents genetic variation from occurring.d. It has no effect on genetic variation. What is the missing statement in this proof? A. AxWY AZYW B. AYAZ & AWAX C. WY=XZ e D. WY || XZ Most of Earth's atmosphere is made up of nitrogen gas. Nitrogen can alsoexist as a solid, liquid, or plasma. Four samples of nitrogen are each in adifferent state but have the same mass. Which statement about the relativeamounts of thermal energy in the samples is true?O A. The sample of solid has more energy than the sample of gas.B. The sample of liquid has more energy than the sample of solid.C. The sample of plasma has less energy than the sample of gas.D. The sample of liquid has less energy than the sample of solid. What type if narrator tells the story as if "you" are the main character? A. Third-person omniscient B. Second-person C. Third-person limited D. First-person Solve for g.18 = 3(g + 19) Who ever gets it right gets a Brainliest Help grade 12 please now math homework # 3-4 Which conjugation isnt correct?yo _______hagosalgooygo vengo 1. What is an equation of the line through (7, -1) with slope -3? What is the correct answer for both? GIVING BRAINLIST ASAP! PLS HELP Choose the sentence with correct punctuation and capitalization.A) The Nobel Prize committee is in Stockholm Sweden.B) The Nobel Prize Committee is in Stockholm, Sweden.C) The Nobel Prize Committee, is in Stockholm, Sweden,.D) The Nobel Prize committee is in stockholm Sweden. Which of these credit card features would be best for customers who want topay off the balance on a high-interest credit card?A. No fees for cash advancesB. Low fees for balance transfersC. A long grace periodD. An annual fee that can be waivedHELP ASAP PLEASE Explain a principal of moments of a force The temperature is -2. If the temperature rises by 15, what is the new temperature? 4 Complete the sentences with gone or been.1 Fiona isn't here. She's ... for a walk.