closed by
259 views

Related questions

4 votes
4 votes
3 answers
1
sh!va asked May 7, 2017
10,612 views
Advantage of synchronous sequential circuits over asynchronous one is :Lower hardware requirementBetter noise immunityFaster operationAll of the above
0 votes
0 votes
0 answers
2
rahul sharma 5 asked Dec 24, 2016
285 views
How can we say -2^3 is (1000) in binary? One is 8 and other is -8?
0 votes
0 votes
0 answers
3
Dknights asked Jan 7, 2023
279 views
0 votes
0 votes
0 answers
4
abhinowKatore asked Dec 5, 2022
599 views
What will be the return value of the below function, if it is called a sample(4)? int sample(int x){ if( x == 0 || x ==2) return 1; return (sample( x) * (x ));}