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);}

Type Conversion and Ways of Typecasting Programming

C++ – Type Conversion and Ways of Typecasting

  • May 4, 2021
  • 0 Comments

Type conversion refers to the local modification of type for variable or subexpression. Type conversions depend on the specified operator and the type of the operand or operators. Type conversions are performed in the following cases: When a value of one type is assigned to a variable of a different type or an operator converts […]

Class and Object With Syntax Programming

C++ – Class and Object With Syntax

  • May 4, 2021
  • 0 Comments

C++ – Class A class is a collection of objects of similar type which have same property and common behavior. For example, roll, name, age, are the member of class student and pigeon, sparrow, crow, etc are the object of the class bird. A class is a user-defined data type that holds both data and […]

OOP Introduction Characteristics and Approach Programming

C++ – OOP Introduction Characteristics and Approach

  • May 4, 2021
  • 0 Comments

C, Pascal, FORtran are procedural language in which each statement tells the computer to do something like, get some input from the user and calculate or process that input and get the desired result [ add/divide/difference/multiple of any two numbers ]. Therefore, a program in the procedural language is a list instruction which is suitable […]