Examples of applying successful visual design principles to bring a web page together are _________________. (Choose all that apply)

Question 2 options:

a)

balance, contrast, and unity


b)

balance, contrast, and similarity


c)

gestalt, unity, and hierarchy


d)

gestalt, scale, and simplicity


e)

balance, control, and dominance

Answers

Answer 1

Answer:

I believe it's b

Explanation:

I'm straight


Related Questions

Write a program that asks the user to enter a series of single digit numbers with nothing separating them. Read the input as a C-string or a string object. The program should display the sum of all the single-digit numbers in the string. For example, if the user enters 2514, the program should display 12, which is the sum of 2, 5, 1, and 4. The program should also display the highest and lowest digits in the string.

Answers

Answer:

#include <stdio.h>

#include <string.h>

int main(){

   char number[100];

   printf("Number: ");

   scanf("%s", number);

   int sum = 0;

   for(int i =0;i<strlen(number);i++){

       sum+= number[i] - '0';

   }

           printf("Sum: %d",sum);

   return 0;

}

Explanation:

This declares a c string of 100 characters

   char number[100];

This prompts user for input

   printf("Number: ");

This gets user input

   scanf("%s", number);

This initializes sum to 0

   int sum = 0;

This iterates through the input string

   for(int i =0;i<strlen(number);i++){

This adds individual digits

       sum+= number[i] - '0';

   }

This prints the calculated sum

           printf("Sum: %d",sum);

   return 0;

The program that ask the user to enter a series of single digit number and display the sum of all the single digit number, highest number and lowest number is as follows:

x = input("input the series of number: ")

y = []

for i in x:

  y += i

integer_map = list(map(int, y))

print(sum(integer_map))

print(max(integer_map))

print(min(integer_map))

The code is written in python.

Code explanation:The first line of code ask the user for the series of numbers. The user input is stored in the variable "x"The y variable is an empty arraywe use the for loop to loop through the users series of number. Then add the looped items to the empty array.Then we map the string of list to an integersFinally, we print the sum , maximum and minimum number of the list.

learn more on python program: https://brainly.com/question/16025032?referrer=searchResults

How much water does the Hill family use per week?

Answers

Answer:

The Hill family uses69 pints

Explanation:

bc why not

Which view displays the records in columns and rows like excel worksheet​

Answers

Answer:

Datasheet View

Explanation:

Chapter 1

A B

Database Template A preformatted database designed for a specific purpose.

Datasheet View The Access view that displays data organized in columns and rows similar to an Excel worksheet.

Cell address A4 in a formula means it is a _________Mixed cell reference

A. Relative cell reference

B. Mixed cell reference

C. Absolute cell reference

D. All of the above

Answers

Answer:

A. Relative cell reference.

Explanation:

A relative cell reference is like a pointer to a cell or range of cell in Excel. In Excel all cell references, by default, are relative cell references.

In the given instance, the cell address A4 in a formula means it is a relative cell reference. If there would have been a $ sign before A4, then it will be an absolute cell reference. But since, it is without dollar sign, it is a relative cell reference.

Therefore, option A is correct.

Match the IP Protections Patent, Copyright and Trademark into the following cases:

a. books, poems
b. music, movies, paintings
c. company logo
d. software
e. combinations of materials to make drugs

Answers

Answer:

A) copyright

B) copyright

C)Trade mark

D) copyright

E)Patent

Explanation:

Patent can be regarded as a form of intellectual property which helps the owner of an invention to others to sell or use the invention for some period of time. Example of this is a patent that protect microwave oven.

trademark is form of intellectual property, this could be inform of symbols, words that differentiate the product of a party from another. Example of this is a bite of apple that represents apple products.

Copyright can be regarded as a legal right given to those that owns a intellectual property which gives him/her right to copy and exclude others from reaping from where they did not sow. The owner get exclusive right to reproduce the copy.

Below is the match of the intellectual property with the examples.

a. books, poems<> Copyright

b. music, movies, paintings<> Copyright

c. company logo<> Trademark

d. software<>Copyright

e. combinations of materials to make drugs<> patent

17. Write a SELECT query for the palateE4 database that produces a result grid listing paintName, and a count of the occurrences of each paintName value where the count for each paintName is greater than 2. Sort the result grid in ascending sequence by paintName.

Answers

Answer:

SELECT paintname, COUNT(paintname) as count_paintname

FROM paint

GROUP BY paintname HAVING COUNT(paintname) > 2

ORDER BY paintname

Explanation:

The structured query language or SQL statement returns two columns of paintname and the count of the distinct paint names in the paint table with rows of grouped paint names greater than two and in the ascending order of the names.

Question 5
2 pts
The type of control structure that
causes a branch forward at some
point, causing a portion of the
program to be skipped, is:
a selection structure.
O a seguential structure
a repetition structure
a loop structure

Answers

Answer:

Selection structure.

Explanation:

In a decision structure (selection structure), there is a branch forward at some point, which causes a portion of the program to be skipped. A loop structure (repetition structure) contains a branch to a previous statement in the program module, which results in a block of statements that can be executed many times.

How will Excel summarize the data to create PivotTables? summarize by row but not by column summarize by column but not by row summarize by individual cells summarize by row and by column

Answers

Answer:

D. summarize by row and by column

Answer:

D.

Explanation:

Question 3 of 10
How is plagiarism both easier and harder in the Internet age?
A. It is both easier and harder because you are never sure what is
copyrighted and what is public domain.
OB It is easier because people dont really expect you to follow the
copyright regulations. It is harder to find exactly what you want.
It is easier because you there are too many sources for teachers
to know them all, it is harder because you will be caught.
Dit is easier because you have access to more information. It is
harder to get away with because anyone can conduct a word-

Answers

Answer: D is your answer

Plagiarism is copying someone's work

Plagiarism both easier and harder in the Internet age because you have access to more information. It is harder to get away with because anyone can conduct a word  D is your answer

Answer:

The answer you are looking for would be "B.) It is easier because people don't really expect you to follow the  copyright regulations, but it is harder to find exactly what you want." When you look a question up for an essay, summary, or even a test, the answer you need may not always be on the web, and you may need to visit several different websites to mash together a conclusion on your topic. However, people often copy topics nowadays, and it is easier for them to change a few words and get away with it then every before. Teachers have become much more lenient, therefore it is much easier to plagiarize something.

what is star topology

Answers

every node connects to a central network device. like a hub, switch, or computer.
It’s a local area network in which all nodes are individual connected to a central connection point, like a hub or a switch

What are two main components to using functions (there are three from you to choose from)? What do each do? Why are they important?

Answers

Answer:

function is a self-contained program segment that carries out some specific, well-defined task. Every C program consists of one or more functions. One of these functions must be called main. Execution of the program always begins by carrying out the instructions contained in main. Note that if a program contains multiple functions then their definitions may appear in any order. The same function can be accessed from several different places within a program. Once the function has carried out its intended action, control is returned to the point from which the function was accessed. Generally speaking, a function processes information passed to it from the calling portion of the program, and returns a single value. Some functions, however, accept information but do not return anything.

A function definition has two principal components: the first line (including the argument declarations), and the so-called body of the function.

The first line of a function takes the general form data-type  name(type 1  arg 1,  type 2  arg 2,  ...,  type n  arg n)

where data-type represents the data type of the item that is returned by the function, name represents the name of the function, and type 1, type 2, ..., type n represent the data types of the arguments arg 1, arg 2, ..., arg n. The allowable data types for a function are:

int       for a function which returns an integer value

double    for a function which returns an floating-point value

void      for a function which does not return any value

The allowable data types for a function's arguments are int and double. Note that the identifiers used to reference the arguments of a function are local, in the sense that they are not recognized outside of the function. Thus, the argument names in a function definition need not be the same as those used in the segments of the program from which the function was called. However, the corresponding data types of the arguments must always match.

The body of a function is a compound statement that defines the action to be taken by the function. Like a regular compound statement, the body can contain expression statements, control statements, other compound statements, etc. The body can even access other functions. In fact, it can even access itself--this process is known as recursion. In addition, however, the body must include one or more return statements in order to return a value to the calling portion of the program.

A return statement causes the program logic to return to the point in the program from which the function was accessed. The general form of a return statement is:

return  expression;

This statement causes the value of expression to be returned to the calling part of the program. Of course, the data type of expression should match the declared data type of the function. For a void function, which does not return any value, the appropriate return statement is simply:

return;

A maximum of one expression can be included in a return statement. Thus, a function can return a maximum of one value to the calling part of the program. However, a function definition can include multiple return statements, each containing a different expression, which are conditionally executed, depending on the program logic.

Note that, by convention, the main function is of type int and returns the integer value 0 to the operating system, indicating the error-free termination of the program. In its simplest form, the main function possesses no arguments. The library function call exit(1), employed in previous example programs, causes the execution of a program to abort, returning the integer value 1 to the operating system, which (by convention) indicates that the program terminated with an error status.

The program segment listed below shows how the previous program factorial.c can be converted into a function factorial(n) which returns the factorial (in the form of a floating-point number) of the non-negative integer n:

double factorial(int n)

{

 /*

    Function to evaluate factorial (in floating-point form)

    of non-negative integer n.

 */

 int count;

 double fact = 1.;

 /* Abort if n is negative integer */

 if (n < 0)

  {

   printf("\nError: factorial of negative integer not defined\n");

   exit(1);

  }

 /* Calculate factorial */

 for (count = n; count > 0; --count) fact *= (double) count;

 /* Return value of factorial */

 return fact;      

}

Explanation:

A network manager is interested in a device that watches for threats on a network but does not act on its own, and also does not put a strain on client systems. Which of the following would BEST meet these requirements?

a. HIDS
b. NIDS
c. NIPS
d. HIPS

Answers

Answer:

Option b (NIDS) is the correct choice.

Explanation:

NIDS helps to detect suspicious internet activity. Throughout order to determine all congestion, along with all network packets, unfaithful user information was indeed probably recommended. They were indeed technologies that are already constructively divided up in less than service providers that ineffectively investigate traffic through the systems on something they have been located.

All those other available options aren't closely linked to the scenario in question. Therefore this obvious response is the correct one.

How would you open the web browser in Linux and still have access to the Linux terminal?

Answers

Answer:

Use the command "sensible-browser" I could be wrong I have not used linux in some time.

Explanation:

QUESTION 1

Which part of an Ethernet Frame uses a pad to increase the frame field to at least 64 bytes?

Answers

Answer:

Data field.

Explanation:

In Computer Networking, data encapsulation can be defined as the process of adding a header to a data unit received by a lower layer protocol from a higher layer protocol during data transmission. This ultimately implies that, the header (segment) of a higher layer protocol such as an application layer, is the data of a lower layer such as a transportation layer in the Transmission Control Protocol and Internet Protocol (TCP/IP).

Basically, an Ethernet Frame is one of the IEEE 802.3 data encapsulation standards.

An Ethernet Frame can be defined as the building blocks or bits contained in a single packet of data that is being transmitted over an Ethernet network or connection. When data are transmitted, a frame check sequence (FCS) containing a 4-bytes is used to detect or check for any error in a frame and to ensure no frame data was corrupted in the course of the transmission.

In the transmission control protocol (TCP), all frames that are being transmitted must have a minimum of 64-bytes in length and as such when small packets are encapsulated, some additional bits referred to as pad are typically used to increase the frame size to at least 64-bytes, which is the minimum size.

Hence, a data field is the part of an Ethernet Frame that uses a pad to increase the frame field to at least 64 bytes.

Justify the importance of Computer and internet security system.​

Answers

It helps keep your information protected. This reduces the risk of falling victim of data theft and sabatoge. Network security helps protect your computer from harmful spyware as well

Cartesian Coordinate Robot is sometimes called? *

Answers

Answer:

rectilinear

Explanation:

Other Questions
A tape diagram. There are 320 skateboards sold this week out of 100 skateboards sold last week. There are question mark skateboards sold this week out of 25 skateboards sold last week.The Super Sports store sold 25 skateboards last week. This week, they sold 320% as many. Find 320% of 25.The percent written as a part-to-whole ratio is:Part: Whole: The equivalent ratio you can use to find theanswer is:Part: Whole: Super Sports sold skateboards this week. True or False: There are more than 25 Sexually Transmitted Diseases. Please help me. Thank you 8x - 12DKEB.203. ABCD is a rectangle. Use the properties of a rectangle to determine the value of x.A. X = 5B. X = 4OC. x = -2D. X = -1.5 Read the story.Zac zipped up his jacket as he walked out the door for school. The wind blew and he could see his breath. He pushed his hands down intohis pockets and felt the soft fuzz at the bottom. His mind wandered back to last winter when his baby sister, Leila, was born. Her blankets felt warmand soft when he held her. He loved snuggling with her and telling her all of the things he shared with no one else. Leila was a good listener. Helooked forward to the peaceful time with his little sister after the long, loud days at school. Nothing had ever seemed as soft and relaxing as thecooing sounds she made. If only the other kids in his class could be more like Leila.What does the flashback in the story help readers understand about Zac?1. He is quiet and gentle.2. He has a playful nature,3. He likes to spend time alone.4. He misses being an only child. How did building monasteries help spread Christianity under Charlemagne?People became monks to gain the benefit of living in monasteries.People became Christians because monks taught and cared for them.People living in poverty had to become Christian to get help from monks.People who needed work became Christian to obtain jobs from monks. Which of the following is not a cnidarian? a. hydra b. sea anemone c. clam d. coral Someone please help me with this I got it wrong Ill give brainliest Which sentence uses its root word correctly? 1. I injured my wrist, so I went to the podiatrist.2. My mother took me to the nail salon to get a manuscript.3.I will progress from 6th grade to 5th grade.4. The seniors will graduate in June. The graph of a linear function p is shown on the grid. If m(x)=x and p(x)=m(x)+n, what is the value of n? a water tower casts a shadow that is 21ft long.a tree casts a shadow that is 8ft long estimate the height of the water tower How did Black Codes affect the treatment of Black people on the South Write an equation that represents the transformations formed by the following items: (a) horizontally shifting the graph 4 units to the left of f(x) = x and then vertically compression by a factor of 1/3(b) vertically stretching the graph by a factor of 4 of f(x) = x and then vertically shifting the graph 3 units up (c) horizontally stretching the graph of f(x) = x by a factor of 2 and then vertically shifting the graph 6 units down the diameter of a circle is 4 cm. find it's area in terms of pi?! Fill in the blank with the French word that best completes the following sentence.Je ne veux pas te _________.robecommandercoinblesser i need help with this. k4nr2iub9g9tu59th935u8u598i What's the answer to this? Please translate this into french ASAP!!!!!My mom's name is Angela and my dad's name is Ron, They are both very caring.I have a brother, his name is Hayden. He's very artistic. Trisha is my sister in law. She's very intelligent. Chloe is my niece. Shes six months old. Summarize Albert Falls role in the Teapot Dome scandal.