1 votes
2
which addressing mode is faster and why? indirect or relative?
0 votes
3
1 votes
5
If power set of natural number is uncountable , and that is why non RE,then how is it possible set of natural number is countable and RE? give some reason
2 votes
6
Why 50 * 3 and not 50+3 ?Does every Byte requires different instruction ?
1 votes
7
Every recursive program uses strictly more stack space compared to its iterative equivalent.This statement is false. Please explain with examples
0 votes
10
I was reading the uniform random variable from sheldon rossit is given that X is a uniform random variable on the interval $(\alpha,\beta)$ if the probability density fun...
1 votes
13
how to make binary search tree from the given post order traversal1,2,3,4................n if no inorder or preorder is mentioned?????????//
0 votes
14
#include<stdio.h struct X { int a; int b; int c; }; int main(void) { printf("%zu",sizeof(struct X)); }What is output of the program and why?
1 votes
15
In implementation of queue using circular arrayif n=4then actually oly 3 elements are filled?
2 votes
16
anyone explain this prog?? how to output is evaluvated??int main(){ int x = 10, y; y = (x++, printf("x = %d\n", x), ++x, printf("x = %d\n", x), x++); printf("y ...
2 votes
17
Is every square matrix a symmetric matrix?OrIs every square DIAGONAL matrix is a symmetric matrix?Please tell which statement is true?