-a setting that may be fake
- Supernatural being/character
- Conflict/ the plot of the story
Answer:
#include <iostream>
using namespace std;
void swap(int *a,int *b){ //function to interchange values of 2 variables
int temp=*a;
*a=*b;
*b=temp;
}
void sort(int queue[],int n)
{
int i,j;
for(i=0;i<n;i++) //to implement bubble sort
{
for(j=0;j<n-i-1;j++)
{
if(queue[j]>queue[j+1])
swap(queue[j],queue[j+1]); //to swap values of these 2 variables
}
}
}
int main()
{
int queue[]={6,4,2,9,5,1};
int n=sizeof(queue)/4; //to find length of array
sort(queue,n);
for(int i=0;i<n;i++)
cout<<queue[i]<<" ";
return 0;
}
OUTPUT :
1 2 4 5 6 9
Explanation:
In the above code, Queue is implemented using an array and then passed to a function sort, so that the queue can be sorted in ascending order. In the sort function, in each pass 2 adjacent values are compared and if lower index value is greater than the higher one they are swapped using a swap function that is created to interchange the values of 2 variables.
Answer:200 MBps
Explanation: Fibre channel are those channel that work with the data transfer protocol at the rate of high speed.They work on the connection that are based on the links and loops or share any other form of point to point connection.
It is measured that theoretically the speed of the dual looped FC is supposed to be 200 MBps rate having the two loop form connection.
I believe that the Apple Lisa computer was the first production microcomputer to have a GUI.
- Indirect main memory addressing is described as the method in which the variable's address is stored in a mind register and also a command is utilized to point towards the memory registers which hold the register.
- Instruction is used to direct towards a register that displays the results of the variables.
- The register, in turn, refers to that variable's address in simplistic words. As just a result, it is indeed considered a passive program, memory address.
The instructions operate as follows:
a)
JMP AX :
- The JMP instruction is being used to execute an unconditional jump.
- AX is indeed the label's name.
- JMP AX codes are being used to transfer control of the flow program to the AX label.
b)
JMP LIST:
- The JMP command can be used to execute an unconditional jump, JMP LIST[DX] is the label's name.
- The JMP LIST[DX] program is being used to transfer control of its flow programs to the specified section.
- It is the segment to which the flow control is transmitted.
c)
JMP NEAR PTR[DI+3]:
- Unconditional jumps could be done with the JMP command as you'll see, the label is JMP NEAR PTR[DI+3].
- It's being used to transmit flow control to a particular section, throughout this case [DI+3].
- The close keyword indicates that perhaps the code segment would be in the line of code being nearby.
Learn more:
brainly.com/question/20320915