Explanation:
PROGRAM QuadraticEquation
IMPLICIT NONE
REAL :: a, b, c
REAL :: d
REAL :: root1, root2
! read in the coefficients a, b and c
READ(*,*) a, b, c
WRITE(*,*) 'a = ', a
WRITE(*,*) 'b = ', b
WRITE(*,*) 'c = ', c
WRITE(*,*)
! compute the square root of discriminant d
d = b*b - 4.0*a*c
IF (d >= 0.0) THEN
d = SQRT(d)
root1 = (-b + d)/(2.0*a)
root2 = (-b - d)/(2.0*a)
WRITE(*,*) 'Roots are ', root1, ' and ', root2
ELSE
WRITE(*,*) 'no real roots exist!'
WRITE(*,*) 'Discriminant = ', d
END IF
END PROGRAM QuadraticEquation
Answer:
communication skills
bachelor's degree
planning and organizational skills
research skilss
Answer: Bandwidth
Explanation: Bandwidth is the term used for determining the speed of a transmission of data between two nodes in a particular network. It is usually measured in the terms of bits per second(bits/sec). Data that is send while transmission is measured in seconds in particular period of time. It is for the measurement of both wired connection as well as wireless network connections.
Answer: ensuring that a system is not changed by a subject that is not authorized to do so
Explanation: Access control refers to pribcues which are employed in the bid thlo ensure the security of data and information. It provides the ability to authenticate and authorize access to information and data thereby preventing unwarranted access and tampering of the information. Integrity in terms of data security and access control is is concerned with modification to an existing or original data by unauthorized sources. When unauthorized addition or subtraction occurs on a data, the integrity of such data has been compromised. Therefore, authorization is required whenever a source is about to access certain information whereby only those with the right authorization code will be allowed, Inputting an incorrect pass code after a certain number of tries may result in system lock down as access control detects a a possible intrusion
Answer:
meta tag
Explanation:
Meta tag -
It consists of the pieces from the content page , which describe the web page , is referred to as meta tag.
The meta tag is present only on the source code of the page , and does not appears on the web page.
It is a type of description , which describes the web page.
Hence, from the given information of the question, the correct term is meta tag.