<span>Encapsulation is defined as the process of adding a header in front of data supplied by a higher layer (and possibly adding a trailer as well).</span>
        
             
        
        
        
Oh i do i do i do .... but could u retake the pic. it is kinda blurry
        
             
        
        
        
Answer:
Following are the program in the Python Programming Language.
#import math package
from math import sqrt
#define function
def circle(x,y):
  #return the square root
  return sqrt( (x)**2 + (y)**2 )
#get input from the user
x = float(input("Enter first number between -10 and 10: "))
#get input from the user
y = float(input("Enter first number between -10 and 10: "))
#check condition
if(circle(x,y)<8):
  #then, print message
  print("It is in!")
#otherwise
else:
  #print message
  print("It is not in!")
<u>Output:</u>
Enter first number between -10 and 10: 1.5
Enter first number between -10 and 10: 2.6
It is in!
Explanation:
Here, in the following program in the Python Programming Language.
- Define the function "circle" and pass the argument "x" and "y" then, return square root of x and y.
- Set a variable "x" which get float type input from the user.
- Set a variable "y" which get float type input from the user.
- Set the if conditional statement to check that the function return the value less than 8 then, print the message.
- Otherwise, it print the following message.
 
        
             
        
        
        
Answer:
13: 1101
5: 0101
10: 1010
2: 0010
Explanation:
The binary system, on the other hand, is a base-2 number system. That means it only uses two numbers: 0 and 1. When you add one to one, you move the 1 one spot to the left into the twos place and put a 0 in the ones place
what is done with the dice is to have an example of how binary numbers are made until 15