Answer: The answer is given below
Explanation:
Ductile to brittle transition temperature (DBTT) is the temperature when there is a pronounced reduction in the ability of a material to absorb force without being fractured.
It shuld be noted that when this happens, the material transitions from ductile to brittle which is known as ductile to brittle transition temperature(DBTT).
DBTT
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:
// 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