Advantages and Disadvantages of Microwave Pros and Cons What is & Queries

Advantages and Disadvantages of Microwave

  • June 1, 2021
  • 0 Comments

It’s is the way of transmitting data or information by electromagnetic waves with the wavelengths in the microwave range of the spectrum. Microwave transmission is a line of sight transmission. The transmit station must be in visible contact with the receive station. This sets a limit on the distance between stations depending on the local […]

Difference between EXE and COM programs Differences

Difference between EXE and COM programs

  • May 30, 2021
  • 0 Comments

Simply they are very easy to be remembered because .COM will be using 64K byte segment. Execution always begins at offset 100h and stack pointer initialized to FFFFh and supports real mode execution only. And for .EXE it will be having multiple segments, execution normally start with IP set 0000, and the initial stack pointer […]

Differences

Comparison Between 8085 & 8086 System Bus

  • May 30, 2021
  • 0 Comments

There are three types of BUS, consists of following parts Address Bus Data Bus Control Bus These three bus have their own importance and their own defined work, we will discuss those on some other article. Here is the comparison of 8085 and 8086 bus system. 8085 System Bus The 8085 system bus has 16 […]

Critical and Uncritical Thinkers Differences What is & Queries

Characteristics of Critical and Uncritical Thinkers

  • May 18, 2021
  • 0 Comments

As per the theories and definitions by Noam Chomsky, the beginning of science is the ability to be amazed by apparently simple things, which is known as critical thinking. Moore & Parker said Critical thinking is careful and deliberate determination of whether to accept, reject or suspend judgment. [button color=”red” size=”big” link=”https://namecheap.pxf.io/c/2001466/1291734/5618″ icon=”” target=”true” nofollow=”true”]Don’t […]

four-digit number and display them in reverse order Programming

Four-digit number and display them in reverse order

  • May 7, 2021
  • 0 Comments

Write a c program where program should read four digit number and display those entered number into reverse order. C Code #include<stdio.h>#include<conio.h>int main(void){ int number; printf(“Enter a four digit number:”); fflush( stdout ); scanf(“%d”, &number); printf(“the number in reversed order:”); printf(“%d”, number%10); number = number/10; printf(“%d”, number%10); number = number/10; printf(“%d”, number%10); number = number/10; […]

find the simple interest Programming

Principle, Time, and Rate and Find the Simple Interest

  • May 7, 2021
  • 0 Comments

Write a program to take input from the user Principle Time Rate And find out the simple interest where simple interest = (p*t*r)/100.   C Code #include<stdio.h>#include<conio.h>void main(){ float p, t, r, si; printf(“enter principle:”); scanf(“%f”,&p); printf(“enter time:”); scanf(“%f”,&t); printf(“enter rate:”); scanf(“%f”,&r); si = (p*t*r)/100; printf(“Simple Interest = %f”, si); getch();} Output

Calculate Factorial Using Static Storage Class Programming

Program to Calculate Factorial Using Static Storage Class

  • May 7, 2021
  • 0 Comments

Program to Calculate Factorial Using Static Storage Class #include<stdio.h>#include<conio.h>void main(){int x,i;long int f;long int factstat(int i);printf(“Input number:”);scanf(“%d”,&x)for(i=1; i<=x; i++)f=factstat(i);printf(“n Factorial=%d”,f);}long int factstat(int i){static long int f=1;f*=i;return(f);}