Irene is creating a wireframe of a website she is working on to show her client. In which phase of the development process is she?

A. planning

B. design

C. development

D. testing

Answers

Answer 1

Answer:

The Answer Is B: Design

Explanation:

I took the test on edmentum and it was correct your welcome m8 :)


Related Questions

Marking brainlyest look at the picture

Answers

I’m pretty sure the answer is C.

the_____ tool is used to change the select text to capital letters or small letters (change case /grow font)​

Answers

Answer:

on word you can use shortcut "Shift+f3" to change uppercase lowercase and title case if that is what you are asking for

Select the factors that a network engineer is most likely to consider when designing a computer network. the ways in which employees share business documents the number of hours employees work the number of networked computers the type of work done at networked computers the number of employees using each computer the rate of pay for networked employees

Answers

Answer:

the number of employees using each computer

the number of networked computers

the type of work done at networked computers

the ways in which employees share business documents

Explanation:

these are all correct on odyssey :)

technically a coding question utilizing python how would one calculate a square root

Answers

Answer:

import math

math.sqrt( x )

Explanation:

The basic code that can be written to calculate the square root of a number is as follows

import math

math.sqrt( x )

What would you classify anti-malware software as?


SaaS

enterprising

cloud

security

Answers

Answer:

enterpriseing is the answer

Anyone else like hunter x hunter?
lets talk abt it uwu

good day :)

Answers

Answer:

mid

Explanation:

The correct answer is mid please give me brainlest let me know if it’s correct or not okay thanks bye

In database software, which option is the most appropriate menu choice or command to use if you want to change the format of the date
from January 1, 2020 to 01/01/2020?
Print Preview
Mail Merge
New Record
Add/Modify Fields

Answers

Answer:

I think it's d

Explanation:

             

You are dropping your friend back home after a night at the movies. From the car, she turns on the indoor lights in her home using an app on her phone. How is your friend able to do this? a. She has a home network with smart home devices. b. She dialed into her home modem through the app and sent a command through the router. c. She has installed switches that interact with the installed app on her phone. d. She uses a hub at her home that she connects to through the app.

Answers

A. She has a home network with smart home devices

You are dropping your friend back home after a night at the movies. From the car, she turns on the indoor lights in her home using an app on her phone. Friend is able to do this by  doing home network with smart home devices. The correct option is a.

What are smart devices?

The devices which are operated using the analog signals which carry information.

You are dropping your friend back home after a night at the movies. From the car, she turns on the indoor lights in her home using an app on her phone.

Friend is able to do this by doing home network with smart home devices.

Thus, the correct option is a.

Learn more about smart devices.

https://brainly.com/question/17509298

#SPJ2

What is the web page path on the web server for the URL:
http://www.mydomain.com/main/index.html?
O http://
O www.mydomain
O main/index.html
O index.html

Answers

Answer:

C: main/index.html

Explanation:

Need answer ASAP!!! No links I’ll report

Select the correct answer.
Which statement is true for SQC?

A.SQC has organization-wide application.

B.The scope of SQC covers a specific product.

C.The scope of SQC covers all products produced by a process.

D.SQC involves activities to evaluate software engineering processes.

Answers

Answer:

Try C and hope for the Best

Explanation:

Answer:

The scope of SQC covers a specific product.

Telecommunications, outsourcing, flextime, teamwork, and diversity are workplace trends adopted to
O True
O False

Answers

Answer:

False

Explanation:

Outsourcing and telecommuting are the trends related to presence of growing technology within the economy allowing various services to be outsourced to people who are more of an expert when it comes to handling those procedures.

windows operating system memory management??​

Answers

Memory management is the functionality of an operating system which handles or manages primary memory and moves processes back and forth between main memory and disk during execution. Memory management keeps track of each and every memory location, regardless of either it is allocated to some process or it is free.Answer:

Apache Subversion is one of the more popular _____.

centralized version control systems

source codes

repositories

distributed version control systems

Answers

Answer:

Centralized version control system

Explanation:

I did the assignment Edge2021

Answer:

Centralized version control systems

Explanation:

Took the test

Which of the following code snippets will output the following:

Hello
Hello
Hello



A:
print("Hello")
print("Hello")
print("Hello")

B:
for i in range(3):
print("Hello")

C:
print("Hello"*3)

D:
print("Hello\n"*3)

Answers

Answer:

A, B and D

Explanation:

Given

Options (a) to (d)

Required

Which outputs

Hello

Hello

Hello

(a) Each print statement prints "Hello" on separate lines.

Since there are three print statements, then (a) is true

(b) The loop iterates 3 times; and each iteration prints "Hello" on separate line,

Hence, (b) is also true

(c) The statement prints "Hello" 3 times, but all are on the same line

Hence, (c) is false

(d) The statement prints "Hello" 3 times; The '\n' ensures that each "Hello" string is printed on separate line.

Hence, (d) is true

Answer:

option A B D

Explanation:

hope helps you

have a nice day

who ever can get me the lyrics to raining tacos will get 46 points + the crown! i want the song!

Answers

Explanation:

Lyrics

It's raining tacos

From out of the sky

Tacos

No need to ask why

Just open your mouth and close your eyes

It's raining tacos

It's raining tacos

Out in the street

Tacos

All you can eat

Lettuce and shells

Cheese and meat

It's raining tacos

Yum, yum, yum, yum, yumidy yum

It's like a dream

Yum, yum, yum, yum, yumidy yum

Bring your sour cream

Shell

Meat

Lettuce

Cheese

Shell

Meat

Lettuce

Cheese

Shell

Meat

Cheese, cheese, cheese, cheese, cheese

It's raining tacos

Raining tacos

Raining tacos

It's raining tacos

It's raining tacos

Raining tacos

Raining tacos

Shells, meat, lettuce, cheese

It's raining tacos

It's raining tacos

Answer:

Explanation:

is that even a real song??

btw i answered so the other guy can get brainlest annnnnnd bc i want the point LOL

Consider the following code.

public void printNumbers(int x, int y) {
if (x < 5) {
System.out.println("x: " + x);
}
if (y > 5) {
System.out.println("y: " + y);
}
int a = (int)(Math.random() * 10);
int b = (int)(Math.random() * 10);
if (x != y) printNumbers(a, b);
}

Which of the following conditions will cause recursion to stop with certainty?
A. x < 5
B. x < 5 or y > 5
C. x != y
D. x == y


Consider the following code.

public static int recur3(int n) {
if (n == 0) return 0;
if (n == 1) return 1;
if (n == 2) return 2;
return recur3(n - 1) + recur3(n - 2) + recur3(n - 3);
}

What value would be returned if this method were called and passed a value of 5?
A. 3
B. 9
C. 11
D. 16

Which of the following methods correctly calculates the value of a number x raised to the power of n using recursion?
A.
public static int pow(int x, int n) {
if (x == 0) return 1;
return x * pow(x, n);
}
B.
public static int pow(int x, int n) {
if (x == 0) return 1;
return x * pow(x, n - 1);
}
C.
public static int pow(int x, int n) {
if (n == 0) return 1;
return x * pow(x, n);
}
D.
public static int pow(int x, int n) {
if (n == 0) return 1;
return x * pow(x, n - 1);
}

Which of the following methods correctly calculates and returns the sum of all the digits in an integer using recursion?
A.
public int addDigits(int a) {
if (a == 0) return 0;
return a % 10 + addDigits(a / 10);
}
B.
public int addDigits(int a) {
if (a == 0) return 0;
return a / 10 + addDigits(a % 10);
}
C.
public int addDigits(int a) {
return a % 10 + addDigits(a / 10);
}
D.
public int addDigits(int a) {
return a / 10 + addDigits(a % 10);}

The intent of the following method is to find and return the index of the first ‘x’ character in a string. If this character is not found, -1 is returned.

public int findX(String s) {
return findX(s, 0);
}

Which of the following methods would make the best recursive helper method for this task?
A.
private int findX(String s) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s);
}
B.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else return s.charAt(index);
}
C.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s, index);
}
D.
private int findX(String s, int index) {
if (index >= s.length()) return -1;
else if (s.charAt(index) == 'x') return index;
else return findX(s, index + 1);
}

Answers

i think the answer is C

Is this for a grade?

which of the following is another term for a subfolder​

Answers

Answer:

below

Explanation:

subdirectory

Explanation:

Subdirectory is the another name of sub folderwhich is the small folder of files created withing a main folder.

Need answer ASAP

Select the correct answer.
What is the role of a software analyst?
OA.
to prepare project plan
OB.
to provide customer support to stakeholder
O C.
to code and test
O D.
to perform audits

Answers

Answer:

c is the correct awnser ( to code and test )

Answer:

CCCCCCCCCCCCCCCCCCCCC

write HTML code to create a web page which will contain a title my favourite book as a centralised heading feluda somogro and body will contain the name of the author satyajit ray ​

Answers

Answer:

Satyajit Ray (1921–1992), a Bengali film director from India, is well known for his contributions to Bengali literature. He created two of the most famous characters in Feluda the sleuth, and Professor Shonku the scientist. He wrote several short novels and stories in addition to those based on these two characters. His fiction was targeted mainly at younger readers (mostly teenagers) , though it became popular among children and adults alike.

Ray during recording of his film Pather Panchali

Most of his novels and stories in Bengali have been published by Ananda Publishers, Kolkata; and most of his screenplays have been published in Bengali in the literary journal Ekshan, edited by his close friend Nirmalya Acharya. During the mid-1990s, Ray's film essays and an anthology of short stories were also published in the West. Many of the stories have been translated into English and published.

Identify the characteristics of syntax errors. Choose all that apply.
programmer did not follow the program language conventions
may be highlighted while writing the program
can be caused by mistyping or misspelling while writing the program
does not cause an error message

Answers

Answer:

Explanation:

Identify the characteristics of syntax errors. Choose all that apply.

programmer did not follow the program language conventions

may be highlighted while writing the program

can be caused by mistyping or misspelling while writing the program

Answer:

Its A B C i got it right

Explanation:

45 points

Multiple Choice: Choose the answer that best fits each statement below.

______ 5. Which of the following can be found by clicking the AutoSum drop‐down?
a. Average
b. Min
c. Sum
d. All of the above

______ 6. Which option is used to prevent a cell reference from changing when a formula is copied to
another location?
a. Named ranges
b. Absolute cell reference

______ 7. An advantage to defining range names is:
a. Selections can be larger
b. Selections can be any format
c. Name ranges are easy to remember
d. Name ranges clear cell contents

True/False: Answer True or False for each statement below.
______ 8. You can only increase or decrease the decimal places by two.
______ 9. The comma style allows you to format with a thousands separator.
______ 10. Excel does not allow you to copy and paste formulas with AutoFill.

Answers

Answer:

5 its either a or b and 6 is b 7 is d  and 8 t 9 f 10 f

Explanat ion:

Determina la cilindrada total Vt en un motor de 4 cilindres de 83,6 mm de diàmetre per 91 mm de cursa.

Answers

Answer:

La cilindrada total del motor es de 1997,025 centímetros cúbicos.

Explanation:

Para determinar la cilindrada total Vt en un motor de 4 cilindros de 83,6 mm de diámetro por 91 mm de carrera se debe realizar el siguiente cálculo, sabiendo que para calcular la cilindrada de un motor se debe utilizar la fórmula ((Pi x Diámetro^2)/4) x Carrera x Número de cilindros = X:

((3.14 x 83.6^2)/4) x 91 x 4 = X

((3.14 x 6,988.96)/4) x 364 = X

(21,945.3344 / 4) x 364 = X

5,486.3336 x 364 = X

1,997,025.4304 = X

1 milímetro cúbico = 0.001 centímetro cúbico

1,997,025.4304 milímetros cúbicos = 1997.0254304000005 centímetros cúbicos

Por lo tanto, la cilindrada total del motor es de 1997,025 centímetros cúbicos.

How do you fix this!!!!

Answers

Answer:

ldek

Explanation:

select the correct answer
What is SQL used for?
A. to write machine language code
B. to design webpages
C. to extract information from databases
D. to convert machine language into a high-level language

Answers

The SQL used to extract information from databases. (Choice: C)

Functions of SQL language

In this question we must understand about computer languages to answer correctly.

SQL stands for Structured Query Language and is a specific domain language intended for the management and retrieve of relational databases. Thus, SQL is used to extract information from databases.

Thus, SQL is used to extract information from databases. (Choice: C) [tex]\blacksquare[/tex]

To learn more on databases, we kindly invite to check this verified question: https://brainly.com/question/6447559

Answer:

The correct answer is C. To extract information from databases.

Explanation:

I got it right on Edmentum.

Which avenue may utilize video streaming, audio narration, print designs, and animation?
The ______ may utilize video streaming, audio narration, print designs, and animation.

Answers

Answer: is their any options to answer your question

Explanation:

Answer:

The multimedia avenue may utilize video streaming, audio narration, print designs, and animation.

Explanation:

:P

Which one of the following is not a preset Auto Fill option?
A. dates
B. Months
C. Colors
D. Days

Answers

Answer:

Colors is not a preset Auto Fill option.

Answer:

C. Colors

Explanation:

Hope this helps :)

You will then write a one- to two-paragraph summary describing your chosen type of biotechnology. You will then need to argue for either the benefits or the risks of your chosen type. Your arguments should present your position, and then give the evidence that led you to this position. Be sure to include the following in your argument:
a description of your chosen type of biotechnology (genetic engineering, cloning, or artificial section)
one benefit or one risk for the individual (based on whether you are for or against it)
one benefit or one risk for society (based on whether you are for or against it)
one benefit or one risk for the environment (based on whether you are for or against it)
A picture (you may hand draw, take photos in nature, or use stock images)

Answers

Answer:

Anti-biotics are a biotechnology I've chosen, its a benefit because it kills off bacteria and help improves your system. It kills and prevents the growth of bacteria and infections. A benefit you can get from antibiotics is protects your health and prevents acne. This is due to the bacteria it attacks when entering your body. Think of it as pouring peroxide on a cut. A benefit to society is it protects your health when coming close to a sick person and lowers the chance of you catching something. A risk of taking antibiotics is having a weaker immune system due to your body relying on antibiotics, it can also cause gonorrhea.

Explanation:

good luck! :)

Answer:

I Chose Genetic Engineering. Genetic Engineering Can be Used To Make Greater food production volume and increased vitamins Which Feeds More People In This growing population And That Helps society And A Individual. Genetic Engineering Genetically engineered bacteria and plants are altered to get rid of toxic waste Which Can Help The Environment.

This is what i submitted for a grade i actually got an 85 for it which is a B good luck!

Why is one climate different from another?

Answers

The climate of an area concerns the average weather conditions. Different parts of the Earth have different climates because of different amounts of heat received from the Sun. ... Some climates have different seasons and there may be little or much variation in precipitation and temperature.

need help on question 5! no links pls

Answers

Answer: less than 50%, it’s about 49%

Explanation:

Answer:

59.5

so I would say the 3 third option

Plz help:(!!!!

Type the correct answer in the box. Spell all words correctly.

Claire wants to use a filter to ensure quality in the software development process and product. What can Claire use for this purpose?

Claire should use_________
as a filter to ensure quality in the software development process and product.

Answers

Answer:

Defect filters

Explanation:

Answer:

"a quality gate" is the correct answer :D

Explanation:

Other Questions
Answer ASAP will give brainliestKites: Birds of GloryAs a rule, raptors, or birds of prey, are among the most admired and adored birds in the world. From the California condor to the snowy owl, few birds compare to the tigers of the air: the great hunters whose beauty and skill have inspired art and literature for centuries. The most glorious feathers of the peacock or the vibrant plumage of a bunting cannot compete with the power of a peregrine falcon or the determination of an osprey. Included in this group of hunters, however, is one bird of prey that is little known but equally impressive. The kites of the world are generally smaller than most raptors, but just as astonishing in skill and grace as any other hunter of the skies.Most people think of paper or cloth structures flown with string from the ground when the word 'kite' is used. In addition to these popular toys, kite can also refer to a type of raptor. Kites have a small head, a short beak and long narrow wings and tail. Kites can be found all over the world in mostly warm regions. Kites live on a variety of preyfrom insects to small rodents or reptiles. Some kites eat only one kind of prey. Kites are generally masterful in the air and represent a group of birds that are among the most acrobatic of fliers.Two of the most familiar kites in the Southern United States are the swallow-tailed kite and the Mississippi kite. The Mississippi kite is rather plain to look at: a light brown and gray body with a buff or white colored head. But to watch a Mississippi kite fly is to watch a ballet in the air. These raptors eat primarily flying insects, so they do most of their hunting on the wing. As you might imagine, catching flying insects requires a great deal of agility and speed. If you are lucky enough to see one in flight, you will be amazed at the quick turns, graceful moves, and speedy pursuits of this bird. Look for them above large fields, especially during the summer.The swallow-tailed kite, also common in the South, is more easily identifiable and often seen flying over roads. With black wings and tail, white head and body, and a forked or swallow-like tail, this raptor is just as acrobatic as the Mississippi kite. Swallow-tailed kites like flying over highways in the summer as they can take advantage of the thermals, or columns of warmed air, that rise above the pavement. Once they have climbed to sufficient height, swallow-tails will glide, looking for snakes and reptiles and insects. They also eat small rodents, frogs, and other birds on occasion. Watching a swallow-tail fly is a lot like watching a gymnast perform a floor routine. Rarely flapping its wings, it uses its forked tail to make sharp turns, trace circles in the sky, or simply maintain a heading. Skilled, accomplished, and graceful, this bird is as entertaining as it is beautiful.Both kites are known to eat while flying, unlike most other birds of prey. This practice conserves energy and allows them to hunt almost continuously. While these kites are not listed as endangered, they are rare and in some states are listed as critical. Loss of habitat is the main reason for the decline. If you are lucky enough to see one, count yourself among the few. These magnificent birds are a sight you won't soon forget.How does the author develop the idea that kites are skillful fliers? Use details and quotations from the text to support your answer. NEED HELP!! NO LINKS PLSWrite a quadratic equation in standard form that has the following solutions: x = 4/3 x = - 2/5 Question 61 ptsThe preterite and imperfect tenses are both used to talk about actions that occurredin the past.TrueFalse En captulo 24 (El dia de graduacion) de Senderos Fronterizos, Por que Panchito quera que sus padres asistieran su graduacin? The 7 times the sum of anumber and 6 IS 63 How do you write 47/50 as a percentage? Which of the following choices are equivalent to the expression below? Checkall that apply. X^3/5 Who has a poetry question?Cuz I can hopefully help u... A 12-ohm resistor is connected in series with a 23-ohm resistor. They are placed across a 120-volt power source. What is the current in the circuit? A) 35 amps B) 10 amps C) 5.2 amps D) 3.4 amps Which of the following phrases belongs in the section labeled A?Form or System Advantages DisadvantagesUnitary ABFew or none consulted when making decisions.Oligarchy CDecisions can be made quickly.DDemocracy EFDifficult to get an agreement. Decisions made quickly Overlap in government services Less waste of tax dollars Single political party has control Type the correct answer in the box. Use numerals instead of words. If necessary, use / for the fraction bar. What value of x satisfies this equation? 1.5(4)^2x=12 Round your answer to the nearest hundredth. The value of x is . PLEASE HELP I'LL MARK BRAINLIEST IF ITS RIGHTWhat was the most common act of terrorism in the 1800s?A. Assassinations of political leadersB. Bombings of banks and financial institutionsC. Attacks against civilians (this answer is wrong)D. Acts of sabotage against military equipment Find the circumference of a circle.Group of answer choices6 cm37.6818.84 PLEASE HELP ME!!! Please don't answer if you're just going to guess. In this line from a data file, what do you call the comma?dog, 23, 15The comma is _____-Choices-a BOL set of characters,an EOL set of characters,a delimiter. 40 points right here This is from the play, "The Twelfth Night" Read the passage:Olivia (breathless with love): Blame not this haste of mine. If you mean well, now go with me and with this holy man. Plight me the full assurance of your faith. What do you say?Olivia speaks these words to Sebastian. What emotion is Olivia feeling at this moment?A. stubbornB. determinedC. curiousD. overwhelmed Speed training increases one's maximum velocity.Please select the best answer from the choices provided.True or false? What is 0.5% of 1,000 pounds pls help im rlly confused -----------------------------