⟩ Write the code for finding the factorial of a passed integer. Use a recursive subroutine?
// BEGIN PERL SNIPET
sub factorial {
my $y = shift;
if ( $y > 1 ) {
return $y * &factorial( $y - 1 );
} else {
return 1;
}
}
// END PERL SNIPET
// BEGIN PERL SNIPET
sub factorial {
my $y = shift;
if ( $y > 1 ) {
return $y * &factorial( $y - 1 );
} else {
return 1;
}
}
// END PERL SNIPET
What is selective flooding?
Tell me what is Race Around Condition in a JK FlipFlop? How it can be avoided?
We take the area of collector wide comparison to base and emitter. Why?
Explain what is the difference between inductance and resistance?
Tell me can a gas be used for conducting current?
Explain what is the difference Allen Bradley and Siemens plc
Which of the following are used to display measured quantity by digital meter?LED,LCD,CRO?
Explain the output of the lexical analyser is1. a set of regular expressions2. syntax tree3. set of tokens4. string of characters
What is the formula for power gain when input gain & output gain is given?
Tell me why the shape of OP-AMP is triangular not other shape?