Need answer ASAP. No links
Select the correct answer
Clara writes online articles based on world religions. Her articles have references to dates. Which HTML element will help her display dates (A.D. or B.C.) correctly on a web page?
Posted the answers on the picture since they don’t show up when I write them on here
Answer:
A <b>
Normally AD and BC are written in bold letters.
for example : The terms anno Domini (AD) and before Christ (BC).
Within available option the best option to choose is <b> hope it helped
Answer:
its d <small>
Explanation: A:D and B:C are displayed smaller then normal letters
Suppose you have a certain amount of money in a savings account that earns compound monthly interest, and you want to calculate the amount that you will have after a specific number of months. The formula is as follows:
f = p * (1 + i)^t
• f is the future value of the account after the specified time period.
• p is the present value of the account.
• i is the monthly interest rate.
• t is the number of months.
Write a program that takes the account's present value, monthly interest rate, and the number of months that the money will be left in the account as three inputs from the user. The program should pass these values to a function thatreturns the future value of the account, after the specified number of months. The program should print the account's future value.
Sample Run
Enter current bank balance:35.7↵
Enter interest rate:0↵
Enter the amount of time that passes:100↵ 35.7↵
Btw, this does not work, but is presumably close to the answer.
p=float(input("Enter current bank balance:"))
i=float(input("Enter interest rate:"))
t=float(input("Enter the amount of time that passes:"))
print(p *(1+i)^t)
Answer:
The update code is:
p=float(input("Enter current bank balance:"))
i=float(input("Enter interest rate:"))
t=float(input("Enter the amount of time that passes:"))
print(p*(1+i)**t)
Explanation:
Required
Program to compute future value
Up to the third line, your program is correct.
The only correction that needs to be made is as follows:
On the fourth line, change p*(1+i)^t to p*(1+i)**t because Python use ** as raise to power and not ^
_3__ Include a knowledge based with accumulated experience and a set of rules for aplying the knowledge base to each particular situation. __4__ A subset of Artificial Intelligence that users algorithms to learn iteratively from data and can find insigths without explicit programming. __2__ analyze large quantitied of information to establish patterns and charceristicwd when the logic or rules are unknown. __1__ Mimic evolutionary precesses to generate increasingly better solutions to a problem. Mutation within a genetic algorithm involve randomly trying combinations and evaluating success (or failure) in order to learn to optimize outcomes. __5__ A subset of Machine Learnign that referst to artificial neural networks that are composed of many layers.
Answer:
d:
Explanation
what’s the difference between cds and dvds?
Explanation:
The main difference is that the DVD can store much more data than a CD-ROM, CD-R, or CD-RW. ... A DVD-R can only record data once, then the data becomes permanent on the disc.
how does a demilitarized zone (dmz) work. A.By preventing a private network from sending malicious traffic to external networks B.by monitoring traffic on a private network to protect it from malicious traffic. C. by interacting directly with external networks to protect. D. by interacting with a private network to ensure proper functioning of a firewall E.by monitoring traffic on external networks to prevent malicious traffic from reaching a private network
Answer:
C. by interacting directly with external networks to protect a private network.
Explanation:
Data theft can be defined as a cyber attack which typically involves an unauthorized access to a user's data with the sole intention to use for fraudulent purposes or illegal operations. There are several methods used by cyber criminals or hackers to obtain user data and these includes DDOS attack, SQL injection, man in the middle, phishing, etc.
Phishing is an attempt to obtain sensitive information such as usernames, passwords and credit card details or bank account details by disguising oneself as a trustworthy entity in an electronic communication usually over the internet.
Phishing is a type of fraudulent or social engineering attack used to lure unsuspecting individuals to click on a link that looks like that of a genuine website and then taken to a fraudulent web site which asks for personal information.
In order to prevent a cyber attack on a private network, users make use of demilitarized zone (DMZ) depending on the situation.
A demilitarized zone (DMZ) work by interacting directly with external networks to protect a private network.
A system analyst generally needs to have a number of skills. For example, technical and analytical skills are required for this role. Name three other necessary skills for a system analyst
Answer: See explanation
Explanation:
Systems analysts are the people who analyse how a particular software, or IT system will be able to fit and meet the needs of their company or client. They are charged with the responsibility of writing requirements for new systems.
Some if the skills required for a system analyst include:
• Flexibility
• Strong analytical skills
• Adaptability
• Initiative
• Interpersonal skills.
• Attention to detail.
• Teamwork skills.
• Written and verbal communication skills.
Easy way of communication with people is one disadvantage of a network. *
1.True
2.False
Answer:
false
because we are able to connect with people easily..
without have to wait for long time in the case of letters..
Answer:
False.
Explanation:
BIG POINTS! BIG POINTS! BIG POINTS!
Does someone know how to fix a A s u s computer that won't turn on. Computer is all the way charged. Here is some screenshots of how it looks. Can this be an easy way to fix it because I can't really take out a battery or use tools. Thanks!
Try and hold the power button for a little while, and if it doesn't turn on then you might have to contact customer support.
Answer:
take the bottom of take out the battery and putt it back in
Explanation:
Type the correct answer in the box. Spell all words correctly.
Derek wants to share his digital portfolio with a wider audience. How can he do so?
Derek should publish his digital portfolio on the
, to show it to a wider audience.
Answer:
internet
Explanation:
Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.
What is the internet?An international network is a collection made up of linked networks that use standardized data exchange to provide a range of digital services.
Derek wants to share his digital portfolio with a wider audience. Then this can be done by the internet.
More about the internet link is given below.
https://brainly.com/question/13308791
#SPJ2
HELP ASAP!!!!
I don't know the code to these images and I need that code now.
Answer:
Menu of turtle moves
Explanation:
A state government is attempting to reduce the digital divide. Which of the following activities has the greatest potential to contribute to the digital divide rather than reducing it? Group of answer choices Providing programs that focus on technology literacy at local libraries Working with telecommunications companies to build network infrastructure in remote areas Requiring applicants for government jobs to apply using an online platform Working with technology companies to offer computing devices at discounted prices to individuals with reduced incomes
Answer:
The correct answer is
Working with technology companies to offer computing devices at discounted prices to individuals with reduced incomes
Explanation:
As per the question, state government is trying to reduce the digital divide which primarily exists because low income people do not have access to the digital devices. Hence, any step taken to help the low income people to get the digital device will be the best strategy of government to reduce the digital divide.
Thus, the correct answer is Working with technology companies to offer computing devices at discounted prices to individuals with reduced incomes
lcons are normally displayed on
how does a computer
open a file
Answer:
you go to your drive and click the file and it opens it
Answer:
You press Type here to Search, if you don't know what it is, it's in the pic. Type File Explorer, and click on the File picture. Open the file
Explanation:
explain the term information security?
Answer:
Information security is a set of practices designed to keep personal data secure from unauthorized access and alteration during storing or transmitting from one place to another.
Convert the following denary numbers into binary using 8-bit register:
00000011
00000101
00010101
00111001
01001100
01000001
00101011
10010011
10101010
11111111
Answer:
1) 3
2) 5
3) 21
4) 57
5) 76
It would be much more easier if there were a grid containing all the numbers.
WHO SAYS BUP ALL THE TIME
Answer:
Mario
Explanation:
what is the decimal value for the jump control?
Answer:
Is there suppose to be a pic?
Explanation:
does anyone know how to code T5 case problem 1: Golden Pulps?
Answer:
I DO
Explanation:
state 5 different between mouse and keyboard
Answer:
*here you go *
Explanation:
While the main purpose of a mouse is to guide the cursor on the computer monitor, a keyboard is a typewriter like device with some additional functions that allow human interaction with computer. ... While mouse is considered to be a pointing device, keyboard is the input device for a computer.
(Keyboard vs Mouse
Keyboard and mouse are integral parts of a computer system and one cannot even think of interacting with the computer or monitor with the use of these two devices. In a sense, these two devices are the user interface that allows working on a computer system, and without them it is not possible to do anything on a computer. While the main purpose of a mouse is to guide the cursor on the computer monitor, a keyboard is a typewriter like device with some additional functions that allow human interaction with computer. In fact, a keyboard is the only source of providing the input to the computer and it performs the functions we ask it only with the help of this device.
While mouse is considered to be a pointing device, keyboard is the input device for a computer. Despite touch screen having been developed that allows one to use virtual keyboard onscreen, physical keyboard remains first choice of most of the individuals. There are keys with symbols printed on them in a keyboard and with the lightest of touches; the numeral or alphabet gets written on the screen of the monitor using a keyboard. There are some instructions for which one has to press a key and holding it pressed, another key has to be pressed. There are many shortcuts also used with the help of a keyboard that help save time and effort. Many computer commands are the results of these shortcuts. The major function of a keyboard is when one is using a word processor or a text editor.
A mouse is a pointing device and consists of a right and left clicks with a wheel in between that allows on to scroll up and down on a web page. The major function of a mouse is to control the cursor on the monitor of the screen. Today there are wireless mouse available that work through infrared rays.)
Pseudocode is an outline of your code that goes through the steps in human
language.
1) True
2) False
using the URL:http://www.armyschools.edu/news/sports.html, Identify the protocol,domain name and path.
Answer:
domain - http (usually unsafe)
protocol - news
path - info / web
Explanation:
It keeps saying telling me that this code:
c = 0
while (True):
user_input = input("Please enter the next word: " )
if user_input == "STOP":
break
c += 1
print ("# {}: You entered {}".format(c, user_input))
print("All done. {} words entered.". format(c))
has some spacing and spelling and also punctuation errors and I'm not really sure why?
Please let me know as soon as possible.
Answer:
your code looks correct. I think your issue is just indentation. with Python you want to be very careful with spacing.
Explanation:
c = 0
while (True):
user_input = input("Please enter the next word: " )
if user_input == "STOP":
break
c += 1
print ("# {}: You entered {}".format(c, user_input))
print("All done. {} words entered.". format(c))
Jim has excellent oral and written communication skills. He enjoys public speaking and wants a job in which he will interact with the press and other communication professionals. Which career would allow him to use his skills, talents, and abilities the most?
A.
public relations specialist
B.
budget analyst
C.
marketing specialist
D.
freight forwarder
E.
transportation manager
Answer:
A. Public Relations specialist
Explanation:
What's the best way to find diamonds in Mine craft?
Answer:
go to creative mode
make a diamond block
and go to survivor mode and mine
give a like
Go to a certain y level in the ground. (I'm not sure the exact level )
Also you can go to an abandoned ship and find a map.
You can always just go into creative mode and give your self a stack and then go back into survival
what's your opinion on Pokemon and pixeldip
Answer:
Its a good game but an amazing show. 10/10
Explanation:
What are the key components to planning a presentation? Check all that apply.
audience
conclusion
methods
purpose
thesis
title
topic
Answer:
I. audience
II. methods
III. purpose
IV. topic
Explanation:
Presentation can be defined as an act of talking or speaking formally to an audience in order to explain an idea, piece of work, project, and product with the aid of multimedia resources or samples.
Basically, any speaker who wish to create an effective presentation should endeavor to interact frequently with the audience by holding a conversation.
This ultimately implies that, to create an effective presentation, speakers are saddled with the responsibility of interacting more often with the audience by taking questions, making a joke, getting them to repeat informations loud at intervals etc.
Additionally, speakers are advised to be passionate and show enthusiasm during their presentation because it would enhance their ability to speak confidently and as such leading to an engaging presentation.
The key components to planning a presentation include the following;
I. Audience: these are the group of listeners to whom the speaker is making a presentation to.
II. Methods: the speaker should choose the most effective and efficient method to use in getting the message across to the audience (listeners).
III. Purpose: this is the main idea or reason for which the presentation is being created or done by the speaker.
IV. Topic: this is simply the title of the presentation and it describes the subject matter.
In three to five sentences, describe how you would move a slide from the end of the presentation to the second slide.
Answer:
Programs such as powerpoint help people to present topics in a clear, productive way. Other programs such as videos can be used to display information quickly and thoroughly while being enjoyed. Presentation technology is simple to use, so there is no high level of skill required to use the programs.
Explanation:
100 POINTS. DO NOT SPAM. OR I WILL REPORT.
Write about various image degradation function.(minimum 5)
Answer:
Explanation:
In digital image processing, degradation is a process of introducing defects to the image. Understanding the degradation function will allow restoration of the original image.
There are many different causes for image degradation such as motion blur, digital noise and lens off-focus. In cases like motion blur, it is possible to come up with an very good estimate of the actual blurring function and "undo" the blur to restore the original image. For digital noise, a statistical model can be set up to compensate for the degradation it caused. Similarly lens focus can be compensate by an optical model if the mis-focus is known.
The above are three degradations that I could find. A lot more information can be found about restoration functions. If you search for image degradation online, you will find a discussion on Quora and an interesting introduction from Rice University. Good luck!
Answer:
Explanation:
image degradation function helps 2 understand how a digital image has degraded n how 2 restore it
to come up w the function, start by observing the degraded image. look 4 areas w less degradation n use them as reference of the original
if equipment used 2 take the degraded image is available, try finding the exact conditions which produce the same degradation. dat will provide clues for restoration
if the degraded image can be scanned, it can be manipulated digitally w various pre-programmed functions n look 4 any improvement
one of the above should help in restoring the degraded image
Which of the three experiments gave evidence that protein was not
the genetic material?
(ORAL COMMUNICATIONS)- I just need someone to please check if my answers are correct, and if not, please correct me :)
Answer:
i dont know
Explanation:
i forgot how to do this what else umm nothig