Answer:
The correct answer to the following question will be "Molex connector".
Explanation:
The Molex connector can be used for power connections on some kind of device for just a disk drive as well as many other electronic devices including CD-ROMs, display chips, etc.
- Inside a PC shell, the Molex connectors carry DC power to a device.
- Most providers offer accessible connections, not only the Molex as well as AMP connectors.
So, it's the right answer.
Answer:
D) Hybrid Attack
Explanation:
This type of attack is a blend of both a dictionary and brute force attack. The meaning of this is, while a dictionary attack method would capture a wordlist of passwords, the brute-force attack would be applied to each of password captured.
Answer:
A.
Explanation:
The purpose of a CD-copying software is that it records data on a recordable CD.
I think the answer should be answer D.
Answer:
The program in Python is as follows:
word = input("Word: ")
if len(word) < 5:
print("At least 5 characters")
else:
pal = word[0:5]
word = word[0:4]
word = word[::-1]
pal+=word
print(pal)
Explanation:
This gets the word from the user
word = input("Word: ")
This checks if the length of the word is less than 5.
if len(word) < 5:
If yes, this tells the user that at least 5 characters is needed
print("At least 5 characters")
If otherwise
else:
This extracts the first 5 characters of the word into variable named pal
pal = word[0:5]
This extracts the first 5 characters of the word into variable named word
word = word[0:4]
This reverses variable word
word = word[::-1]
This concatenates pal and word
pal+=word
This prints the generated palindrome
print(pal)