Search

Study Materials

We are provide some new think and also provide study Free materials all classes And give you teaching of your study purpose

Category

Uncategorized

COMPONENTS OF VC++:

Resource Editor: Resource Compiler: Source Code Editor: C/C++ Compiler: Linker: Debugger: Online Help/MSDN Library viewer: Help can be accessed in four ways: By Book By Topic By word F1 help AppWizard: AppWizard is a code generator that creates a working... Continue Reading →

WINDOWS PROGRAMMING MODEL

Event driven programming mechanism. It responds to messages by processing messages send by OS. Events may be keystrokes, mouse click etc. WinMain() is the entry point to windows program. It creates the window and retrieves and dispatch the messages to... Continue Reading →

NON-LINEAR PIPELINE PROCESSORS/DYNAMIC PIPELINE

A dynamic pipeline can be reconfigured to perform variable functions at different times. It allows feed-forward and feedback connections in addition to the streamline connection.     Difference Between Linear and Non-Linear pipeline:   Linear Pipeline Non-Linear Pipeline Linear pipeline... Continue Reading →

LINEAR PIPELINE

  Clock Cycle and Throughput: Clock Period(T)=max{ti}1k+d=Tm+d;                               Ti: Time Delay of the circuitry in stage Si.   d: The time delay of latches.   Pipeline frequency is defined as the inverse of the clock period:   f=1/T;   If one... Continue Reading →

Difference Between Asynchronous and Synchronous Model

Asynchronous Model Synchronous Model Data flow between adjacent stages is controlled by handshaking protocol. Clocked latches are used to interface between stages. Different amount of delay may be experienced in different stages. Approximately equal amount of delay is    experienced in... Continue Reading →

Program : WAP to read a number between 1 to 7 and print day of the week using Switch statement.

/********************************************************* Pogram to read a number  between 1 to 7 and print day*#include#includevoid main(){  int integer_number;  clrscr();  printf("\nEnter A Integer Number:");  scanf("%d",&integer_number);  switch(integer_number)   {     case 1:                printf("\nThe Day Is Monday");                break;     case 2:                printf("\nThe Day Is Tuesday");           ... Continue Reading →

Program : WAP to divide a number with 2 using bitwise operator.

/******Program to devide a number with using bitwise operator****/#include#includevoid main(){ int  integer_number; float  div=0; clrscr(); printf("\n********INPUT**********"); printf("\n"); printf("\nEnter a Integer Number:"); scanf("%d",&integer_number); /******Devide the given number by 2*****************/ div=integer_number>>1; printf("\n*********OUTPUT*********"); printf("\n"); printf("\nThe First Run:"); printf("The Result =%f", div); getch(); }Output:

Program : WAP to read one integer and one float type variable, calculate sum, difference, product and division of them and display the result in formatted manner.

#include#includevoid main(){  int integer_number ;  float real_number sum, diff , mul ,div;  clrscr(); printf("\nEnter one integer number:"); scanf("%d",&integer_number); printf("\nEnter one float number:"); scanf("%f",&real_number);/****************Calculate sum of numbers**********/sum=integer_number+real_number;/**************Calculate difference******************************/diff=integer_number -real_number;/****************Calulate product *******************************/mul=integer_number*real_number;/***************Calculate division******************************/div=integer_number/real_number;/**************************************************************/printf("\nThe Sum Of Number=\t%f",sum);printf("\nThe Difference Of Number=\t%f",diff);printf("\nThe Product Of Numbe=\t%f",mul);printf("\nThe Division Of Number=\t%f",div);getch();}Output:  

Program :-Create a Web Page of your own details using tables embedding form tags in table cells.

FORM  <body bgcolor="" link="" alink="" vlink="" text="  "><form name="" id=" "  method="post" action="receive.php">                                         <font color="#AA7733"  face="time new roman" size="+3">Personal details*First Name  &nbsp*Middle Name   *Last Name  *Father's Name*Mother's Name<input type="text" name="mother_name" id="mother_name value="Enter mother's name"  size="20" maxlength="30" />*Date of Birth   ... Continue Reading →

Blog at WordPress.com.

Up ↑