Answer:
Answer explained below
Explanation:
The value of here is 9
The value of there is hexadecimal value of DECO here, d = 0x39 aaaa (aaaa is the memory address of here )
We have the object code :-
let's take there address is 0x0007
0x0005 BR there :- 0x120020
0x0007 here: .WORD 9
310003 there: DECO here,d - 0x390007
310005 STOP
.END
Answer:
shear plane angle Ф = 26.28°
shear strain 2.20
Explanation:
given data
angle = 16°
chip thickness t1 = 0.32 mm
cut yields chip thickness t2 = 0.72 mm
solution
we get here first chip thickness ratio that is
chip thickness ratio =
................. 1
put here value
chip thickness ratio =
chip thickness ratio r = 0.45
so here shear angle will be Ф
tan Ф =
............2
tan Ф =
tan Ф = 0.4938
Ф = 26.28°
and
now we get shear strain that is
shear strain r = cot Ф + tan (Ф - α ) ................3
shear strain r = cot(26.28) + tan (26.28 - 16 )
shear strain r = 2.20
Answer:
https://www.origamiway.com/paper-airplane-instructions.shtml
Explanation:
This is a more personal preference, so at the end of the day it is what works best for you :D
Hope this helps!
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Answer: 0.518
Explanation: Total Area of lake = 225 sq miles = 6.273e+9 sq feet
Change in volume per second = 43800-6200 = 37600 cfs
Change in volume per day = 37600 * 3600 * 24 = 3.249e+9 cfd
Total rise of water level per day = Change in volume per day/Total lake area
= 3.249e+9/6.273E+9 = 0.518 feet/day