Answer:
the answer is a, b,d on edg.
Explanation:
- Using cases can be visualized in greater detail in this report of an activity diagram.
- In other words, it's a behavioral diagram that regulates the number of actions via systems. They can also be used to show sequences of activities in business operations.
- UML Activity Diagrams A business process can be examined to determine its flow and demands that use these tools.
The steps to this question can be defined as follows:
For step 1:
- The task is to decide the action steps depending upon your use case.
For step 2: Identify all parties involved
- If you know whoever the actors are, it's easier to determine the acts they are liable for.
For step 3: Establish a movement among activities
- Change the priority in which the action is required by studying the flowchart.
- If you need to add any branches to the graph, note the conditions that must be met for certain processes to take place.
- Furthermore, do you even have to finish some tasks before moving onto someone else?
For step 4: Adding swimlanes
- We know who is to blame for each act. It's time to assign everyone a swimming lane and group every action they are accountable for under it.
- Some many activities and actions make up your sales system or process.
Please find the diagram in the attachment file.
Learn more:
Assignment submission: brainly.com/question/11714037
Answer: The amount of interest to be paid is $972
Explanation: This is gotten by firstly getting the amount of money to return per year without the interest which is $114400/10(years)= 11440
11440 is to be paid per year without interest. To get amount of interest is $11440*8.5/100 = $972 this is the amount of interest to be paid per year including in year 2.
Therefore, total amount of money together with interest to be paid each year and in year 2 = $11440+$972=12412.
Basic blocks are identified because they are known to be a straight line that is known also as a code sequence that tends to have no branches in regards to its in and out branches and its exception is only to the entry and at the end.
Note that Basic Block is said to be a composition of statements that is known to be one that often always executes one after other, and this is often done in a sequence.
<h3>How do you create a flow graph from the basic blocks?</h3>
Flow graph is gotten by:
- Lets Block B1 be the initial node and also Block B2 will tend to follows B1, so from B2 to B1 there is seen a kind of an edge.
Note that the first task is for a person to partition a sequence of three-address code and this is done into basic blocks.
Hence, Basic blocks are identified because they are known to be a straight line that is known also as a code sequence that tends to have no branches in regards to its in and out branches and its exception is only to the entry and at the end.
Learn more about basic blocks from
brainly.com/question/132319
#SPJ1
Answer:
#include <stdio.h>
void interchangeCase(char phrase[],char c){
for(int i=0;phrase[i]!='\0';i++){
if(phrase[i]==c){
if(phrase[i]>='A' && phrase[i]<='Z')
phrase[i]+=32;
else
phrase[i]-=32;
}
}
}
int main(){
char c1[]="Eevee";
interchangeCase(c1,'e');
printf("%s\n",c1);
char c2[]="Eevee";
interchangeCase(c2,'E');
printf("%s\n",c2);
}
Explanation:
- Create a function called interchangeCase that takes the phrase and c as parameters.
- Run a for loop that runs until the end of phrase and check whether the selected character is found or not using an if statement.
- If the character is upper-case alphabet, change it to lower-case alphabet and otherwise do the vice versa.
- Inside the main function, test the program and display the results.