Answer:
To fit text to a shape in Affinity Designer, make sure you have your text selected. Then, grab the Frame Text Tool and click on the shape. A blinking cursor will appear within the shape, indicating that you can begin typing. The text you type will be confined to the boundaries of the shape.
Explanation:
Solution :
Given :
External diameter of the hemispherical shell, D = 500 mm
Thickness, t = 20 mm
Internal diameter, d = D - 2t
= 500 - 2(20)
= 460 mm
So, internal radius, r = 230 mm
= 0.23 m
Density of molten metal, ρ = 
= 
The height of pouring cavity above parting surface is h = 300 mm
= 0.3 m
So, the metallostatic thrust on the upper mold at the end of casting is :

Area, A 




= 7043.42 N
Answer:
a) 22.5number
b) 22.22 m length
Explanation:
Given data:
Bridge length = 500 m
width of bridge = 12 m
Maximum temperature = 40 degree C
minimum temperature = - 35 degree C
Maximum expansion can be determined as

where , \alpha is expansion coefficient
degree C
SO, 

number of minimum expansion joints is calculated as

b) length of each bridge

Okay sure.
I’ll 1)chords
2)pulse
3)aerophone
4) the answer is C
5)rhythm
Pretty sure those are the answers
Answer:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
string name[5];
int age[5];
int i,j;
for ( i = 0; i<=4; i++ ) {
cout << "Please enter student's name:";
cin >> name[i];
cout << "Please enter student's age:";
cin >> age[i];
}
for (i=0;i<=4;i++){
cout<<"Age of "<< name[i]<<" is "<<age[i]<<endl;
}
}
Output of above program is displayed in figure attached.