Answer:
Your question seems incomplete
Explanation:
Answer:
To convert hexadecimal number 11BA to decimal, follow these two steps:
Start from one's place in 11BA : multiply ones place with 16^0, tens place with 16^1, hundreds place with 16^2 and so on from right to left
Add all the product we got from step 1 to get the decimal equivalent of 11BA.
Using the above steps, here is the work involved in the solution for converting 11BA to decimal number (Don't forget that we start from ones place to so on...)
Decimal equivalent of "A" = (A) 10 × 16^0 = 10
Decimal equivalent of "B" = (B) 11 × 16^1 = 176
Decimal equivalent of "1" = 1 × 16^2 = 256
Decimal equivalent of "1" = 1 × 16^3 = 4096
Decimal equivalent of "11BA" = 409625617610
11BA = 4538
Here is the final answer, The hexadecimal number 11BA converted to decimal is therefore equal to:
4538
Answer:
Simple Mail Transfer Protocol (SMTP) is the standard protocol for sending emails across the Internet.
Answer:
#HERE IS CODE IN PYTHON
#function to find length of shortest and longest string in the array
def fun(list2):
#find length of shortest string
mn=len(min(list2))
#find length of longest string
mx=len(max(list2))
#return both the value
return mn,mx
#array of strings
list2 = ['Ford', 'Volvo', 'BMW', 'MARUTI','TATA']
# call the function
mn,mx=fun(list2)
#print the result
print("shortest length is:",mn)
print("longest length is:",mx)
Explanation:
Create an array of strings.Call the function fun() with array as parameter. Here min() function will find the minimum string among all the strings of array and then len() function will find its length and assign to "mn". Similarly max() will find the largest string and then len() will find its length and assign to "mx". Function fun() will return "mn" & "mx".Then print the length of shortest and longest string.
Output:
shortest length is: 3
longest length is: 5
Circles
Area of Circle is
Total percentage increase in the area of the modified circle is 69%
Explanation:
(a) Given the diameter of the circle be d
Then the radius of the circle = r = d/2
and the area of the circle is given by:
Area(A) =
A =
A =
The area of circle is
(b)
The increase in percentage while changing the dimensions is given by the formula :
Total % increase = a% + b% - (a% * b%)/100
Where ,
a% is the percentage increase in side a
b% is the percentage increase in side b
Let the percentage increase in radius is : a%
Since a% = b%
So the formula is
Total increase % = a% + a% + (a% * a%)/100
Given here the diameter of the circle increases by 30% so a =30
Therefore, putting the value of a in the formula
Total increase % = 30% + 30% + (30% *30%)/100
Total increase % = 60% + 9%
Total increase % =69%
Therefore the total percentage increase in the area of the modified circle is 69%