Answer:
The condition does not hold for a compression test
Explanation:
For a compression test the engineering stress - strain curve is higher than the actual stress-strain curve and this is because the force needed in compression is higher than the force needed during Tension. The higher the force in compression leads to increase in the area therefore for the same scale of stress the there is more stress on the Engineering curve making it higher than the actual curve.
<em>Hence the condition of : on the same scale for stress, the tensile true stress-true strain curve is higher than the engineering stress-engineering strain curve.</em><em> </em>does not hold for compression test
Answer:
- public class Main {
- public static void main(String[] args) {
- String testString = "abscacd";
-
- String evenStr = "";
- String oddStr = "";
-
- for(int i=testString.length() - 1; i >= 0; i--){
-
- if(i % 2 == 0){
- evenStr += testString.charAt(i);
- }
- else{
- oddStr += testString.charAt(i);
- }
- }
-
- System.out.println(evenStr + oddStr);
- }
- }
Explanation:
Firstly, let declare a variable testString to hold an input string "abscacd" (Line 1).
Next create another two String variable, evenStr and oddStr and initialize them with empty string (Line 5-6). These two variables will be used to hold the string at even index and odd index, respectively.
Next, we create a for loop that traverse the characters of the input string from the back by setting initial position index i to testString.length() - 1 (Line 8). Within the for-loop, create if and else block to check if the current index, i is divisible by 2, (i % 2 == 0), use the current i to get the character of the testString and join it with evenStr. Otherwise, join it with oddStr (Line 10 -14).
At last, we print the concatenated evenStr and oddStr (Line 18).
Answer:
note:
<u>solution is attached in word form due to error in mathematical equation. furthermore i also attach Screenshot of solution in word due to different version of MS Office please find the attachment</u>
Answer: 1766.667 Ω = 1.767kΩ
Explanation:
V=iR
where V is voltage in Volts (V), i is current in Amps (A), and R is resistance in Ohms(Ω).
3mA = 0.003 A
Rearranging the equation, we get
R=V/i
Now we are solving for resistance. Plug in 0.003 A and 5.3 V.
R = 5.3 / 0.003
= 1766.6667 Ω
= 1.7666667 kΩ
The 6s are repeating so round off to whichever value you need for exactness.
Answer:
Integrity: involves maintaining and assuring the accuracy of data over its life-cycle
Explanation:
Confidentiality: This is a CIA triad designed to prevent sensitive information from reaching the wrong people, while making sure that the right people have access to it.
Integrity: This is a CIA triad that involves maintaining the consistency, accuracy, and trustworthiness of data over its entire life cycle.
Availability: This is a CIA triad that involves hardware repairs and maintaining a correctly functioning operating system environment that is free of software conflicts.
Authentication:This is a security control that is used to protect the system with regard to the CIA properties.