C Programming and Technical Programming Definition

Data recovery is done in which layer?

Read Solution (Total 3)

C Other Question

Find the output for the following C program
fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Data recovery is done in which layer?
a) physical
b) datalink
c) network
d) transport
CHOOSE CORRECT OPTION