Answer: what do you mean exactly?
Answer:
c
Explanation:
assuming you are coding in python and have not install any calculation codes, the answer is most likely c
<span>Answer:
-Software architecture isn't about big design up front;
-Every software team needs to consider software architecture;
-The software architecture role is about coding, coaching and collaboration;
-You don't need to use UML;
-A good software architecture enables agility.</span>
Answer:
/*
Find Largest and Smallest Number in an Array Example
This Java Example shows how to find largest and smallest number in an
array.
*/
public class FindLargestSmallestNumber {
public static void main(String[] args) {
//array of 10 numbers
int numbers[] = new int[]{32,43,53,54,32,65,63,98,43,23};
//assign first element of an array to largest and smallest
int smallest = numbers[0];
int largetst = numbers[0];
for(int i=1; i< numbers.length; i++)
{
if(numbers[i] > largetst)
largetst = numbers[i];
else if (numbers[i] < smallest)
smallest = numbers[i];
}
System.out.println("Largest Number is : " + largetst);
System.out.println("Smallest Number is : " + smallest);
}
}
/*
Output of this program would be
Largest Number is : 98
Smallest Number is : 23
*/
Explanation:
Answer:
unknown
Explanation:
the location of each drop-down menu is not given and the answer choices are not shown as well, if they are it is hard to see, try reposting the question with maybe a bracket set ' [ ] ' to represent the blanks, then below you can number the answers available, such as this
President [ ] was in office during the civil war, after the [ ] won the war, he united the states once again
1st BLANK
Abraham Lincoln
John Adams
George Bush
2nd BLANK
Union
Confederates
British
(i just made up this question, its not any part of any test questions)
i hope this helps you out a lil bit :)