Answer:
Map and avoid high-risk zones.
Build hazard-resistant structures and houses.
Protect and develop hazard buffers (forests, reefs, etc.)
Develop culture of prevention and resilience.
Improve early warning and response systems.
Build institutions, and development policies and plans.
Explanation:
Answer:
//Program was implemented using C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
unsigned int second_a(unsigned int n)
{
int r,sum=0,temp;
int first;
for(int i= 1; I<=n; i++)
{
first = n;
//Check if first digit is 3
// Remove last digit from number till only one digit is left
while(first >= 10)
{
first = first / 10;
}
if(first == 3) // if first digit is 3
{
//Check if n is palindrome
temp=n; // save the value of n in a temporary Variable
while(n>0)
{
r=n%10; //getting remainder
sum=(sum*10)+r;
n=n/10;
}
if(temp==sum)
cout<<n<<" is a palindrome";
else
cout<<n<<" is not a palindrome";
}
}
}
Explanation:
The above code segments is a functional program that checks if a number that starts with digit 3 is Palindromic or not.
The program was coded using C++ programming language.
The main method of the program is omitted.
Comments were used for explanatory purpose.
Answer:
The code is attached.
Explanation:
I created a string s including 6 colors with spaces in between. Then I converted the string into a list x by using split() method. I used three different methods for removing elements from the list. These methods are remove(), pop() and del.
Then I used methods append(), insert() and extend() for adding elements to the list.
Finally I converted list into a string using join() and adding space in between the elements of the list.
Explanation:
For true Strain:
step 1:
E true = Ln(1 + 0.5 ) = 0.40
Step 2:
E true = Ln(1 + 0.33 ) = 0.29
By single step process:
E true = Ln(1 + 1 ) = 0.69
total strain of step process = 0.40 + 0.29 = 0.69 units
SO TRUE STRAIN IS ADDITIVE.