Help please


Choose all items that represent characteristics of effective website design.

template based

well-implemented navigation

always implements a site map

no glaring content gaps

consistent and appropriate theme

based on a well-specified website purpose

Answers

Answer 1

Explanation:

Help please

Choose all items that represent characteristics of effective website design.

template based

well-implemented navigation

always implements a site map

no glaring content gaps

consistent and appropriate theme

based on a well-specified website purpose

Answer 2

Well-implemented navigation, no glaring content gaps, consistent and appropriate theme, based on a well-specified website purpose. Hence option B,D,E and F is correct.

What is website?

Website is defined as a grouping of web pages and related information that is available on at least one web server under a single domain name. Content is a website's most crucial component. Your website is ineffective for internet marketing since it is little more than empty advertising. Any marketing expert who creates websites ought to strive to offer users an online resource at all times.

More than anything else, well-written web copy and content will make your website design appealing, efficient, and well-liked. Your website design, no matter how educational, lovely, and simple to use it is, is meaningless unless it is web-friendly.

Thus, well-implemented navigation, no glaring content gaps, consistent and appropriate theme, based on a well-specified website purpose. Hence option B,D,E and F is correct.

To learn more about website, refer to the link below:

https://brainly.com/question/2497249

#SPJ5


Related Questions

Name all the keys of the home row.

Answers

Answer:

Search key, a, s, d, f, g, h, j, k, l, : and ;, ¨ and ´, and the enter key.

Which of the following could have a negative impact a planned route?
A. Crashes.
B. Eating in the car.
C. Running out of gas.

Answers

Answer:

B

Explanation:

How should resumes and cover letters be written to help you obtain a job that meets your
career goals?
They should list your hobbies.
They should include why you left your previous job
They should list your accomplishments and how your skills meet the needs of
the job
They should list any teachers who will give you a good reference.

Answers

Answer:

They should list your accomplishments and how your skills meet the needs of the job.

Explanation:

Then your future employer can see what sets you apart from other potential candidates for the job.

Name all the keys of the home row.

Answers

Answer:

A, S, D, and F and your right hand are J, K, l, and ; along with space bar for your thumbs

Explanation:

Question 3 of 10
What is an effective way of making new friends and connecting with people who share the
same interests as you?
Asking the writing center on campus for help with an article for the school
paper.
Joining a new club.
Sharing your thoughts on social media.
All the above

Answers

Answer:

option all of the above

hope helps

mark as brainlist plzz

The effective way of making new friends and connecting with people who share the same interests as you can be asking the writing center on campus for help with an article for the school paper. Joining a new club and sharing your thoughts on social media. The correct option is 4.

What is social health?

The social and economic factors that affect how individuals and groups differ in their levels of health are known as social determinants of health.

The relationships we have and our interactions with others are considered aspects of social wellbeing.

The relationships can be a source of comfort during trying times. Building wholesome, nurturing, and supporting relationships as well as creating a sincere connection with those around are both essential components of social wellness.

By requesting the campus writing center for assistance with an article for the school paper, you can meet others who share your interests and form new friendships. registering for a new club and posting on social media.

Thus, the correct option is 4.

For more details regarding social health, visit:

https://brainly.com/question/17799234

#SPJ2

Your question seems incomplete, the probable complete question is:

What is an effective way of making new friends and connecting with people who share the

same interests as you?

Asking the writing center on campus for help with an article for the school paper.Joining a new club.Sharing your thoughts on social media.All the above

Which of the following is not an example of a red flag that would keep you from downloading an attachment

Answers

Answer:

The link contained in the email redirects you to a different site

Explanation:

This is not a red flag in the sense that, the ability of the link attached to the e-mail to re-direct you to another different site shows that it might be a phising message.

It is left for the person to re-verify and  decide if to go ahead to download it or not after it opens on a new site on the internet.

Answer:

  The attachment is a PDF file.

Explanation:

A link that causes an attachment to be downloaded and opened always presents a security risk. That risk is mitigated somewhat if you trust the sender to be security-conscious, and if you trust the target of the link to be free of malware.

So, a link with an untrusted source such as a company outsider, may present a security risk.

A message marked "urgent and time-sensitive" is employing "social engineering" to reduce your inhibitions against opening the link. That tends to be an indication that a security risk is involved.

A link that obscures the source of the attachment is less likely to be legitimate than one that is more transparent. That, too, is an indication of a security risk.

PDF files are traditionally considered to be safe document files that cannot execute code or introduce malware. This (the attachment is a PDF file) is likely the answer of choice.

_____

Comment on PDF files

The Adobe Acrobat PDF reader is known to have significant security risks, and hundreds of exploits are available to malware producers that will allow PDF files to introduce and execute unwanted code. There are alternative PDF readers with less vulnerability. And, there are file scanners available that can detect malware in PDF files.

How can a professional association help you reach your career goals?
Joining a professional association is how you become a professional.
Membership can give you discounts on various products and books.
Professional associations allow you to travel to many conferences and offer
side trips where you might want to go for vacation.
Professional associations will host networking events and connect you to people
in the careers and industries you are interested in.

Answers

Answer:

Professional associations will host networking events and connect you to people in the careers and industries you are interested in.

Explanation:

Google says:

A professional association is an organization with members who work in or share an interest in a specific job field or industry. Members of professional associations will often meet regularly to discuss upcoming news in their field or will host events for other members to meet and network.

need some help with this question​

Answers

Answer:

B, Backlight.

Which term describes the order of arrangement of files and folders on a computer?
A.
I-SPY
B.
CFAA
C.
Digital Millennium Act
D.
SOPA

Answers

Answer:The term that describes the order of arrangement of files and folders on a computer is organization. It is very important the organization of the files and folders to be effective, in order to work with them quickly and efficiently

Explanation:

hope this help sry if it doesn't.

# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5

name = input("Hello! What is your name?")

# Fill in the missing LOOP here.
# This loop will need run until the player has guessed the secret number.

userGuess = int(input("Guess a number between 1 and 20: "))

numGuesses = numGuesses + 1

if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")

if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")

# Fill in missing PRINT statement here.
# Print a single message telling the player:
# That he/she guessed the secret number
# What the secret number was
# How many guesses it took

Fill in the # lines in order to complete the code

Answers

numGuesses = 0

userGuess = -1

secretNum = 5

name = input("Hello! What is your name?")

while userGuess != secretNum:

   userGuess = int(input("Guess a number between 1 and 20: "))

   numGuesses = numGuesses + 1

   if (userGuess < secretNum):

       print("You guessed " + str(userGuess) + ". Too low.")

   if (userGuess > secretNum):

       print("You guessed " + str(userGuess) + ". Too high.")

   if(userGuess == secretNum):

       print("You guessed " + str(secretNum)+ ". Corret! "+"It took you " + str(numGuesses)+ " guesses.")

Answer:

numGuesses = 0

userGuess = -1

secretNum = 5

name = input("Hello! What is your name?")

while userGuess != secretNum:

  userGuess = int(input("Guess a number between 1 and 20: "))

  numGuesses = numGuesses + 1

  if (userGuess < secretNum):

      print("You guessed " + str(userGuess) + ". Too low.")

  if (userGuess > secretNum):

      print("You guessed " + str(userGuess) + ". Too high.")

  if(userGuess == secretNum):

      print("You guessed " + str(secretNum)+ ". Corret! "+"It took you " + str(numGuesses)+ " guesses.")

Does your output depend on what you sense? computer science​

Answers

Yes it does

That’s kind of common sense ;-;
Other Questions
Please helpThe lengths of pregnancy terms for a particular species of mammal are nearly normally distributed about a mean pregnancy length with a standard deviation of 17 days. About what percentage of births would be expected to occur within 51 days of the mean pregnancy length? Simplify the expression below.14a8y3 - 7 Ay5 + 28a12y27atyA.OB.2ay3 - ay5 + 4a3y22a4y? - JA + 428 y2a4y3 5 + 428 y?D. 2012,4 - 2876 +4215,3C. What two components are often found as part of a enzyme? which statement describes border and shading?! What is distance between point X and point Y?-------------------------------------------------------------------- StartRoot 11 EndRoot StartRoot 22 EndRoot StartRoot 61 EndRoot StartRoot 72 EndRoot why is it called a building when it is already it is already built?This is also another real question... What rights do the 15th Amendment protect? 44 points! Please help ! I will mark the brainliest !!!!! Evaluate A^2 for A = -4. -16 -8 8 16 How was the Civil War a fight over expansion? What is the economic system in which the government owns and controls the means of producing goods? * A. Communism B. Capitalism C. Fascism D. Monarchy 1 miles in hourfind the unit rate St. Louis became an area with a large population in the years following the Civil War because of which of these physical features? A. The Great Lakes are not far away. B. Timber is plentiful from local forests. C. Two major rivers meet there. D. The mountain ranges are very beautiful. Which of the following is not a run-on sentence?Group of answer choicesAfter Megan and Andrew had been waiting for their table for fifteen minutes, their name was called so they stood and followed the host.They were surprised to discover that Andrews brother was at the next table, they had apparently decided not to cook supper at home, too.They asked the host if they could slide the tables together and sit as a family, and the host was very kind, allowing them to slide the tables together and taking their drink orders with a smile. Gina can write 3 pages per hour. Emily can write 5 pages per hour. If they both write for n number of hours, how many pages will they write altogether? What is the distance between the points (3, 7) and (15, 16) on a coordinateplane?A. 13 unitsB. 21 unitsC. 17 unitsD. 15 units Write the expanded form of h(3k-12.4) Jonas stared at the flat, colorless sky,bringing blue from it, and remembered sunshineuntil finally, for an instant, he could feel warmth.He stood at the foot of the bridge thatspanned the river, the bridge that citizens wereallowed to cross only on official business. Jonashad crossed it on school trips, visiting theoutlying communities, and he knew that the landbeyond the bridge was much the same, flat andwell ordered, with fields for agriculture. Theother communities he had seen on visits wereessentially the same as his own, the onlydifferences were slightly altered styles ofdwellings, slightly different schedules in theschoolsHe wondered what lay in the far distancewhere he had never gone. The land didn't endbeyond those nearby communities. Were therehills Elsewhere? Were there vast wind-torn areaslike the place he had seen in memory, the placewhere the elephant died?What does this excerpt convey about howJonas's life in the community is changing? Do you believe that thinking more clearly about ethical issues and moral dilemmas has any potential for helping you do what you consider to be the right thing? In "Rethinking Ethics in Law Enforcement" Fitch states, "Officers peers offer friendship and informal rewards that, in many cases, hold greater influence than official recognition from the agency [this] sense of community drives ofcers to adopt the behaviors, values, and attitudes of the group in order to gain acceptance". He goes on to claim that, "ofcers engage in certain forms of conduct to secure and maintain peer-group approval" (p. 18). As a Christian, what do you think about the authors view on behavioral influences and values? Should loyalty to colleagues be fostered as an appropriate and necessary value? Is the code of silence justifiable in policing and corrections? Please explain. Please read Deuteronomy 16 verses 18 20 and Psalm 106 verse 3. Please describe the importance of ensuring our Justice System is administered by Godly leaders who possess strong character, morals, and ethics in order to live and possess the land our Lord has given. Please explain how a Biblical Worldview might lead to a different ethical approach for members in the criminal justice system. Please provide two examples. Your thread is due by 11:59 p.m. (ET) on Thursday of Module/Week 1, and your replies are due by 11:59 p.m. (ET) on Monday of the same module/week. Which function can be used to find the number of ounces of coffee in the can based on its radius?