These questions are basic level ones and can be answered in less than a minute if you have seen the topic.

Recent questions tagged easy

0 votes
1 answer
5
How many 256 X 1K bit chips are required to build 1 MB of memory?
1 votes
2 answers
6
0 votes
1 answer
10
A truth table will need how many rows if there are $n$ variables.$2 * n$$n$$2^n$None of the above
1 votes
2 answers
11
Pointer p to an array of integers (of size 2 Bytes) is initialized to 200. What is the value of p+3?206203212204
0 votes
1 answer
12
In SQL the statement $\text{select * from R, S}$ is equivalent to$\text{select * from R natural join S}$$\text{select * from R cross join S}$$\text{select * from R outer ...