Answer:
Algorithm
Explanation:
Complete the sentence
A _______ spans a geographic area like a city,is larger than a LAN and smaller than WAN
Answer:
metropolitan area network (MAN)
Explanation:
A local area network (LAN) refers to a group of personal computers (PCs) or terminals that are located within the same general area and connected by a common network cable (communication circuit), so that they can exchange information from one node of the network to another. A local area network (LAN) is typically used in small or limited areas such as a set of rooms, a single building, school, hospital, or a set of well-connected buildings.
On the other hand, a metropolitan area network (MAN) spans a geographic area like a city, is larger than a local area network (LAN) and smaller than wide area network (WAN).
Basically, a metropolitan area network (MAN) is formed by an aggregation of multiple local area network (LAN) that are interconnected using backbone provided by an internet service provider (ISP). A metropolitan area network (MAN) spans for about 5 kilometers to 50 kilometers in size.
whats the answer :)?
i will give brainslist
Answer:
Transmission medium is the answer
Software and technology that allow people to work together on a task are known as
Collaborative software or groupware.
Answer:
Collaborative software
How do you reset a g.mail password?
Answer:
put: forgot password to reset it
Answer:
Change your pass word
Open your Go ogle Account. You might need to sign in.
Under "Security," select Signing in to G oo gle.
Choose Password. You might need to sign in again.
Enter your new password, then select Change Password.
Cora is writing a program to make a motorcycle racing game. If Cora wants to speed of the motorcycle to appear on the screen when the game is played, then Cora needs to add something to the code that will make the speed
Answer: C. Boolean value
Explanation:
The options are:
A. input
B. output
C. Boolean value
D. conditional statement
Boolean data type refers to the data type which possesses two values which are true and false which shows two truth values of values.
The boolean expression results in a boolean value. Based on the question given, then the answer will be Boolean value. Therefore, the correct option is C.
Answer:
c
Explanation:
sorry if I was wrong
E) ¿Entiende usted que tendría repercusión legal un mal manejo de los datos del cliente por parte de la empresa? ¿Por qué?
Answer:
Efectivamente, un mal manejo de los datos del cliente por parte de la empresa tendría repercusiones legales que afectarían negativamente a la compañía. Esto es así porque un eventual mal manejo de los datos personales de los clientes implicaría una filtración de dichos datos hacia el resto del público, con lo cual los datos personales y privados de cada cliente se verían expuestos en forma pública, generando así posibles daños a estos a través de la mala utilización de dicha información por parte de terceros malintencionados.
Identify characteristics of object-oriented programming design. Choose all that apply
-It breaks the solution into independent objects.
-it is a simple, uncomplicated approach to programming.
-It uses objects that send data to other objects.
-It supports a modular design that encourages the reuse of code.
Answer:
It breaks the solution into independent objects
It supports a modular design that encourages the reuse of code
Explanation:
Object-Oriented programming (OOP) is a programming language type that makes use objects and classes in its construct. With object-oriented programming software is structured as classes which are both reusable and simple code blueprints used for the creation of instances of the objects of the program
An object oriented program design breaks the solution of the problem the program is solving into independent objects, such that the objects are made of classes which are modular and reusable code
Therefore, the correct options are;
It breaks the solution into independent objects
It supports a modular design that encourages the reuse of code
Answer:
all expect b
Explanation:
HELPPPP easy question
Your friend brags, "It was easy to trying to beat the computer in the STAX game. I made $100,000 more with my strategy of actively trading those individual stocks. Why would you want to just buy an index fund? It’s so much fun to try to beat the market!" How would you respond?
Answer:
I would tell them " keep that attitude when the market crashes. "
rem wap a programe using function procedure to calculate simple interest
Answer:
The program in Python is as follows:
def interest(P,R,T):
[tex]I = P * R * T/100[/tex]
return I
P = float(input("Principal: "))
R = float(input("Rate (%): "))
T = float(input("Time (years): "))
print(interest(P,R,T))
Explanation:
Required
Simple interest program using function
This defines the function
def interest(P,R,T):
This calculates the simple interest
[tex]I = P * R * T/100[/tex]
This returns the calculated interest
return I
The main begins here
These get inputs for principal, rate and time
P = float(input("Principal: "))
R = float(input("Rate (%): "))
T = float(input("Time (years): "))
This calls the interest function
print(interest(P,R,T))
Write a structured algorithm that prompts the
user to input two numbers. The algorithm should
multiply both numbers and then prompt the
user to enter the answer. The algorithm should
compare the answer entered with that calculated
and output "correct answer" or "incorrect answer"
accordingly. At the start, input how many sums
will be done.
Answer:
Step 1 : Start
Step2 : Input first number, num1
Step3 : Input second number, num2
Step4 : product - - > num1 * num2 (product of num1 and num2)
Step5 : Input product, myanswer
Step6 : comparison - - - > correct or incorrect based on myanswer and product
Step6: print(comparison)
Step7: End
Explanation:
Algorithm is a sequence of instructions a computer is expected to follow to solve a particular problem.
Required :
Two inputs ; num1 and num2
Expected output
Algorithm :
Step 1 : Start
Step2 : Input first number, num1
Step3 : Input second number, num2
Step4 : product - - > num1 * num2 (product of num1 and num2)
Step5 : Input product, myanswer
Step6 : comparison - - - > correct or incorrect based on myanswer and product
Step6: print(comparison)
Step7: End
The two numbers to multiply are entered ; the product is calculated by the program ; the the user inputs his or her own expecteted product ;
Both are compared and the output of the comparison is displayed (either correct oe incorrect)
Which risk mitigation framework allow scope for research and acknowledge for risk mitigation.
Answer:
NIST SP 800 30
Explanation:
Cyber security can be defined as a preventive practice of protecting computers, software programs, electronic devices, networks, servers and data from potential theft, attack, damage, or unauthorized access by using a body of technology, frameworks, processes and network engineers.
Risk management can be defined as the process of identifying, evaluating, analyzing and controlling potential threats or risks present in a business as an obstacle to its capital, revenues and profits.
This ultimately implies that, risk management involves prioritizing course of action or potential threats in order to mitigate the risk that are likely to arise from such business decisions.
NIST is acronym for National Institute of Standards and Technology and it's under the U.S. Department of Commerce. The NIST cybersecurity framework (CSF) is a powerful tool that provide guidelines for both the external and internal stakeholders of organization on how they can effectively and efficiently organize, manage, and improve their cybersecurity programs, so as to mitigate the risks associated with cybersecurity.
The NIST SP 800 30 is a risk mitigation framework that provide guidance for conducting or allows scope for research, assessment and acknowledgement for risk mitigation of federal information systems and organizations.
Typically, NIST SP 800 30 is used for translating cyber risk so that it can easily be understood by the chief executive officer (CEO) and board of both a public and private organization.
Use the ________ predefined formats to quickly format cells.
Style Formats
Cell Styles
Cell Definitions
Cell Formats
Answer:
I think choose (2)
Cell styles
A customer in a store is purchasing five items. Write a program that asks for the price of each item, and then displays the subtotal of the sale, the amount of sales tax, and the total. Assume the sales tax is 7 percent. Display all results, properly labeled, as numbers with two digits after the decimal point.
Answer:
Program approach:-
Using the header file.Using the standard namespace I/O.Define the main function.Display the enter price of 5 terms.Explanation:
Program:-
//header file
#include<iostream>
#include<iomanip>
//using namespace
using namespace std;
//main function
int main(){
const double SALES_TAX=0.07;
double subTotal=0,total=0,taxAmount = 0,x;
cout<<"Enter price of 5 items"<<endl;
for(int j=0;j<5;j++){
cin>>x;
subTotal += x;
}
taxAmount = subTotal * SALES_TAX;
total = taxAmount + subTotal;
cout<<fixed<<setprecision(2)<<endl;
cout<<"Sub total: "<<subTotal<<endl;
cout<<"Sales Tax: "<<taxAmount<<endl;
cout<<"Total: "<<total<<endl;
}
write a program to enter RADIUS of a CIRCLE and PRINT AREA of TRIANGLE using Q Basic. (class 8)
Answer:
The program is as follows:
10 INPUT RADIUS, BASE, HEIGHT
20 CIRCLE = 3.142* RADIUS * RADIUS
30 TRIANGLE = 0.5* BASE * HEIGHT
40 PRINT CIRCLE
50 PRINT TRIANGLE
60 STOP
Explanation:
The program description doesn't tally;
In other words, it is impossible to calculate the area of a triangle using the radius of a circle.
So, I designed the program to get input for radius, base and height.
Get input for radius, base and height
10 INPUT RADIUS, BASE, HEIGHT
Calculate area of circle
20 CIRCLE = 3.142* RADIUS * RADIUS
Calculate area of triangle
30 TRIANGLE = 0.5* BASE * HEIGHT
Print area of circle
40 PRINT CIRCLE
Print area of triangle
50 PRINT TRIANGLE
End of program
60 STOP
What is a header row?
O the title of a document when it is centered
O the top row of a table that shows titles for the cells below
O the bottom row in a table that shows sums of numbers in cells
O the hidden space at the top of each page
Please help ASAP taking unit test
Answer:
b. the top row of a table that shows titles for the cells below
Explanation:
A header row is the first row of a given table that shows titles of the cells below it. In many cases, the header row has different styles from the other rows in the table. A header row can be found in, among others, both Microsoft's Excel and Word applications.
In the attached figure, the first row with a darker shade of background color is the header row for the table.
Choose the term that matches each description.
_____________ allows users to interact with computer hardware and application software.
______________allows users to complete specific tasks, such as creating a document.
______________allows programmers to create new applications.
Answer:
operating systems, word software, computer concepts for end users
Explanation:
operating systems allow users to interact with computer hardware and application software.
word software allows users to complete specific tasks, such as creating a document.
computer concepts for end users allows programmers to create new applications.
The answer is "operating systems, word software, and end-user computer concepts", and its further explanation can be defined as follows:
The OS includes and administers all applications and software which a computer or mobile device could indeed execute, meaning the governance of the device software or hardware.The software for word processing is used for manipulating texts like a resume or report these text documents. Usually, you type in text and the software offers copy, delete, and numerous page layout devices.Study tools and coding areas allow finished to tailor apps to their needs and understanding instead of expert developers.Thus, the answer is "operating systems, word software, and end-user computer concepts".
Learn more:
brainly.com/question/17798901
pls any one what is pheumatic and hydrautic
Answer:
pheumatic is a branch of engineering that make use of gas
hydraulic is a technology and aplied science using engineering
A small business utilizes a SOHO router and wishes to secure its existing wireless infrastructure. The business has fewer than ten devices, which are a mixture of old and new machines. Due to the varying ages of the machines, the latest wireless encryption methods may not be supported on all devices. Which of the following would be the MOST cost-effective method to add a layer of security while allowing all machines to connect?
A. MAC filtering
B. 802.1X
C. WPA2
D. EAP-FAST
Answer:
C
Explanation:
WPA2 builds on its predecessor, WPA, and is specifically designed to meet the most demanding enterprise security needs. ... Furthermore, because WPA2 is backwards- compatible with WPA, organizations that have already implemented the WPA standard can migrate to WPA2 at their own pace.
alguien me prestta una cuenta de osu!, porfa
Answer:
english please........
_______ are pre-defined formats used to quickly format cells.
Cell formats
Cell styles
Style formats
Cell definitions
Answer:
Cell format
Explanation:
Cell formats refers to the various styling options which can be applied to cells in other to change the appearance and the way data is being presented. A number of cell formats are predefined in excel spreadsheet which can be applied directly to data in other to change it's appearance without applying manual changes. With predined cell formats gives several alignment option, Font size, color and setting, the fill color and border options. This can be directly applied to cells or tables to gives a good appearance of the data.
low frequency radio wave travel in straight line and high frequency radio wave can travel in all direction true or false
Answer:
The correct answer is True.
Explanation:
The electromagnetic spectrum consists of various waves. The Radio waves are categorized to be at the low-frequency end of this spectrum.
Radio Waves have multiple communication uses. Some of them are television and radio broadcasting, communications, and satellite transmissions.
Radio waves are not harmful to biotic life when absorbed by living matter and their transmission is unimpeded by air. Their transmission can also be absorbed, deflected, reflected, refracted, or diffracted by air molecules and the earth's surface.
Cheers
que significa DESFRAGMENTAR EL DISCO DURO?????
Answer:
DESFRAGMENTAR
Explanation:
es el proceso de reorganizar los datos almacenados en el disco duro para que los datos relacionados se vuelvan a juntar, todos alineados de manera continua.
Create the following dataframe Student from dictionary of series and display
the details of each student. (row wise).
Name Subject Marks
1 Anjan English 78
2 Shreya Science 87
3 Meena Science 81
4 Karan Maths 91
Answer:
import pandas as pd
pd.Dataframe(information)
Explanation:
Given :
Name Subject Marks
1 Anjan English 78
2 Shreya Science 87
3 Meena Science 81
4 Karan Maths 91
information = { 'Name' : ['Anjan', 'Shreya', 'Meena', 'Karan'], 'Subject' : ['English', 'Science', 'Science', 'Maths'], 'Marks' : [ 78, 87, 81, 91]}
The information in the table can be embedded in dictionary list as given above.
Using the pandas library in python :
The Dataframe method in pandas will create the table as shown by putting the variable as an argument in the DataFrame method.
write an algorithm to find perimeter of circle
Answer:
Here’s one!
Given [math]R[/math], the radius of the circle.
Let [math]N,D\leftarrow 0[/math]
Repeat until [math]D[/math] is large enough (about 1,000,000)
[math]x,y\leftarrow U[0,1][/math]
If [math]x^2 + y^2\le 1[/math] then [math]N\leftarrow N+1[/math]
[math]D\leftarrow D+1[/math]
[math]P\leftarrow\frac{8NR}{D}[/math]
Return [math]P[/math]
[math]U[0,1][/math] is a uniform random number in the range [math][0,1][/math].
Explanation:
What is missing in this list of information needed to cite a book?
Author, title, date, publisher
A. page numbers
B. author’s name
C. city and state where it was published
D. author’s sources
Answer:
C. City and state where it was publishedExplanation:
#CarryOnLearning[tex]{hope it helps}}[/tex]
The one that is missing in the list of information given is author’s sources. The correct option is D.
What is citation?A "citation" is the way you tell the readers that some of the information in your work came from another source.
It also provides your readers with the information they need to locate that source on the reference or Works Cited page. A citation must be enclosed by parentheses.
It properly credits the authors of the phrases or concepts that you used in your paper. It enables those reading your work to find your sources and learn more about the ideas you present in your paper.
In the given list to cite a book, i.e. Author, title, date, publisher, the one that is missing and should be incorporated is author's source.
Thus, the correct option is D.
For more details regarding citation, visit:
https://brainly.com/question/1272936
#SPJ2
Two use of dovetail saw
Answer:
They are particularly use when it is use for cutting small or very precise cut. They are particularly use in joint making mostly dovetail joints
hope it helps
list 5 uses of computer
Answer:
if you a student..then you need it for sure
Explanation:
Microsoft Office
Doing assignment
doing report
answer online test/quiz
movie
make money
typing
play game
What is machine level language ?
Explanation:
The machine-level language is a language that consists of a set of instructions that are in the binary form 0 or 1. As we know that computers can understand only machine instructions, which are in binary digits, i.e., 0 and 1, so the instructions given to the computer can be only in binary codes.
A channel or path through which the data or information is transferred form one place to another in a computer network is called
Answer: Data Transmission mode defines the direction of the flow of information between two communication devices.
Explanation:
It is also called Data Communication or Directional Mode. It specifies the direction of the flow of information from one place to another in a computer network.
A channel or path through which the data or information is transferred form one place to another in a computer network is called communication channel.
What is communication channel?Information is transported from one network device to another over a communication channel.
Data is transported across wired channels using cables and wires. Without using cables or wires, wireless channels transmit data from one device to another.
Data communication is the process of transferring data from one device to another via a transmission medium of some kind.
The system bus is a network of wires and connectors that carries data between a computer's primary memory and its processors.
For data and control signals travelling between the main parts of the computer system, the bus offers a communication path.
Thus, communication channel is the path for data transfer.
For more details regarding communication channel, visit:
https://brainly.com/question/13649068
#SPJ6
what is the best programming language
Answer:
Ther are 8 best programming language :
• Javascript
• Swift
• Scala
• Go
• Python
• Elm
• Ruby
• C#