Answer:
1.
DIM myArray(10) as INTEGER
LET A = 0
FOR I = 1 TO 10 STEP 2
INPUT “INPUT NUMBER”; myArray(i)
LET A = A + myArray(i)
NEXT
PRINT A
END
2.
REM PROGRAM FOR CALCULATING THE SIMPLE INTEREST
CLS
INPUT “INPUT THE PRINCIPAL”; P
INPUT “INPUT THE TIME”; T
INPUT “INPUT THE RATE”;R
SI = P* T * R / 100
PRINT “SIMPLE INTEREST =”; SI
END
Explanation:
Please find the respective programs in the answer section.
Answer:
There are three (3) fixes in adobe cs4.
Explanation:
Adobe photoshop cs4 is a version of the creative cloud's professional graphic applications used to edit pictures, design interfaces, make graphical illustrations, draw and animate the drawings, etc.
It can be installed in several computer operating system platforms like linux, mac and windows. The adobe photoshop cs4 doesn't support the windows installation and might run into several issues. There are other issues in other supported platforms, but unlike for windows, there are three fixes for these problems.
The acronym RFID (Radio Frequency Identification) describes
networked devices that contain microcomputers but are not thought of as
computing devices, such as refrigerators, automobile components, light
bulbs, and industrial control devices. RFIDs are battery-powered sensors that gather and transmit data to a reading device. Some sensor based technologies are scanning electron microscopes, LiDAR,radar, GPS, x-ray, sonar, infrared and seismic.
In the NumPy function, the data preparation technique that is used to help machine learning algorithms is called the reshape technique or function
For better understanding, let us explain what the reshape function means
- The numpy package helps to give the right tools for scientific and mathematical computations in python
. it includes functions that cam be used to perform common linear algebra operations, fast Fourier transforms, and statistics
The reshape function simply alter or change the row and column arrangement of data in numpy function and it is said to just give new shape to an array without the altering of its data.
from the above, we can therefore say that the answer In the NumPy function, the data preparation technique that is used to help machine learning algorithms is called the reshape technique or function is correct
learn more about reshape function from:
brainly.com/question/24728884
Answer: Concurrent programs are the programs that execute at the same point of time. They are simultaneous in nature with other concurrent programs.They are executed with the help of threads to achieve the concurrency without the issue of scheduling. They are consider long running programs.
The program that has the low execution time compared with all other programs gets executed first.If the case of no progress is seen then another thread is executed.This type of execution gives the non- deterministic situation in which the possibility of leading completion of any particular program cannot be determined.