Answer:
- def calcSum(d):
- sum = 0
- for x in d:
- sum += int(x)
- return sum
-
- digits = input("Please enter your digits: ")
- print(calcSum(digits))
Explanation:
The solution code is written in Python.
Firstly, create a function that take one input digit string (Line 1).
In the function, create a sum variable with initial value 0.
Use a for loop to traverse through each character in the digit string and in the loop use int method to convert each character to integer and add it to sum variable (Line 3-5) and return the sum as output.
Next, use input function to prompt user enter a digit string (Line 7).
Lastly test the function by passing the input digit as argument and print the result (Line 8).
Answer:
D. Workflow management systems
Explanation:
Workflow management systems can be defined as a strategic software application or program designed to avail companies the infrastructure to setup, define, create and manage the performance or execution of series of sequential tasks, as well as respond to workflow participants.
Some of the international bodies that establish standards used in workflow management are;
1. World Wide Web Consortium.
2. Workflow Management Coalition.
3. Organization for the Advancement of Structured Information Standards (OASIS).
Workflow management systems facilitates the automation and management of business processes and controls the movement of work through the business process.
<em>The following are various types of workflow management systems used around the world; YAWL, Windows Workflow Foundation, Apache ODE, Collective Knowledge, Workflow Gen, PRPC, Salesforce.com, jBPM, Bonita BPM etc.</em>
Hey hey hey! I recently took the test and the answer is D | (• ◡•)|
Answer:
There are different kinds of operating systems: such as Windows, Linux and Mac OS
There are also different versions of these operating systems, e.g. Windows 7, 8 and 10
Operating systems can be used with different user interfaces (UI): text user interfaces (TUI) and graphical user interfaces (GUI) as examples
Graphical user interfaces have many similarities in different operating systems: such as the start menu, desktop etc.
When you can recognize the typical parts of each operating system’s user interface, you will mostly be able to use both Windows and Linux as well as e.g. Mac OS.
THE ROLE OF OPERATING SYSTEM IN THE COMPUTER
An operating system (OS) is a set of programs which ensures the interoperability of the hardware and software in your computer. The operating system enables, among other things,
the identification and activation of devices connected to the computer,
the installation and use of programs, and
the handling of files.
When it comes to front end, back end and full stack developer, the difference is determined by :
front end (the visible parts of a website)
back end (the “under the hood” databases and infrastructure)
full stack (a hybrid of both)
And front end developers work on technologies that are used to build front end(which is what clients visiting that website see)of application like HTML,CSS, Javascript ( Node js, Angular are also now used ).
Similarly back end developers work on back end technologies like Node js.
Full stack developers work on both front end and back end developers and know both end technologies as well.
For example :
MEAN Stack developer where
M stands for Mongoose ( Back end database technology )
E stands for Express ( Back end technology)
A stands for angular ( front end technology)
N stands for Node ( back end technology)