0 of 69 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 69 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
There are two common ways of presenting character set data. (Choose Two)
Which of the following are true regarding ASCII (American Standard Code for Information Interchange)?
Match the correct Unicode character encoding standards to it respective description.
UTF-8
|
|
UTF-16
|
|
UTF-32
|
|
UTF-2
|
|
What is the difference between ASCII and Unicode? (Choose Two)
What are some advantages of Unicode
What are some advantages of Unicode
What is the difference between ASCII and Unicode? (Choose Two)
Match the correct Unicode character encoding standards to it respective description.
UTF-8
|
|
UTF-16
|
|
UTF-32
|
|
UTF-2
|
|
Which of the following are true regarding ASCII (American Standard Code for Information Interchange)?
Which notation system supports presenting the largest numbers using the fewest digits:
________________ are whole numbers. For example: 5, 21, or 65536. An __________ data type consumes 1 to 8 bytes of computer storage.
________________ can support decimal fractions such as 4.1, 26.4, or 5.62.
Which of the following data types should a developer use when creating a variable to hold a postal code?
These are a special numeric data type indicating that something is either TRUE or FALSE (with a 1 or 0).
_________________ is a single textual character, and can be a letter of the alphabet, a symbol, or, indeed, a numerical character. For example: a, D, 7, $, @, #. These consume one byte of storage.
_____________ is a collection of text characters. For example: XYZ, Hello world. There is no real limit on the amount of storage that can be used by a string.
Which of the following is true about strings?
For example: 5, 21, or 65536 is what data type?
For example 4.1, 26.4, or 5.62 is what data type?
Something is either TRUE or FALSE (with a 1 or 0) is what data type?
Which of the following is true about integers?
Which of the following is true about characters(char)?
Which of the following is true about Boolean values?
Which of the following is true about Floating-point numbers?
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = “Today is a Good Day”
#display y:
print(y)
#display the data type of y:
print(type(y))
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = 30
#display y:
print(y)
#display the data type of y:
print(type(y))
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = True
#display y:
print(y)
#display the data type of y:
print(type(y))
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = 30.5
#display y:
print(y)
#display the data type of y:
print(type(y))
The following code what data type of y would output to the screen?
>>> y=str(“Today is a Good Day”)
>>> print(type(y))
Match the correct data type to the code
x = 200
|
|
x = 90.5
|
|
x = False
|
|
x = "Hello Good Morning"
|
|
________________ are whole numbers. For example: 5, 21, or 65536. An __________ data type consumes 1 to 8 bytes of computer storage.
________________ can support decimal fractions such as 4.1, 26.4, or 5.62.
Which of the following data types should a developer use when creating a variable to hold a postal code?
These are a special numeric data type indicating that something is either TRUE or FALSE (with a 1 or 0).
_________________ is a single textual character, and can be a letter of the alphabet, a symbol, or, indeed, a numerical character. For example: a, D, 7, $, @, #. These consume one byte of storage.
_____________ is a collection of text characters. For example: XYZ, Hello world. There is no real limit on the amount of storage that can be used by a string.
Which of the following is true about strings?
For example: 5, 21, or 65536 is what data type?
For example 4.1, 26.4, or 5.62 is what data type?
Something is either TRUE or FALSE (with a 1 or 0) is what data type?
Which of the following is true about integers?
Which of the following is true about Boolean values?
Which of the following is true about characters(char)?
Which of the following is true about Floating-point numbers?
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = “Today is a Good Day”
#display y:
print(y)
#display the data type of y:
print(type(y))
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = 30
#display y:
print(y)
#display the data type of y:
print(type(y))
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = True
#display y:
print(y)
#display the data type of y:
print(type(y))
The following link will show you how to install python app on your system. https://vimeo.com/827151528?share=copy
Once python is installed complete the following to determine the appropriate data type
y = 30.5
#display y:
print(y)
#display the data type of y:
print(type(y))
The following code what data type of y would output to the screen?
>>> y=str(“Today is a Good Day”)
>>> print(type(y))
Match the correct data type to the code
x = 200
|
|
x = 90.5
|
|
x = False
|
|
x = "Hello Good Morning"
|
|
Which notation system supports presenting the largest numbers using the fewest digits:
A technician is concerned that sensitive data transmitted over the Internet can be intercepted and viewed during a MITM attack. Which of the following should the technician enable to reduce the risk?
A user wants to ensure port 3389 is open for remote desktop on a PC. Which of the following describes where the user should verify the port is open?
Which of the following is an example of multifactor authentication?
Which of the following is primarily a confidentiality concern?
A regulation requires new applicants to provide a scan of their retinas in case of any future legal questions regarding who applied for the position. Which of the following concepts is this an example of?
A systems administrator is setting up a new server using RAID technology. If one hard drive in the array fails, the data is stored on another drive, preventing data loss. Which of the following business continuity concepts does this explain?
The IT department has established a new password policy for employees. Specifically, the policy reads:
Passwords must not contain common dictionary words
Passwords must contain at least one special character.
Passwords must be different from the las six passwords used.
Passwords must use at least one capital letter or number
Which of the following practices are being employed? (Select TWO).
A large payment website was breached recently. A user is concerned that the breach will affect account security on other sites. Which of the following password best practices would mitigate this risk?
Which of the following would MOST likely prevent malware sent as compromised file via email from infecting a person’s computer?
Joe, a user, finds out his password for a social media site has been compromised. Joe tells a friend that his email and banking accounts are probably also compromised. Which of the following has Joe MOST likely performed?
A company will begin to allow staff to work from home by means of formal request. Which of the following is the BEST way for the company to document this change?
Which of the following is an example of information a company would ask employees to handle in a sensitive manner?
Which of the following authorization techniques is used to assign permissions and authorize a user based on job title or function?
In which of the following situations should there be come expectation of privacy?
For a disaster recovery exercise, a company wants to ensure customer data is recovered before operational data. This is an example of:
Which of the following security concerns is a threat to confidentiality?
Which of the following is a reason why complex passwords are required?
A user logs into a laptop using a username and complex password. This is an example of: