How can you represent a graphic element in a wireframe?You can specify a graphic element by using an)

Answers

Answer 1
Answer:

Answer:

The answer is "in the form of design, color and graphic".

Explanation:

The wireframe is also recognized as 'skeleton', it is a static, low-fidelity description of various layouts, which provides shapes to the component. It is indeed a visualization of even an interface using only basic shapes.

It is a 2D illustration of a site user interface, which primarily focuses on capacity planning and priority of information, features available, and role expectations like, storyboards which do usually not include design, color, or graphics.

Answer 2
Answer:

Answer:

box

Explanation:

i just took the quiz and that's the correct answer they're looking for :)


Related Questions

What are the differences betweenCONS, LIST, and APPEND?
g Write a line of code to invoke a function named RandNum, which accepts no parameters, and storing the return value in a variable called num (which has already been defined). Separate each item with 1 space (except around the parentheses), and end the line with a semi-colon.
What are the defenses to protect against these attacks?
A computer processor stores numbers using a base of: _____.a) 2b) 10c) 8d) 16
Create an application (that uses the SortedABList) that allows a user to enter a list of countries that he or she has visited and then displays the list in alphabetical order, plus a count of how many countries are on the list. If the user mistakenly enters the same country more than once, the program should inform the user of their error and refrain from inserting the country into the list a second time.

What is the magnitude of the largest positive value you can place in a bool? a char? an int? a float?

Answers

Answer:

A bool can hold only true or false values.

A char can hold maximum 65535 characters.

An int can hold maximum positive value of 2,147,483,647.

A float can hold maximum positive value of 3.4 x 10^{38}.

Explanation:

Primitive data types in Java language can be categorized into boolean and numeric data types.

Numeric can be divided further into floating point and integral type. Floating data type includes float and double values while and integral data type which consists of char, int, short, long and byte data types.

Every data type has a range of values it can hold, i.e., every data type has a minimum and maximum predefined value which it is allowed to hold. The intermediate values fall in the range of that particular data type.

Any value outside the range of that particular data type will not compile and an error message will be displayed.

The data types commonly used in programming are boolean, char, int and float.

A boolean variable can have only two values, true or false.

A char variable can hold from 0 to 65535 characters. Maximum, 65535 characters are allowed in a character variable. At the minimum, a char variable will have no characters or it will be a null char variable, having no value.

An int variable has the range from minimum -2^{31} to maximum 2^{31} – 1. Hence, the maximum positive value an int variable can hold is (2^{31}) – 1.

A float variable can hold minimum value of 1.4 x 10^{-45} and maximum positive value of 3.4 x 10^{38}.

The above description relates to the data types and their respective range of values in Java language.

The values for boolean variable remain the same across all programming languages.

The range of values for char, int and float data types are different in other languages.

Write a program that declares variables named init1, init2, and init3, to hold your three initials. Display the three initials with a period following each one, as in J.M.F.

Answers

Answer:

Written in Python

init1 = input("initials 1: ")

init2 = input("initials 2: ")

init3 = input("initials 3 ")

print(init1+"."+init2+"."+init3)

Explanation:

This line prompts user for init1 and gets the input

init1 = input("initials 1: ")

This line prompts user for init2 and gets the input

init2 = input("initials 2: ")

This line prompts user for init3 and gets the input

init3 = input("initials 3 ")

This line prints out the required output

print(init1+"."+init2+"."+init3)

what would be the address of the cell, which is intersect of the second row and third column in a worksheet

Answers

Answer: The address of the cell is C2

Explanation:

In a worksheet like Microsoft Excel, there are rows and columns. It tags rows with numbers and tags columns with alphabet letters. For example, the first row is 1, the second row is 2, the third row is 3, and so on. Similarly, the first column is A, the second column is B and so on.

We want to know the address for the intersect of the second row i.e. 2, and the third column i.e. C in a worksheet. In other words, it might intersect column C and row 2.

A cell is a box where a row and column intersect. The address of the cell starts with the column, and next there is the row. In that case, we can conclude that the address of the cell is C2.

C2 or B3. This is if you are talking about Microsoft Excel.

Some operating systems have a tree–structured file system but limit the depth of the tree to some small number of levels. What effect does this limit have on users? How does this simplify file system design (if it does)?

Answers

Answer:

See attached pictures.

Explanation:

In cell B13, create a formula without a function using absolute references that subtracts the values of cells B5 andB7 from cell B6 and then multiples the result by cell B8. please help with excel!! I'm so lost

Answers

Answer:

The formula in Excel is:

=($B$6 - $B$5 - $B$7)* $B$8

Explanation:

Required

Use of absolute reference

To reference a cell using absolute reference, we have to include that $ sign. i.e. cell B5 will be written as: $B$5; B6 as $B$6; B7 as $B$7; and B8 as $B$8;

Having explained that, the formula in cell B13 is:

=($B$6 - $B$5 - $B$7)* $B$8

A network engineer is troubleshooting a small LAN network with one border router, GW01 that connects to the Internet Service Provider’s (ISP) network. GW01 uses its Serial 0/2/1 interface to connect to the ISP’s router. Everyone on the LAN network lost connectivity to the Internet. Upon troubleshooting the issue, the network engineer notices the following message after typing show ip route. Gateway of last resort required but not set. What do you suggest the network engineer do to rectify this issue? Assume the problem is only on the organization’s LAN side of the network. Provide as much information as possible including specific commands and all required parameters.

Answers

Answer:

Create a default route on the border router. Check the NAT configuration and network addresses.

Explanation:

The LAN or local area network is a network meant for a small geographic area, ranging from a small home office to office building.

For a LAN to be connected to the internet, it is subscribed to a ISP. The ISP provides the internet/ global WAN resources to the LAN. The border router or stub is configured with a gateway of last resort or default route to route packets to the WAN network and a Network address translation, NAT, is used for a large LAN.

The syntax for default route configuration on the border router is;

Router(config)# IP route 0.0.0.0 0.0.0.0 s0/0/1