recategorized by
422 views

1 Answer

Related questions

0 votes
0 votes
0 answers
2
admin asked Aug 25, 2022
301 views
Consider the following state diagram of a sequential circuit, where each of a, b, c, d, e, f and g represents a state. Represent thestate diagram with minimum number of s...
1 votes
1 votes
3 answers
3
admin asked Aug 18, 2022
528 views
What does the following function compute for $x \neq 0?$float isi1(float x, int y) { if (y==0) { return 1; } else if (y>0) { return isi1(x,-y); } else { return isi1(x, y+...
1 votes
1 votes
1 answer
4
admin asked Aug 18, 2022
440 views
What will be the output of the following C program? Justify your answer. Negative numbers are represented in $2$'s complement,#include<stdio.h int main() { if (-~-1) prin...