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:
The correct answer is A.
Explanation:
Even though the B option, Analogous Estimating, can be used to predict parameters such as cost, scope etc. based on other similar projects done in the past, it is not the best option in our situation because we don't have enough information on the project to give us a detailed estimation. So the technique we should use is given in option A as Monte Carlo Analysis.
Monte Carlo Analysis is especially effective when there are a lot of unknowns or variables in play such as in our case where we don't have a lot of details. It can be used to predict the uncertainties, risks and their impacts on our project.
I hope this answer helps.
 
        
             
        
        
        
Answer:
option A. AGA is the right answer. 
Explanation:
PGA or pin grid array is a type of integrated circuit packaging. In a PGA, the package is square or rectangular, and the pins are arranged in a regular array on the underside of the package. The pins are commonly spaced 2.54 mm apart, and may or may not cover the entire underside of the package.
A staggered pin grid array (SPGA) is an integrated circuit socket style or pin-out having a staggered grid of pins surrounding the socket's edge, placed as several squares, one within the other. The structure is also known as intersecting squares, unlike PGA with the pins on the underside only.
The land grid array is a type of surface-mount packaging for integrated circuits that is notable for having the pins on the socket rather than the integrated circuit. A LGA can be electrically connected to a printed circuit board either by the use of a socket or by soldering directly to the board.
 
        
             
        
        
        
Answer:
CLS 
INPUT "Enter a Number: ", n 
IF n MOD 2 = 0 THEN
 PRINT "Input Number is Even" 
END IF 
IF n MOD 2 = 1 THEN 
PRINT "Input Number is Odd" 
END IF 
END