Answer:
D) Business intelligence systems analyze an organization's past performance to make predictions is the correct answer.
Explanation:
- Business intelligence systems represent systems that help the business in the decision making and strategic making method.
- BI provides is applications that help in the analysis, collection, and integration of business information.
- Business intelligence systems help the organization to analyze the business trends and to find the problems that occur in the business that is required to be examined.
Answer:
1 2 3 4 5 6 7 8 End
Explanation:
int i = 1;
while (i != 9){
System.out.print (i + " ");
i ++;
if (i == 9){
System.out.println("End");
}
}
Answer:
Following are the program in the Python Programming language.
#define function
def negative_num(num_list):
#set list type variable
nlist=[]
#set the for loop
for n in num_list:
#check negative numbers
if(n<0):
#add the value of n in list
nlist.append(n)
#return list
return nlist
#set new list type variable that store list
newl=[-5,8,-6,3,-4,9,-7]
#print and call the function
print(negative_num(newl))
<u>Output</u>:
[-5, -6, -4, -7]
Explanation:
Here, we define the function "negative_num" and pass an argument "num_list" in its parameter and inside the function.
- Set new list data type variable "nlist".
- Set the for loop which iterate as the list.
- Set the if conditional statement to check the value of the list is less than 0 then, add that negative values in the variable "nlist".
- Then, return the new list.
Finally, we set a variable "newl" which store the list of negative and positive numbers then, we print and call the function.
What is the importance of applying a brace as a support point in a structure is given in the following
Explanation:
- So overall purpose of bracing is to provide additional safety against the external loads in comparable self-building. The main function of the bracing in steel structures that the lateral forces due to wind, earthquake and crane surge etc. are transmitted efficiently to the foundation of the building.
- In construction, cross bracing is a system utilized to reinforce building structures in which diagonal supports intersect. Cross bracing can increase a building's capability to withstand seismic activity. Bracing is important in earthquake resistant buildings because it helps keep a structure standing.
- A bracing system is a secondary but essential part of a bridge structure. A bracing system serves to stabilize the main girders during construction, to contribute to the distribution of load effects and to provide restraint to compression flanges or chords where they would otherwise be free to buckle laterally.
- A bracing system is a secondary but essential part of a bridge structure. A bracing system serves to stabilize the main girders during construction, to contribute to the distribution of load effects and to provide restraint to compression flanges or chords where they would otherwise be free to buckle laterally.