Explanation:
its a laptop ☺️. . . . . .. . .
Explanation:
its an electronic device that processes data and stores information
Answer:
The function in Python is as follows:
def digitSum( n ):
if n == 0:
return 0
if n>0:
return (n % 10 + digitSum(int(n / 10)))
else:
return -1 * (abs(n) % 10 + digitSum(int(abs(n) / 10)))
Explanation:
This defines the method
def digitSum( n ):
This returns 0 if the number is 0
<em> if n == 0:
</em>
<em> return 0
</em>
If the number is greater than 0, this recursively sum up the digits
<em> if n>0:
</em>
<em> return (n % 10 + digitSum(int(n / 10)))
</em>
If the number is lesser than 0, this recursively sum up the absolute value of the digits (i.e. the positive equivalent). The result is then negated
<em> else:
</em>
<em> return -1 * (abs(n) % 10 + digitSum(int(abs(n) / 10)))</em>
Answer:
d. all statements are correct
Explanation:
CATV is a very common method used in transmitting television signal to homes, this is achieved through the use of radio frequency signals which is transmitted via coaxial cable. In recent times, CATV as been transmitted through optical fiber, this optical fiber makes use of light to transmit signal.
CATV can be traced back to 1924 in which cable broadcasting was done through the use cable in Europe.
Answer:
a property
Explanation:
A JavaScript property is a characteristic of an object, often describing attributes associated with a data structure. There are two kinds of properties: Instance properties hold data that are specific to a given object instance. Static properties hold data that are shared among all object instances