Answer:
nope u gonna fail ahhahaha
Explanation:
my dead cat ran across my keyboard
Answer:
wedge
Explanation:
the rest all move by pulling while the wedge needs to be hit
Answer:
// here is code in c++.
#include <bits/stdc++.h>
using namespace std;
// recursive function to print digit of number in revers order
void rev_dig(int num)
{
if(num==0)
return;
else
{
cout<<num%10<<" ";
// recursive call
rev_dig(num/10);
}
}
// driver function
int main()
{
int num;
cout<<"enter a number:";
// read the number from user
cin>>num;
cout<<"digits in revers order: ";
// call the function with number parameter
rev_dig(num);
return 0;
}
Explanation:
Read the input from user and assign it to variable "num". Call the function "rev_dig" with "num" parameter.In this function it will find the last digit as num%10 and print it. Then call the function itself with "num/10". This will print the second last digit. Similarly it will print all the digits in revers order.
Output:
enter a number:1234
digits in revers order: 4 3 2 1
Diagram :
Answer:
See explaination
Explanation:
The D flip-flop is an edge triggered device which transfers input data to Q on clock rising or falling edge. Data Latches are level sensitive devices such as the data latch and the transparent latch.
See attachment for the step by step solution of the given problem.