Answer:
The filled in the black answers is:
1. work book
2. Spreadsheet
3. Cell
4. Sheet tabs
5. Column
6. Row
7.Cell content
8. data
9. Formula
10. Constant value
11. Number value
12. Cell address
Answer:
- import java.util.Scanner;
- import java.util.Random;
- public class Main {
-
- public static void main(String[] args) {
-
- Scanner input = new Scanner(System.in);
- Random rand = new Random();
-
- System.out.print("Enter number of questions you wish to practice: ");
- int n = input.nextInt();
-
- int i = 1;
- while(i <= n){
- int num1 = 1 + rand.nextInt(10);
- int num2 = 1 + rand.nextInt(10);
- int answer = num1 * num2;
- System.out.print("Question " + i + ": " + num1 + " x " + num2 + " = ");
- int response = input.nextInt();
-
- if(response == answer){
- System.out.println("Correct answer!");
- }
- else{
- System.out.println("Wrong answer. It should be " + answer);
- }
- i++;
- }
- }
- }
Explanation:
Firstly, we import Scanner and Random classes (Line 1-2) as we need to get user input for number of questions and generate random number in each question.
Next, create a Scanner and Random object (Line 7-8). Prompt user to input number of question and get the input using the Scanner object (Line 10-11).
Next create a while loop and set the condition to loop for n number of times (based on number of questions) (Line 14). In the loop, use Random object nextInt method to generate two integers between 1 -10 (Line 15-16). Prompt user to input an answer using the Scanner object (Line 18-19). If the response is matched with answer print a correct message (Line 21-22) other wise inform user they write a wrong answer and show the correct answer (Line 24-25).
correct me if i’m wrong i’m pretty sure it’s B i’ve had the same question
Answer with Explanation:
There are various factors that needed to be taken into account while deciding the factor of safety some of which are summarized below as:
1) Importance of the structure: When we design any structure different structures have different importance in our society. Take an example of hospital, in case a natural disaster struck's a place the hospital should be the designed to withstand the disaster as it's role in the crisis management following a disaster is well understood. Thus while designing it we need it to have a higher factor of safety against failure when compared to a local building.
2) Errors involved in estimation of strength of materials: when we design any component of any machine or a structure we need to have an exact idea of the behavior of the material and know the value of the strength of the material. But many materials that we use in structure such as concrete in buildings have a very complex behavior and we cannot estimate the strength of the concrete absolutely, thus we tend to decrease the strength of the concrete more if errors involved in the estimation of strength are more to give much safety to the structure.
3) Variability of the loads that may act on the structure: If the loads that act on the structure are highly variable such as earthquake loads amd dynamic loads then we tend to increase the factor of safety while estimating the loads on the structure while designing it.
4) Economic consideration: If our project has abundant funds then we can choose a higher factor of safety while designing the project.
Answer:
Heat losses by convection, Qconv = 90W
Heat losses by radiation, Qrad = 5.814W
Explanation:
Heat transfer is defined as the transfer of heat from the heat surface to the object that needs to be heated. There are three types which are:
1. Radiation
2. Conduction
3. Convection
Convection is defined as the transfer of heat through the actual movement of the molecules.
Qconv = hA(Temp.final - Temp.surr)
Where h = 6.4KW/m2K
A, area of a square = L2
= (0.25)2
= 0.0625m2
Temp.final = 250°C
Temp.surr = 25°C
Q = 64 * 0.0625 * (250 - 25)
= 90W
Radiation is a heat transfer method that does not rely upon the contact between the initial heat source and the object to be heated, it can be called thermal radiation.
Qrad = E*S*(Temp.final4 - Temp.surr4)
Where E = emissivity of the surface
S = boltzmann constant
= 5.6703 x 10-8 W/m2K4
Qrad = 5.6703 x 10-8 * 0.42 * 0.0625 * ((250)4 - (25)4)
= 5.814 W