Answer:
yes for sure
Explanation:
iran oy has 3000 ballistic missiles but america has thousands of nukes. we can easily outnumber their forces as well. this will be a easy victory for us but will result in massive casualties on both sides
Answer:
a) -1.46 x 10∧-5, 1.445x 10∧-4, -6.355 x 10∧-4
b) 3.926 x 10∧-4, -2.626 x 10∧-4
c) 6.552 x 10∧-4, 6.5 x 10∧-5
Explanation:
a) -1.46 x 10∧-5, 1.445x 10∧-4, -6.355 x 10∧-4
b) 3.926 x 10∧-4, -2.626 x 10∧-4
c) 6.552 x 10∧-4, 6.5 x 10∧-5
The explanation is shown in the attachment. I hope i have been able to help.
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:
Those products are generally called Work in Process WIP
Explanation:
Work in process (WIP), or work in progress (WIP), goods in process, or in-process inventory in a manufacturing industry/company refer to the company's partially finished goods waiting for completion and eventual sale or the value of these items.
These items are either just being produced or require further processing (like purification, separation, packaging or handling) in a queue or a buffer storage.