1 Crore+ students have signed up on EduRev. Have you? |
Any large single block of data stored in a database, such as a picture or sound file, which does not include record fields, and cannot be directly searched by the database’s search engine.
A reserved area of the immediate access memory used to increase the running speed of the computer program.
A small subnet that sit between a trusted internal network and an untruster external network, such as the public internet.
Technologies that use radio waves to automatically identify people or objects,which is very similar to the barcode identification systems,seen in retail stores everyday.
main(){
float fl = 10.5;
double dbl = 10.5
if(fl ==dbl)
printf(“UNITED WE STAND”);
else
printf(“DIVIDE AND RULE”)
}
Q. What is the output?
main(){
static int ivar = 5;
printf(“%d”,ivar--);
if(ivar)
main();
}
Q. What is the output?
main()
{
extern int iExtern;
iExtern = 20;
printf(“%d”,iExtern);
}
Q. What is the output?
#define clrscr() 100
main(){
clrscr();
printf(“%d ”, clrscr());
}
Q. What is the output?
main()
{
void vpointer;
char cHar = ‘g’, *cHarpointer = “GOOGLE”;
int j = 40;
vpointer = &cHar;
printf(“%c”,*(char*)vpointer);
vpointer = &j;
printf(“%d”,*(int *)vpointer);
vpointer = cHarpointer;
printf(“%s”,(char*)vpointer +3);
}
Q. What is the output?
#define FALSE -1
#define TRUE 1
#define NULL 0
main() {
if(NULL)
puts(“NULL”);
else if(FALSE)
puts(“TRUE”);
else
puts(“FALSE”);
}
Q. What is the output?
main() {
int i =5,j= 6, z;
printf(“%d”,i+++j);
}
Q. What is the output?
main() {
int i ;
i = accumulator();
printf(“%d”,i);
}
accumulator(){
_AX =1000
}
Q. What is output?
main() {
int i =0;
while(+(+i--)!= 0)
i- = i++;
printf(“%d”,i);
}
Q. What is the output?
main(){
int i =3;
for(; i++=0;)
printf((“%d”,i);
}
What is the output?
main(){
int i = 10, j =20;
j = i ,j?(i,j)?i :j:j;
printf(“%d%d”,i,j);
}
Q. What is the output?
main(){
extern i;
printf(“%d ”,i);{
int i =20;
printf(“%d ”,i);
}
}
Q. What is the output?
int DIMension(int array[]){
return sizeof(array/sizeof(int);}
main(){
int arr[10];
printf(“Array dimension is %d”,DIMension(arr));
}
Q. What is output?
main(){
void swap();
int x = 45, y = 15;
swap(&x,&y);
printf(“x = %d y=%d”x,y);
}
void swap(int *a, int *b){
*a^=*b, *b^=*a, *a^ = *b;
Q. What is the output?
main(){
int i =257;
int *iptr =&i;
printf(“%d%d”,*((char*)iptr),*((char *)iptr+1));
}
Q. What is output?
main(){
int i =300;
char *ptr = &i;
*++ptr=2;
printf(“%d”,i);
}
Q. What is output?
#include
main(){
char *str =”yahoo”;
char *ptr =str;
char least =127;
while(*ptr++)
least = (*ptr
printf(" %d”,least);
}
Q. What is the output?
void main(){
int I =10, j=2;
int *ip = &I ,*jp =&j;
int k = *ip/*jp;
printf(“%d”,k);
}
Q. What is the output?
main(){
char a[4] =”GOOGLE”;
printf(“%s”,a);
}
Q. What is the output?
There is a circuit using 3 nand gates with 2 inputs and 1 output,f ind the output.
What action is taken when the processer under execution is interrupted by TRAP in 8085MPU?
Conditional results after execution of an instruction in a microprocessor is stored in
The OR gate can be converted to the NAND function by adding----gate(s) to the input of the OR gate.
A positive going pulse which is always generated when 8085 MPU begins the machine cycle.
When a ----- instruction of 8085 MPU is fetched , its second and third bytes are placed in the W and Z registers.
What is defined as one subdivision of the operation performed in one clock period.
In 8051 micro controller what is the HEX number in the accumulator after the execution of the following code.
MOV A,#0A5H
CLR C
RRC A
RRC A
RL A
RL A
SWAP A
What is the control word for 8255 PPI,in BSR mode to set bit PC3.
The repeated execution of a loop of code while waiting for an event to occur is called ---------.The cpu is not engaged in any real productive activity during this period,and the process doesnt progress towards completion.
Either all actions are carried out or none are. users should not have to worry about the effect of incomplete transactions.DBMS ensures this by undoing the actions of incomplete transactions. this property is known as
------ algorithms determines where in available to load a program. common methods are first fit, next fit, best fit.--------- algorithm are used when memory is full , and one process (or part of a process) needs to be swapped out to accommodate a new program.The ------------- algorithm determines which are the partitions to be swapped out.
Given a binary search tree, print out the nodes of the tree according t5o post order traversal.
4
/
2 5
/
1 3
a functional dependency XY is ___________dependency if removal of any attribute A from X means that the dependency does not hold any more
85 docs|57 tests
|
Use Code STAYHOME200 and get INR 200 additional OFF
|
Use Coupon Code |
85 docs|57 tests
|
|
|
|
|
|
|
|
|
|