DO NOT MISS

Ads

Saturday, 19 November 2016

C-Programs Using 2-D Array- (Static Time)(www.computersadda.com)



* In this above Format of 3 Ways to  fill 3 X 3 integer array with user input.


With out using loops
#include<stdio.h>
#include<conio.h>
void main()

   {

       int a[3][3]={{4,5,6},{8,9,2},{2,7,9},};

          clrscr();

          printf("3 * 3 Matrix values are:\n");

          printf("%d ",a[0][0]);
          printf("%d ",a[0][1]);
          printf("%d ",a[0][2]);


          printf("\n%d ",a[1][0]);
          printf("%d ",a[1][1]);
          printf("%d ",a[1][2]);

          

          printf("\n%d ",a[2][0]);
          printf("%d ",a[2][1]);
          printf("%d ",a[2][2]);


    getch();

  }

With using for loop
#include<stdio.h>
#include<conio.h>
void main()

    {

       int i,a[3][3]={{4,5,6},{8,9,2},{2,7,9},};

       clrscr();

       printf("3 * 3 Matrix values:\n");

       for(i=0;i<3;i++)
           {
                printf("%d ",a[0][i]);
           }

      printf("\n");

      for(i=0;i<3;i++)
         {
               printf("%d ",a[1][i]);
         }


     printf("\n");

     for(i=0;i<3;i++)
        {
              printf("%d ",a[2][i]);
        }

     getch();

}
With using nested for loop
#include<stdio.h>
#include<conio.h>
void main()

    {

       int i,j,a[3][3]={{4,5,6},{8,9,2},{2,7,9},};

       clrscr();

       printf("3 * 3 matrix values:\n");

       for(i=0;i<3;i++)
           {
                for(j=0;j<3;j++)
                    {
                         printf("%d ",a[i][j]);
                    }
                printf("\n");
           }
      getch();

}
________________________________________
_______________________________________________________________________________


Friday, 18 November 2016

Perfect Visiting Card Design in Adobe PageMaker (Project-1)



Thursday, 17 November 2016

Quiz of the Computer Fundamentals (Week-20)


This set contains 10 multiple choice questions from Computer Fundamentals. Each question has four possible options and there is one and only one correct answer for each question.
Note:-  explanation in below the questions
_________________________________________________________________________________
1. CD-ROM stands for
a. Compactable Read Only Memory
b. Compact Data Read Only Memory
c. Compactable Disk Read Only Memory
d. Compact Disk Read Only Memory



2. UNIVAC is
a. Universal Automatic Computer
b. Universal Array Computer
c. Unique Automatic Computer
d. Unvalued Automatic Computer



3. MSI stands for
a. Medium Scale Integrated Circuits
b. Medium System Integrated Circuits
c. Medium Scale Intelligent Circuit
d. Medium System Intelligent Circuit



4. The capacity of 3.5 inch floppy disk is

a. 1.40 MB
b. 1.44 GB
c. 1.40 GB
d. 1.44 MB

 

5. WAN stands for
a. Wire Area Network
b. Wide Area Network
c. Wide Array Net
d. Wireless Area Network

 


6. ALU is
a. Arithmetic Logic Unit
b. Array Logic Unit
c. Application Logic Unit
d. None of above



7. MICR stands for

a. Magnetic Ink Character Reader
b. Magnetic Ink Code Reader
c. Magnetic Ink Cases Reader
d. None



8.
 MU stands for
a. Memory Unit
b. Magnetic Memory
c. Main Memory
d. None

 


9. ASCII stands for
a. American Stable Code for International Interchange
b. American Standard Case for Institutional Interchange
c. American Standard Code for Information Interchange
d. American Standard Code for Interchange Information 



10. EEPROM stand for
a. Electrically Erasable Programmable Read Only Memory
b. Easily Erasable Programmable Read Only Memory
c. Electronic Erasable Programmable Read Only Memory
d. None of the above


----------------------------------------------------------------------------------------------------------------------
Explanation
1.CD-ROM
There are no objects with the name as in other options. CD-ROM is a non-volatile optical data storage medium using the same physical format as audio compact disk, readable by a computer with a CD-ROM drive.

2. UNIVAC 
There are no computers with the name as in other options. UNIVAC was the first general purpose electronic digital computer designed for commercial use, produced by Universal Accounting Company of John Mauchly and J.P.Eckert in 1951.

3. MSI 
After the invention of IC chips the development of computers plunged into next phase. Small Scale Integration and Medium Scale Integration (SSI and MSI) were used in third generation of computers and Large Scale Integration and Very Large Scale Integration (LSI and VLSI) are being used in fourth generation of computers. 

4. The capacity of 3.5 inch floppy disk is
Microfloppy disks (3.5 inch) if it is high density (MF2HD) can store 1.44 MB and if it is low density (MF2DD), it can store 720 KB. Mini Floppy disks (5.25 inch) if it is high density (MD2HD) can store 1.2 MB and low density (MD2DD) stores 360 KB of data.

5. WAN 
There are three different classes of computer network namely, Local Area Network (LAN) that covers a small geographical area such as a room, a building or a compound; Metropolitan Area Network (MAN) that has a citywide coverage; and Wide Area Network (WAN) that covers the whole globe or beyond the globe.

6. ALU 
ALU is a unit in Central Processing Unit in a computer system that is responsible for arithmetic calculations and logical operations. Apart from ALU, the CPU contains MU (Memory Unit) and CU (Control Unit).

7. MICR
MICR (Magnetic Ink Character Reader) is kind of scanner that can scan and identify the writing of magnetic ink. This device is used in banks to verify signatures in Checks.

8.MU
It is the location to store the information. It can be divided into 2 parts. 
They are 
A.Primary memory unit 
B. secondary memory unit

9. ASCII 
ASCII is a code which converts characters – letters, digits, punctuations and control characters such as Alt, Tab etc – into numeral form. ASCII code is used to represent data internally in micro-computers. ASCII codes are 7 bits and can represent 0 to 127 and extended ASCII are 8 bits that represents 0 to 255.

10. EEPROM 
There are three types of ROM namely, PROM, EPROM and EEPROM. PROM can’t be reprogrammed, EPROM can be erased by exposing it in high intensity ultraviolet light and EEPROM can be erased and reprogrammed electrically. It is not needed to be removed from the computer to be modified.
---------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------------



Two Dimensional Array in C-Language



Multi dimensional Arrays :-

Collection of values with similar datatype using more than one subscription is known as a Multi dimensional Array.



'C' allows us to define tables of items by using two dimensional arrays.

Collection of values with similar datatype using two subscripts.It is also called table (or) Matrix.

Two dimensional arrays are declared as fallows

Syntax:-
data type array name[row size][column size];
int a[3][4];

We can create two types of rows & columns formats.

Format 1:-
Ex:- int a[3][4]
Format 2:-
Ex:- int a[3][4]

Assigning the values to 2D :-

We can Assign the values to 2D in two ways.
Those are



1. Static time

2. Dynamic time



1. Static time :-
In static time also we can assign the values in two ways.

1. 2D initialization
2. 2D assignment

1. 2D initialization :-
Assigning the values to 2D at the time 2D declaration.

Ex 1:-
int a[2][3]={{1,2,3},{4,5,6}};


Ex 2:-

int a[3][3]={{1,2,3},{4,5,6},{7,8,9}};


2. 2D assignment :-

Assigning the values to 2D after the variable declaration.



Ex:-

int a[2][3];

a[0][0]=1;
a[0][1]=2;
a[0][2]=3;
a[1][0]=4;
a[1][1]=5;
a[1][2]=6;
      
 
________________________________________
_______________________________________________________________________________



Wednesday, 16 November 2016

Water Mark in PageMaker



Use of Automatic Pageno's in PageMaker



Use of Master Pages in PageMaker



Tuesday, 15 November 2016

View Menu - All Options in PageMaker


Utilities Menu Extra Options in PageMaker


Use of Bullets & Numbering in PageMaker


Monday, 14 November 2016

Extra C-Programs Using 1-D Array(Ins & Rep, Delete, No of times Search Value)


1.) Accept 10 Array values, Accept Searching Values then find the Searching Value found No of Times.

#include<stdio.h>
#include<conio.h>

void main()

{

        int a[10],i,se,count=0;
        clrscr();

        printf("Enter a 10 elements:");
              for(i=0;i<10;i++)

                       scanf("%d",&a[i]);

        printf("enter a searching value:");

        scanf("%d",&se);


                 for(i=0;i<10;i++)

                      {

                            if(a[i]==se)
                            count++;


                      }

                if(count==0)
                printf("The value not Found");

                else

                printf("the searching value found:%d times",count);

       getch();

}

Output:-

2.) Accept 10 Array values, the perform Searching and replacing Operations.

#include<stdio.h>
#include<conio.h>
void main()

       {

             int a[10],i,se,rep;
             clrscr();

             printf("Enter a 10 elements:");

                   for(i=0;i<10;i++)

                         scanf("%d",&a[i]);

            printf("enter a searching value:");
            scanf("%d",&se);

            printf("enter a replacing value:");
            scanf("%d",&rep);

            for(i=0;i<10;i++)

                 {
                        if(a[i]==se)
                        a[i]=rep;

                  }

            printf("value after repalcing:\n");

            for(i=0;i<10;i++)

               {
                     printf("%d\n",a[i]);
                }

     getch();

}

Output:-

3.) Accept 10 Array values, the perform deleting an element in to an existing array.

#include<stdio.h>
#include<conio.h>
void main()

    {

          int a[10],i,pos;
          clrscr();

          printf("Enter a 10 elements:");

               for(i=0;i<10;i++)

                      scanf("%d",&a[i]);

         printf("enter a position to delete:");
         scanf("%d",&pos);


             for(i=pos-1;i<9;i++)

                 
 a[i]=a[i+1];

                       for(i=0;i<9;i++)

             printf("%d\n",a[i]);

     getch();

}

Output:-
________________________________________
_______________________________________________________________________________



Frame Options & Tools in PageMaker


Arrange,Align Objects & Text Wrap in PageMaker



Sunday, 13 November 2016

Use of Mask & Un Mask in PageMaker


Use of Polygon Settings & Rounded Corners in PageMaker


Use of Grouping & Locking in Pagemaker



Use of Fill & Stroke in PageMaker



Friday, 11 November 2016

Type Menu - Style & Define Style in PageMaker


How to use Indents/Tabs in PageMaker


Type Menu- Character & Paragraph in PageMaker


Layout Menu-All Options in PageMaker


Friday, 4 November 2016

Rules & Regulations of Microsoft-Word


Do
Don’t
Paper Size
Font Style
Font Size
Zoom Level
Line Spacing in Paragraphs

Paper Size:

Page size refers to the area of your publication. Paper, or sheet, size is the size of the paper used for printing.



You can resize a word document to standard A4 size using these instructions. 
You may have to do this for your job to print on our public printers:

Click the  Layout at the top of the window
Click Size under the  Layout tab
Select A4 21cm x 29.7 cm

Font Style:
A good font is often a matter of personal preference, and what is preferable to one person may not be preferable to another.
One of the more commonly preferred font is Times New Roman.

Font Size:
Zoom Level:
Zoom level is 100%
Line Spacing:
Using line Spacing in word Practicals (1.15 or 1.5)
---------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------


Greataims

 
Copyright © 2016 Computersadda. Designed by @ Computersadda Team - Published By Greataims