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
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
Name all the keys of the home row.
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.
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.
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.
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
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 aboveWhich of the following is not an example of a red flag that would keep you from downloading an attachment
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.
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
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
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
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