PLS I WILL GIVE BRAINLIEST IF CORRECT

Select the correct answer.

Stacy is in the process of creating a storyboard for her personal website, but she is unable to decide which storyboarding technique to use. Which technique would work best for her?


A. hierarchical
B. linear
C. webbed
D. wheel

Answers

Answer 1

Answer:webbed

Explanation:

k

Answer 2

Answer:

Webbed

Explanation:


Related Questions

You want to search for contacts in your email program. You enter the person’s first name and last name in the search box. You want the computer to display the contact with the exact first and last name as well as contacts with either of the names. Which logic gate idea are you using here?
A.
AND
B.
NOT
C.
NAND
D.
OR
E.
NOR

Answers

Answer:

NOR

Explanation:

Answer:

Correct answer: D. OR

Explanation:

Took test

how are you suppose To beat yunalesca on final fantasy 10 anyway

Answers

Answer:

be good at the game

Explanation:

get better

Asymmetric encryption uses only 1 key.

A)
False

B)
True

Answers

A.) false

Symmetric encryption uses a single key that needs to be shared among the people who need to receive the message while asymmetric encryption uses a pair of public key and a private key to encrypt and decrypt messages when communicating.
A) false is the answer

Which of the following is a popular search engine?

Apple.com
Bing.com
Firefox.com
Microsoft.com

Answers

Answer:

We conclude that Bing is the only option that is correct. Thus, Bing.com is a popular search engine.  

Explanation:

Given the option

AppleBingFirefoxMicrosoft

From the given option, we can easily determine that Bing is the only popular search engine using which we can carry out web searches. It means we can search for the information in a systematic way based on the input web query we write.

Please note that Bing is a web-based search engine, operated by Microsoft.

All the other options are incorrect.

Apple is a famous technology company; Firefox is an open-source web browser, free to use. and Microsoft is another tech company.

Therefore, we conclude that Bing is the only option that is correct. Thus, Bing.com is a popular search engine.  

The popular search engine is Bing.com.

Thus, option (B) is correct.

Bing.com is a popular search engine. It is owned and operated by Microsoft and is one of the well-known search engines used by people worldwide to find information on the internet.

The other options listed Apple.com, Firefox.com, and Microsoft.com are not search engines; they are websites related to specific companies Apple, Mozilla Firefox, and Microsoft but do not function as search engines like Bing.

Apple is a famous technology companyFirefox is an open-source web browser, free to use.and Microsoft is another tech company.

Therefore, Bing.com is a popular.

Thus, option (B) is correct.

Learn more about Search engine here:

https://brainly.com/question/32419720

#SPJ6

Write a program (using functions) starting from directives to compute and display the transpose of a matrix of dimension m x n. [Note: Here, transpose of a matrix means the element at row r and column c in the original is placed at row c and column r of the transpose]. (Programming in C)

Answers

Answer:

#include <iostream>

#include <cstdlib>

using namespace std;

int m, n;

void transpose(int matrix[]){

  int transp[m][n];

  for (int i = 0; i < n; i++){

     for (int j = 0; j < m; j++){

        transp[j][i] = matrix[i][j];

        cout<< transp[j][i]<< " ";

     }

     cout<< "\n";

  }

}

int main(){

  cout<< "Enter the value for n: ";

  cin>> n;

  cout>> "Enter the value for m: ";

  cin>> m;

  int mymatrix[n][m];

  for (int i = 0; i < n; i++){

     for (int j = 0; j < m; j++){

        mymatrix[i][j] = (rand() % 50);

     }

  }

  transpose(mymatrix);

}

Explanation:

The C source code defined a void transpose function that accepts a matrix or a two-dimensional array and prints the transpose on the screen. The program gets user input for the row (n) and column (m) length of the arrays. The C standard library function rand() is used to assign random numbers to the array items.

If A = 5 and B = 10, what is A * B equal to?

Answers

Answer:

50

Explanation:

5 times 10 equals 50

Answer:

50

Explanation:

If A=5 and B= 10 you would do 5 times 10 which equals 50

Internet Explorer inserts the Flash Shockwave Player as a(n) ____ control. Group of answer choices AVI ActiveX Class Quicktime

Answers

Answer:

Internet Explorer inserts the Flash Shockwave Player as a(n) ____ control.

ActiveX

Explanation:

ActiveX controls are small apps, also called “add-ons,” that allow websites to provide content such as videos and games. They also enable web interaction, make browsing more enjoyable, and allow animation. However, these ActiveX controls can sometimes malfunction, produce unwanted contents, or install spyware in your system because they exercise the same level of control as the computer user.

Which of the following examples requires a citation in a paper you're writing?
A. General information you already knew but want to clarify or conform
B. The table of contents
C. A paraphrasing of your original work in a different section of your paper
D. A direct quotation that is marked off by quotation marks

Answers

Answer:

D. A direct quotation that is marked off by quotation marks

Explanation:

Quotation marks are responsible for indicating that some texts are explicitly referenced in a paper with no changes made. This type of quote must be very well referenced in the paper, both on lines where the quotes are written with author's surname, date of publishing, page referenced, and also on the bibliography at the end of the paper with all these references very well detailed, including text's title, translators (if any), number of editions, publishing house, and more. It is important to highlight it depends on the policies of publishing the paper must follow because there are different patterns for referencing and quoting.

numA = 3
numB = 2
Result = numA ** numB

Answers

Answer:

The result of the following code will be 9

Explanation:

There are several operators used in Python to do mathematical calculations.

** operator is used for exponents.

i.e.

a ** b mathematically means a^b

Here in the given code

3 is assigned to numA and 2 is assigned to numB

Result will be equal to 3^2

Hence,

The result of the following code will be 9

Answer:

9

Explanation:

The double asterisk is the exponent operator.

Three to the second power is nine.

If you have 128 oranges all the same size, color, and weight except one orange is heavier than the rest. Write down a C++ Code/Algorithm to search the heavy orange, in how many steps would you be able to find it out?

Answers

Answer:

#include <iostream>

using namespace std;

void Search_heavy_orange(int arr[], int l, int r, int x)

{

int count = 0, m = 0;

while (l <= r) {

 m = l + (r - l) / 2;

 // Check if x is present at mid

 if (arr[m] == x) {

  count++;

 }

 // If x greater, ignore left half

 if (arr[m] < x) {

  l = m + 1;

  count++;

   

 }

 

 // If x is smaller, ignore right half

 else {

  r = m - 1;

  count++;

 }

}

cout << "............For Worst Case......." << endl;

cout << "Orange with heavy weight is present at index " << m << endl;

cout << "Total number of step performed : " << count << endl;

}

int main()

{

// Assuming each orange is 100 gm and the weight of heavy

// orange is 150 gm

int orange_weight[128];

for (int i = 0; i < 127; i++) {

 orange_weight[i] = 100;

}

// At worst case the heavy orange should be at last position

// inside the basket : 127

orange_weight[127] = 150;

// We will pass array , start index , last index and the search element

// as the parameters in the function Search_heavy_orange

Search_heavy_orange(orange_weight, 0, 127, 150);

return 0;

}

Explanation:

In 100 words or less, discuss why ethics is especially important for computer professionals, as it pertains to addressing professional challenges, formulating decisions and policies used to guide actions and as a means to fill the gap between newly created technologies and general legal standards.

Answers

Explanation:

In every profession, codes of ethics are usually on ground which are designed to guide professionals in carrying out their responsibilities with honesty and integrity.

Ethical codes are very necessary and important for technical managers.

It motivates professionals to carry out their duties well and also provide an education for new employees on how to carry out their professional duties.

A code of ethics tells professionals their responsibilities at the workplace and certain punishments are set in the presence of violations.

This code forbids professionals from having any involvements in deceptive practices. Computer professionals have to make sure that they know their moral responsibilities and they also have to know those to whom they are responsible.

Those Professionals that are involved in the process of data handling and data processing are mostly responsible for their employers and also the public.

For this, there should be guidelines that these professionals must follow. The job of Data handling is a very sensitive one, computer professionals must first be responsible citizens.

The Code of ethics sets limits to the activities of computer professionals. For example, when we talk about data processing, we know how much privacy is needed here. Privacy is a very great concern because there are hackers who are on the lookout to steal your data.

The Code of ethics stops professionals from engaging in discussions about their job outside the workplace. It makes professionals more sincere and also more dedicated to their job. It also helps them take important decisions as well as policy formulations to guide actions. Code of Ethics created an awareness of the legal standards of the company to the professional who works in that company.

Hi, Everybody i have a question it is almost my B-day i want this lego set
(Nintendo Entertainment System™) BUT THEY ARE SOLD OUT
I NEED HALP

Answers

Answer:

You can look at different websites of look on an app for people selling it, or something :p

Explanation:

7. Malware could A. cause a system to display annoying pop-up messages B. be utilized for identity theft by gathering personal information C. give an attacker full control over a system D. all of the above Answer: ________

Answers

Answer:

D

Explanation:

Malware can be used for many things, a click of a button can send complete access to the attacking system. Malware comes in all formes and powers.

Write your own accessor and mutator method for the Rectangle class instance variables. You should create the following methods: getHeight setHeight getWidth setWidth getArea getPerimeter toString- The output of a rectangle with width 10 and height 4 method should be:

Answers

Answer:

Public int getHeight(){

return height;

}

public int getWidht(){

return widht;

}

public int setHeight(int change){

height = change;

}

public int setWidht(int change){

widht = change;

}

public int getPerimeter(){

int perimeter = 2 ( getWidht() + getHeight ());

return perimeter;

If the width is 10 and height 4, the perimeter should be 28.

Explanation:

An accessor in Java is a method that is used to get the value of an object variable. The program above has three accessor methods, getHeight, getWidht and getPerimeter.

Mutators are methods that is used to change of mutate the value of object variables. They are denoted or identified by the set prefix in their names. From the class code, the mutator are setHeight and setWidht.

Your project will require a 7-day work week rather than the traditional 5-day. How can you adapt the software to this new schedule

Answers

Answer:

Click on the Project Tab then the Change Working Time Tab

Explanation:

The software here is believed to a MICROSOFT PROJECT. This is used often by project managers to manage projects particularly in terms of project duration, methods of the undertaking, resource management, reports, etc.

Hence, to adapt the software to this new schedule to a 7-day work week from the traditional 5-day, one should "Click on the Project Tab then the Change Working Time Tab."

This can be done by

1. Click on the Project tab, then click on Properties group

2. Click on Change working time

2. From the Change Working Time window click on "Create new calendar"

3. Name your calendar a name, in this case, "7 day week, " from there on keep following the prompt questions to finish the settings.

4. After the working times are set, click Ok.

turns on her laptop and gets the error message "OS NOT FOUND." She checks the hard disk for damage or loose cable, but that is not the case. What could be a possible cause?

Answers

It needs an Operating System like a cable or something that will help it operate look for more and double check

One vulnerability that makes computers susceptible to walmare is:
A. A using antimalware software
B. Using password software
C. Using old versions of software
D. Using encryption on sensitive files

Answers

C using old versions of software

Write a statement that opens a file named 'client_list.txt' for appending and assigns the resulting file object to a variable named f.

Answers

Answer:

f = open('client_list.txt', 'a+')

Explanation:

The question is answered in python.

The syntax to open a file is:

file-object-variable-name = open('file-name','file-mode')

In this question:

The file-object-variable-name is f

The file-name is client_list.txt

The file mode is a+ which means to append.

Hence, the statement that does the instruction in the question is:

f = open('client_list.txt', 'a+') or f = open("client_list.txt", "a+")

active cell is indentifed by its thick border true or false​

Answers

Answer:  It's identifed by its thick border so its true

Answer: true is correct

Which is the best video game antagonist?

A. Link
B. Cloud Strife
C. Mario
D. The Dragonborn

Answers

Answer:

mario Martinez was making a use of the surge how he might help him out side

Mario.

Link, I need more letters so I am doing this

How might use of computer and knowledge of technology system affect personal and professional success

Answers

Answer:

social media

Explanation:

What problem can enabling compression present when you are using ssh to run remote X applications on a local display?

Answers

Answer:

Compression over ssh connection would increase network latency, using most of its bandwidth to crippling network efficiency.

Explanation:

SSH is a protocol in computer networking used by administrators to manage a remote network. Various commands are run remotely with this connection. The compression command is enabled in the remote network with the -C option in the ssh configuration. Compression over ssh is only favorable over low bandwidth networks.

how to create use an array of Course objects instead of individual objects like course 1, course 2, etc

Answers

Answer:

To save the course object instances in an array, use;

Course[] courses = new Course[7];

courses[0] = new Course("IT 145");

courses[1] = new Course("IT 200");

courses[2] = new Course("IT 201");

courses[3] = new Course("IT 270");

courses[4] = new Course("IT 315");

courses[5] = new Course("IT 328");

courses[6] = new Course("IT 330");

Explanation:

The java statement above assigns an array of size 7 with the course class constructor, then order courses are assigned to the respective indexes of the new array.

In dreamweaver name two attributes

Answers

Answer:

Explanation:

add an id and class

Please have a look at the screenshot below

Answers

C. Reliability

Because of the network and recovery time



Plz give brainliest

Construct a query to count the number of establishments (named NumOfEstablishments) that start with the letters 'Mc'.

Answers

Answer:

SELECT COUNT(*) AS NumOfEstablishments

FROM establishment

WHERE aka_name  LIKE "Mc%";

Explanation:

The SQL or structured query language query statement uses the 'SELECT' clause to read or retrieve data from the database, the 'FROM' clause specifies the table from which data is retrieved (in this case, the establishment table) while the 'WHERE' clause uses the 'LIKE' operator to set a condition for the rows to be retrieved (in this case, NumOfEstablishments columns starting with Mc). The LIKE operator uses the '%' character to specify one or more characters.

Which tools can Object Drawing Mode be applied to?
Line tool
Rectangle Tool
Oval Tool
Pencil tool
Pen Tool
Brush Tool

Answers

Answer:

• Line Tool

• Rectangle Tool

• Oval Tool

• Pencil Tool

• Brush Tool.

Explanation:

When people want to animate when using the Adobe Animate CC, it is vital for them to know how to draw shapes like squares, lines, ovals, rectangles, and circles. This is to enable such individuals understand how to draw objects as it can be difficult if they do not know how to draw these shapes.

The tools that Object Drawing Mode be applied to include:

• Line Tool

• Rectangle Tool

• Oval Tool

• Pencil Tool

• Brush Tool.

When the tool is being selected, it should be noted that the option for the drawing mode will be shown in the Property Inspector panel or it can also be seen in the tools panel.

help:(What are the uses of various lights? How are they all different? How do you decide on their usage? How can you use natural light to your advantage? Discuss.​

Answers

Answer:

This is one of the most common types of lighting. Ambient light is a soft glow that blankets your space just enough for you to function without causing a harsh glare. In photography and cinematography, ambient light is considered the "natural light" within a room. In décor, ambient light is very similar, except you create the ambient light by making the room's lighting as natural and flat as possible. While ambient light is meant to get you safely from point A-to-B, it is not ideal for working closely with things or to highlight things around your space. When used correctly, ambient light creates a fantastic environment to relax from an overly stressful day or to have a warm conversation with an old friend. Ambient lighting is often referred to as mood lighting, because this light captures the soft curves of your face and allows your pupils to dilate slightly (a physical sign of affection). Some yoga studios have even begun using the softer ambient lighting in their classes to help draw stress from the body. This is a smaller more concentrated light. You want task lighting around when you’re working. In fact, some people call it office lighting. Task lighting is meant to help you see when you’re doing projects in which you need a finer light, such as, reading, cooking, writing, sewing and many other things. Task lighting only works well when it is used as a contrasting light. For example, if you have a low lit room with a swing arm lamp turned on over your desk, the light over the desk surface will be more effective with less glare or shadow-effect than if the entire room was lit with a brighter light. Task lighting helps naturally stimulate your brain. The contrasting light allows you to be more alert and concentrated. This will help you see more details as you work, creating higher quality results. This is why many businesses choose to use task lighting in their offices.

Explanation:

Lights can perform functions such as the illumination of rooms, decorations, etc.

Light is a powerful tool that can be used in setting a particular mood or drawing attention to the products in a store. There are several types of light such as:

Ambient lighting: It is used for lighting up a room. It gives a uniform level of illumination as it creates an overview of a room. Examples include a chandelier, table lamp, track light, etc.

Task lighting: It illuminates the task that a person is carrying out. Such tasks include reading, computer work, cooking, etc.

Accent lighting: It's used to focus on a particular point of interest in order to achieve the desired effect. It is usually used to highlight an architectural feature, sculpture, or a collection of objects.

Read related link on:

https://brainly.com/question/22697935

A two-dimensional array has been defined to hold the quantity of each of 5 different healthy snack products sold in a tuckshop during the past three months. The array is declared as follows: sales = [ [ 0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0] ] Indexing of the array starts at 0, so the sales of the first product in the second month is held in sales[1][0].

Answers

Answer:

1

Explanation:

[0] = 1

[1] = 2

[3] = 3

and so on...

What is this screen called? (I attached a picture)
A. Graph Screen
B. Y Editor Screen
C. Table Screen
D. Window Screen

Answers

Answer:

i believe it's a y editor screen

The answer is graph screen (:
Other Questions
Which number should each side of the equation 45x=8 be multiplied by to produce the equivalent equation of x = 10?-4/51/55/45Please answer FAST!!! ____is the planet that is most similar to earth Which topic could you use in classification writing?A. Describe how to cook over a campfire.B. Analyze why teenagers love fast food.C. Describe ways to raise money for a class trip.D. Explain why adults dislike loud music.E. Explain why teens prefer driving or taking the bus more than biking. chapter 8 summary hunger games if a right angle triangle has one side with 3cm and the other with 4cm how do i get the last side In square ABCD, diagonal DB is drawn. If the m 3 - 7x plus 2x when x =3 A rope of water twisted and whirled from a brass faucet, filling the tub. I sat in the cold water up to my neck and discovered that I could slide down the back of the tub and hit the bottom with a great splash. When my water party was interrupted, both the bathroom and I got a scrubbing.Barrio Boy,Ernesto GalarzaComplete the sentences below.The phrase "twisted and whirled" has a connotation.The phrase "a great splash" has a connotation.The phrase "water party" has a connotation.The phrase "got a scrubbing" has a connotation. Which statement is a clue that helps show the authors attitude toward Young? At Leslie's school, the ratio of boys to girls is 11 to 12. At Mark's school, the ratio of boys to girls is 41 to 48. If both schools have the same totalnumber of students, which statement about the number of boys at Mark's and Leslie's schools is true?A There are more boys at Mark's school than at Leslie's school because the ratio 11 to 12 is greater than the ratio 41 to 48.B. There are more boys at Mark's school than at Leslie's school because the ratio 41 to 48 is greater than the ratio 11 to 12.C. There are more boys at Leslie's school than at Mark's school because the ratio 41 to 48 is greater than the ratio 11 to 12.There are more have at lectia's chinoithan at Marvis erhont harnuce the ratio 11 to 17 i nreater than the ratin 41 m GRCopyright 2020 illuminate Education, Inc. All Rights RTIINTL It says find value of x? Where does compression often occur? PLEASE ANSWER!!Question 2 of 10Which of the following would best work as a topic sentence in a paragraph?A. Therefore, a hybrid will save you money.B. Hybrids get better mileage than non-hybrids, often by as much as10 to 15 miles per gallon.C. Other alternatives, such as the hydrogen fuel cell, are not currentlyavailable.D. There are three main reasons to buy a hybrid car. Which graph represents y as a function of x? 4 ptsQuestion 1Alan is decorating for a party. He wants one color of streamer, one type offlower, and one color of tablecloth. The streamers can be red, blue, or yellow. The flowers can be tulips, daisies, or roses. The color of the tablecloth can be plaid, striped, or solid.How many possible combinations are there?BISearch for anything 5x + 4 = -11 What could you do to further isolate the variable? what number line shows the solution of -5x + 10 > -15 The Latin prefix ad- means "toward," and the root jour comes from the French, meaning "day." The Latin suffix -ment turns a word into a noun, and has to do with an action or a process. Based on this knowledge of roots and affixes, write your definition of adjournment as it is used in the text, and tell how you got it. Use a dictionary to check its precise meaning. 2 tickets cost $14. How many tickets can you buy with $63? Because your eyes are so important. You must take care of them.What is the BEST way to combine the information above? A. Because your eyes are so important, and you must take care of them. B. Because your eyes are so important, you must take care of them. C. Because your eyes are so important, then you must take care of them. D. Because your eyes are so important that you must take care of them.