Telecommunications is the electronic transmission of signals for communications, which enables organizations to carry out their processes and tasks through effective computer networks
Hi!
In 1981, the term 4GL was actually used to refer to languages which were <em>non-procedural. </em>A procedural language does not possess <em>object-oriented </em>capabilities. 4GL's often times have OOP properties, so I believe the answer to this question is going to be <em>false. </em>=)
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:
Hi there Rumanruxi! The error is in the if statement "if(userNum = 2)".
Explanation:
The if statement in this Java code is assigning userNum the value of 2 instead of comparing it with the value of 2. For equals comparison we need to write two equals "==" in the statement as: "if (userNum == 2)". This will return true if userNum is 2 otherwise it will return false.
Answer:
i=0
while pow(2,i)<=1000000:
print(pow(2,i))
i+=1
Explanation:
We need to write a program that prints the power of 2, and till the number is less than 1 milliion. And the program in python is as above.