For the following questions answer them individually
What is the output of this C++ program?
#include <iostream>
using namespace std;
void square (int *x)
{
*x = (*x)++ * (*x);
}
void square (int *x, int *y)
{
*x = (*x) * --(*y);
}
int main ( )
{
int number = 30;
square(&number, &number);
cout << number;
return 0;
}
Which of the following operator(s) cannot be overloaded?
Which of the following UML 2.0 diagrams capture behavioural aspects of a system?
Which of the following is associated with objects?
Which one of these is characteristic of RAID 5?
SATA is the abbreviation of
Capability Maturity Model (CMM) is a methodology to
What problem is solved by Dijkstra banker’s algorithm?
The number of swappings needed to sort the numbers 8, 22, 7, 9, 31, 5, 13 in ascending order, using bubble sort is
Consider the following tree
If the post order traversal gives ab - cd * + then the label of the nodes 1,2,3,… will be