Answer:
vvbdndndndndndnznmzxbbsvs
kgkgcicgfhjgyofdhkdyfjfgeghehehehehsbbsbsb
PLS HELP ??? LOL INEED HELP ITS TOO HARD
Answer: Internal disk drive is the main storage device located in a computer. It usually contains software applications, the operating system and other files.
Explanation:
Answer:
1. Input() is the correct answer
2.Most programming languages have a data type called a string, which is used for data values that are made up of ordered sequences of characters, such as "hello world". A string can contain any sequence of characters, visible or invisible, and characters may be repeated. ... A string can be a constant or variable .
3.The int() function converts the specified value into an integer number.
4.CandyCost = int(input("How much is the candy?"))
5.int()
ANSWERS
Answer:
D
Explanation:
A and B are not valid because you cannot use "=" as a comparator (you must use "==" or "===").
C is not valid because the expression after the conditional is not a statement (it uses "==" instead of "=")
Answer:
polymorphic
Explanation:
An example of polymorphic reference, suppose you have 3 classes: Main, Product and SpecificProduct. If SpecificProduct extends Product this means it is a product class but with something else to complement.
Say you want to reference an object of product in the main class, you can do it the classic way:
Product pd = new Product();
Or you can do it polymorphic, like this:
Product pd = new SpecificProduct();
The program will accept just fine because SpecificProduct is extending Product. When you do it like this, we say the reference you made was a polymorphic reference