Nicknamed the "Silver State", Nevada is actually the largest gold-producing state in the U.S. and fourth-largest in the world.
Write a letter to the editor of a national newspaper complaining about the bad roads in your town or city, and giving at least three reasons why something should be done urgently about them.
Answer:
Dear editor.
I am writing this letter to alert you to the serious problems we are facing on the main highways of our city, where traffic is completely neglected and the number of accidents has grown at an alarming rate.
Our highways have holes in the roads, lack of signage, traffic lights with malfunction and lack of traffic guards. All of this has left the traffic in the city a real chaos and has caused a great risk to the lives of drivers and pedestrians.
We went to the city hall to ask for a solution to this problem, but we didn't get an answer. For this reason, I come, humbly, to ask you to address this problem in your newspaper so that the attention of the authorities is brought to your attention.
Thank you in advance for your time and consideration.
Regards,
(Your name)
write short cut of
fully justified
Answer:
To make text justified, select and highlight the text first, then hold down Ctrl (the control key) on the keyboard and then press J. To make the text left aligned again, press and hold down Ctrl on the keyboard and press L
Find and explain about the calculating devices used in history.
Answer:
The earliest known calculating device is probably the abacus. It dates back at least to 1100 bce and is still in use today, particularly in Asia. Now, as then, it typically consists of a rectangular frame with thin parallel rods strung with beads.
One benefit of proprietary licensed software is that it
is free of cost
will always be supported.
has undergone quality assurance testing.
comes with a EULA that guarantees access to source code.
Answer:
has undergone quality assurance testing.
Explanation:
hi good morning
Type the name of the protocol for each protocol define on the table below
nonsense answers well be reported
Answer:
1. SSH/Telnet.
2. SMTP.
3. DNS.
4. DHCP.
5. HTTPS/SSL.
6. FTP
Explanation:
1. Provides connections to computers over a TCP/IP network: the standard protocol used for this is SSH/Telnet, through port number 22 and 23 respectively.
SSH is acronym for secure shell.
2. Sends e-mail over a TCP/IP network: SMTP using port number 25.
SMTP is an acronym for Simple Mail Transfer Protocol and it uses the standard port number of 25 to provide clients with requested services.
3. Translates URLs to IP address: DNS using port number 53.
A Domain Name System (DNS) can be defined as a naming database in which internet domain names (website URLs) are stored and translated into their respective internet protocol (IP) address. This simply means that, DNS is used to connect uniform resource locator (URL) or web address with their internet protocol (IP) address.
4. Automates assignment of IP address on a network: DHCP using port number 67.
Dynamic Host Configuration Protocol (DHCP) is a standard protocol that assigns IP address to users automatically from the DHCP server.
5. Securely transports web pages over a TCP/IP network: HTTPS/SSL using port number 443.
HTTPS is acronym for Hypertext Transfer Protocol Secure while SSL is acronym for Secure Sockets Layer (SSL).
6. Transports files over a TCP/IP network: FTP using port number 20 or 21.
FTP is an acronym for file transfer protocol.
Explanation:
I guess there is no need of mine for giving ans now
as the above guy has explained everything
What kind of variable will be created by a line of code that reads num1 = int(input("Please enter your favorite number.")) ? Group of answer choices a string a float an integer a generic
Answer:
An integer
Explanation:
Given
num1 = int(input("Please enter your favorite number."))
Required
The variable type
In Python, when an input is gotten through
var-name = data-type(input(Prompt))
The variable var-name assumes the datatype data-type
This implies that:
num1 = int(input("Please enter your favorite number."))
num1 will assume integer datatype
Ask how many apples the user wants. Ask how many people the user will share the apples with. Find out how many apples will remain if you share the apples equally. Hint: use modulus %.
Answer:
The program in Python is as follows:
apples = int(input("Apples: "))
people = int(input("People: "))
apples%=people
print("Remaining: ",apples)
Explanation:
This gets the number of apples
apples = int(input("Apples: "))
This gets the number of people to share the apple
people = int(input("People: "))
This calculates the remaining apple after sharing the apple evenly
apples%=people
This prints the calculated remainder
print("Remaining: ",apples)
Which type of app is the best choice when it is critical to be able to use the device's features but performance is not critical? native web hybrid mobile
Answer:
Hybrid.
Explanation:
A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem.
A software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications. There are seven (7) main stages in the creation of a software and these are; planning, analysis, design, development (coding), testing, implementation and execution, and maintenance.
Some of the models used in the software development life cycle (SDLC) are;
I. A waterfall model: it can be defined as a process which involves sequentially breaking the software development into linear phases. Thus, the development phase takes a downward flow like a waterfall and as such each phase must be completed before starting another without any overlap in the process.
II. An incremental model: it refers to the process in which the requirements or criteria of the software development is divided into many standalone modules until the program is completed.
III. A spiral model: it can be defined as an evolutionary SDLC that is risk-driven in nature and typically comprises of both an iterative and a waterfall model. Spiral model of SDLC consist of these phases; planning, risk analysis, engineering and evaluation.
Basically, softwares are categorized into three (3) main categories based on the development platform and these are;
a. Web application.
b. Native application.
c. Hybrid application.
A hybrid application is a type of software application that is designed based on the combination of the elements of both web applications and native applications.
Typically, a hybrid application is a web application that is developed in a native application shell, using a standardized web programming language such as CSS, JavaScript, and HTML.
Generally, a hybrid application avails a programmer the opportunity to write a code for a mobile application once while accommodating or being compatible with multiple app platforms such as Android, Windows, iOS, etc.
Hence, a hybrid application is the best choice of an application when it's critical for the end users to be able to use the features associated with a device such as a mobile phone but performance isn't critical.
Answer: Hybrid
Explanation: Hybrid apps are suited to situations where performance is not critical but using the device’s features are.
Create a paper of at least 1,800 words describing the situation you selected and explaining the logic that would support an array.
Answer:
I dont know about 1800 words but I sure can tell you abit about array
Explanation: Array in simple sense refers to a collection of similar data. It holds data which is homogeneous in nature, meaning they are all alike. The use of array provide a lot of advantages in the fields of computer programming. When you declare a variable for an array, you can store as much data as you wish in the same variable without having to declare many variables. A 2X2 dimensional array can also be used in programming which represents matrices as well. The search process in an array too is really convenient and time saving. Also in an array, accessing an element is very easy by using the index number.
Which function can be used to find the date of the last payment made on a customer account? average count order maximum
Answer:
the answer is going to be c, order
Explanation:
this is because whenever a consumer or customer orders something, a product, or a good, companies may go back into records of a customer’s account and see the last order they made. also i took the test on edgen 2021. hope this helped!
How would you keep executives informed about the progress of a project?
with a newsletter
via snail mail
by word of mouth
no need to, just keep it a secret
Answer:
out of these options, only "by word of mouth" makes sense.
Explanation:
but in today's networking world there should be normally a tool, where the project team updates the information (ideally on a daily basis), and peers, managers, executives and other interested parties can see the updated summary information for their purpose.
but when and how should they be "triggered", if something happened that jeopardizes the business plan ?
immediately, in person. don't wait for any process and practice steps to deliver the information. valuable time would get lost. and I guess, that is what was meant by the question.
what are human made materials ?
Answer:
Natural materials may include wood, cotton, fur, or wool. Human-made materials may include plastic, rubber, glass, and Styrofoam.
What menu allows you to add different features to your document?
Answer:
The Insert Menu. The insert menu is used to place various objects into your document, such as page numbers, pictures, symbols, comments and other objects. Commands include break, date and time, field, symbol, reference, web component, text box, file and hyperlink.hope it helps ya mate!ت︎what is the purpose of a router
Answer:
below
Explanation:
A router receives and sends data on computer networks. Routers are sometimes confused with network hubs, modems, or network switches. However, routers can combine the functions of these components, and connect with these devices, to improve Internet access or help create business networks.
Answer:
to help connect a network to a device
Explanation:
for example a WiFi router is needed so that a specific device can be able to be connect with the WiFi network
6x-7=2x +1 someone help
6x-7=2x+1
-2x. -2x
4x-7=1
+7. +7
4x=8
÷4. ÷4
x=2
To see if a website is using a secure connection, what should you look for?
Question 8 options:
A plus sign (+) to the right of the tab
A star icon to the right of the URL.
A lock icon to the left of the URL.
A minus sign (-) to the right of the tab.
Answer:
A lock icon
Explanation:
Well, take a look at brainly that uses HyperText Transfer Secure
Btw it's to the left
1. It is another multimedia type you can work with in PowerPoint. If you have this on
your computer like an MP3 or WAV file, you can easily add them to your presentatie
A. Audio
C. Effects
B. Computer
D. Video
2. The simplest way to add an image to PowerPoint
A. Copy and Paste
C. Insert Image
B. Edit Presentation
D. Resize and Click
3. It is a stand-alone presentation that includes information presented with slides,
video, or digital representations and includes sound which might be a narrative,
music or sound effects.
A. Automated Presentation
C. Multimedia Presentation
B. Information Communication
D. Technology Presentation
1c
Answer:
1. Audio.
2. Copy and paste.
3. Multimedia presentation.
Explanation:
PowerPoint application can be defined as a software application or program designed and developed by Microsoft, to avail users the ability to create various slides containing textual and multimedia informations that can be used during a presentation.
Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.
1. Audio is another multimedia type or format that an end user can work with in PowerPoint. If end users have an audio file such as MP3 or WAV file on their computers, they can easily add them to their presentation using Microsoft PowerPoint.
2. In Microsoft PowerPoint, one of the simplest way to add an image to a presentation is to copy the image from a directory and paste it on the work area.
3. Multimedia presentation is a stand-alone presentation which typically involves presenting informations with graphics, slides, texts, video, or digital representations and sound which might be a narrative, music or sound effects.
In thinking ahead to the future of technological innovation, what new technology products or digital software do you/would you like to see in the future?
Answer: Flying cars with jet propulsion in the wheels to lift it up in the air.
To open something, using a key or an electronic device/ to use a password in order to use a mobile phone
Answer:
yes that is true
Explanation:
true or false
trueeeee
One benefit of open source software is that it
is free of cost.
allows access to the source code.
has robust training and support.
requires less technical expertise.
Answer:
allows access to the source code
Explanation:
this means you can edit and customize it however you wish
an example of one is AnkiDroid
Answer:
Its B
Explanation:
the second one
The file format is used for graphic files.
Answer:
.GIF
Explanation:
GIF or Graphics Interchange Format files are widely used for web graphics, because they are limited to only 256 colors, can allow for transparency, and can be animated. GIF files are typically small is size and are very portable.
what is the software
Answer:
the programs and other operating information used by a computer.
Explanation:
Answer:
the programs and other operating information used by a computer
Upload your 500-word story that describes one law, including how it relates to digital media, and summarizes a case that went to the courts and the stand of the parties involved.
Answer:
Communications Decency Act (CDA).
Explanation:
Communications Decency Act (CDA) is a law that relates to the digital media which is made to regulate content related to sex on the Internet. The person who sends any type of sexual content to a female or any individual so she can take sender to the court and he will be punished on the basis of Communications Decency Act (CDA). In this situation, senders and receivers are the two parties who are involved in this crime. The sender commit the crime whereas the receiver is innocent and was affected from the act so the sender receives the punishment according to the law.
Give 3 advantages of using shortcut key, especially in MS Office.
Answer:
Efficient and time-saving. Using shortcuts makes you more efficient at doing certain tasks on your computer. ...
Multi-tasking. Being a multi-tasker is sometimes required in life. ...
Health benefits.
To figure out how to use her MacBook Pro graphics software to update designs originally created on a DEC10, Marianne needs to use a ______ language?
Answer:
Glue Language
Explanation:
I'm not 100% sure, but here is the definition.
Glue language- A programming language that can be used to provide interoperability between systems not originally intended to work together
que es la felicidad??
In the space provided, explain the evolution of newspaper reporting, from the early 1900s to the Digital Age.
The first newspaper,daily doings, was published by the ancient Romans in 59 BCE. In the new era, the newspaper is evolving continuously.
What is newspaper?A newspaper is a bimonthly publication that contains written information on current events and is often typed in black ink on a white or gray backdrop.
The publication has gone through several changes during its lengthy and complicated existence.
Examining the history of newspapers can provide insight into how and why they have grown into the diverse media that they are today.
The first newspaper, daily doings, was published by the ancient Romans in 59 BCE, according to scholars. Despite the fact that no copies of this periodical have survived.
it is usually assumed that it chronicled events, assemblies, births, funerals, and daily gossip. These handwritten Avis, or gazettes, covered politics and military engagements.
Hence,the newspaper is evolved before 1900s and growing to a new digital Age.
To learn more about newspaper, refer:
https://brainly.com/question/21528399
#SPJ2
Make the list of menu icon in MS Excel
●file
●home
●insert
●page layout
●formulas
●data
●review
●view
PLEASE HELP ME ITS A TIMED TEST
Select all that apply.
Carmen wants to do a basic search on the Internet to find what software can be used to do data mining. Select each of the steps Carmen should complete.
A. Navigate to a search engine.
B. Type "software data mining."
C. List the synonyms for software.
D. Select the keywords "software" and "data mining."
E. Create a link.
F. Press Enter.
G. Form the question: What software can be used to mine data?
There are ways to mine data. The steps Carmen should complete are:
Press Enter.Navigate to a search engine.Form the question: What software can be used to mine data?List the synonyms for software.Select the keywords "software" and "data mining."Type "software data mining."What is data mining?Data mining is regarded as the act or the process of sorting that is often done through a large data group to known the patterns and relationships that can help handle business issues via data analysis.
Note that Data mining methods and tools helps firms to predict future trends and as such can make more better and informed business decisions.
Learn more about data mining from
https://brainly.com/question/26885075
Why is drive of value when pursuing a career in IT?
Without drive, a person may fall short in their career goals.
Drive is not of value.
Drive is only important when you work for Microsoft.
Drive is only needed when someone does not have a college degree.
Answer:
Drive is only important when you work for Microsoft.