Information Technology
Description: Information Technology | |
Number of Questions: 15 | |
Created by: Karuna Seth | |
Tags: IT Operating System Algorithm Arrays and Pointers Computer Hardware Functions Operations Research Computer Basics Data Communication and Networks Operators and Expression |
Which of the following is not a TCL command?
What is the name/term used for declaration of function inside a calling program?
Which of the following represents the Reverse Polish Notation?
Which one of the following is the fastest memory?
Which of the following operations returns a pointer to the brother of the node, otherwise returns the null pointer?
Which one is the best example of unary operator?
How structure array elements can be accessed?
What is the main difference between (a) 486 SX and (b) 486 DX family?
Which type of error can be diagnosed by compiler?
When int array [7] is declared, the term array [5] represents
What is the name of the scheme used to replace every bad sector, using disk controller, logically with one of the available spare sectors in the disk?
What is fundamental and conceptual unit in computer?
Expand MAR in terms of memory.
Find the error in the code assuming that preprocessor directives are correct.
int fun (int val)
{
val > 20?
return(15):
return(30);
}
void main( )
{
int fun( int );
int final;
final = fun (20);
printf("%dn", final);
}
Where is the Hamming code used?