ISRO Scientist or Engineer Computer Science May 2017

Instructions

For the following questions answer them individually

ISRO Scientist or Engineer Computer Science May 2017 - Question 41


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;
}

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 42


Which of the following operator(s) cannot be overloaded?

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 43


Which of the following UML 2.0 diagrams capture behavioural aspects of a system?

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 44


Which of the following is associated with objects?

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 45


Which one of these is characteristic of RAID 5?

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 46


SATA is the abbreviation of

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 47


Capability Maturity Model (CMM) is a methodology to

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 48


What problem is solved by Dijkstra banker’s algorithm?

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 49


The number of swappings needed to sort the numbers 8, 22, 7, 9, 31, 5, 13 in ascending order, using bubble sort is

Video Solution

ISRO Scientist or Engineer Computer Science May 2017 - Question 50


Consider the following tree


If the post order traversal gives ab - cd * + then the label of the nodes 1,2,3,… will be

Video Solution
cracku

Boost your Prep!

Download App