Answer: Here are some reasons why you might send a professional business letter:
1. It will make the recipient trust and respect you more.
2. It shows that you are a good and respectable business person.
3. It shows that you put time and effort into your business dealings no matter how small.
4. It shows that you respect the recipient as sending a professional business letter is harder than simply sending a text.
Hope this helps! :)
Explanation:
Answer:
(p+3t/6) ÷ (p÷6) = 8
Explanation:
(p+3t/6) ÷ (p÷6)
Given that:
p=6 AND t=4
Putting values of p and t in equation:
=(6+3(4)/6)/ (6/6) First we will solve the round brackets
=(6+12/6)/(1) As 3*4 =12
=(6+2) As 12/6 = 2 and anything dividing by one remains same
=8 Answer
Answer:
I would say Alan Turing is the father of the modern computer
Answer:
import math
# Python program for presenting all the prime numbers till an agreed numeral
prime=[]
def findprimeinanarray(n):
print("Prime numbers admid", 1, "and", n, "are:")
j=0
flag=0
for n in range(1, n + 1):
# all prime numbers are greater than
if n > 1:
for i in range(2, n):
if (n % i) == 0:
flag=0
break
else:
flag=1
if flag==1:
prime.insert(j,n)
j=j+1
else:
continue
print(prime[:])
# A Python function for printing all the prime functions and a Python program to print prime factor
prime1=[]
j=0
# A function to print all the prime factors of a given number if it is not prime
def primeFact(num):
while num % 2==0:
prime1.insert(2,0)
num = num/2
# num should be odd at this breakpoint
# so we need a shift of 2 ( i = i + 2)
for i in range(3,int(math.sqrt(num))+1,2):
# while i divides num , print i ad divide num
while num % i== 0:
num = num /i
if num >2:
j=j+1
prime1.insert(num,j)
print(prime1[:])
# program to test the coderint
n=600
findprimeinanarray(7)
k = 45
primeFact(k)
Explanation:
import math
# Python program for presenting all the prime numbers till an agreed numeral
prime=[]
def findprimeinanarray(n):
print("Prime numbers admid", 1, "and", n, "are:")
j=0
flag=0
for n in range(1, n + 1):
# all prime numbers are greater than
if n > 1:
for i in range(2, n):
if (n % i) == 0:
flag=0
break
else:
flag=1
if flag==1:
prime.insert(j,n)
j=j+1
else:
continue
print(prime[:])
# A Python function for printing all the prime functions and a Python program to print prime factor
prime1=[]
j=0
# A function to print all the prime factors of a given number if it is not prime
def primeFact(num):
while num % 2==0:
prime1.insert(2,0)
num = num/2
# num should be odd at this breakpoint
# so we need a shift of 2 ( i = i + 2)
for i in range(3,int(math.sqrt(num))+1,2):
# while i divides num , print i ad divide num
while num % i== 0:
num = num /i
if num >2:
j=j+1
prime1.insert(num,j)
Answer:
The hardest known mineral is diamond
Explanation:
It is rated 10 on the Moh's hardness scale and it can only be cut by another diamond!
When a carpenter sands a wooden board until it is smooth this is a physical change, because the chemical properties of the wood are not changed, only its appearance. It is still wood just a bit more smooth. This means that this change doesn't change what the substance (the wood) is. A chemical change on the other hand is change in which a new substance is formed and energy is either given off or absorbed.