Posts

Showing posts with the label simple

PageMaker: Designing NewsPaper

Image
A newspaper is a printed media published daily or weekely in a folded, unstapled format containing information about current events, along with covering various fields such as, business,sports, arts, politics, weather forecasts, etc. It also includes fields such as birthday, obituaries, advertisements, opinions etc. Newspaper comes in different sizes(WxH) such as Broadsheet, Berliner and Tabloid. Broadsheet Which has the measure of 23.5" x 29.5" or 13.5" x 21.5" Berliner Dimension of this type is 12.4" x 18.5" Tabloid Which has the measure of 11.0" x 16.9" Compact Which has the measure of 10.5" x 13.5" Almost all major newspapers in India are broadsheets. Tabloids are mostly found in small-circulation local or rural papers. Let's get started by designing broadsheet size, 13.5" x 21.5", newspaper. Open Page maker and choose File from menu then New and fill the field in the Document set-up window ****Check th...

PageMaker: Designing an invoice

Image
Three simple steps to create a invoice page. 1)Draw the layout Open PageMaker, in File menu select New and setup a document of page size A4 with Orientation: Tall, margins: 10mm and target output resolution:300 dpi. Now, draw five rectangle box with following dimension (W x H) 187mm x 36mm, 187mm x 37 mm, 187mm x103.5mm, 67.5mm x 35.5mm, 187 mm x 29.7mm.

PageMaker: Making simple visiting card step-by-step

Image
In this post you will learn how to create simple visiting card using Adobe PageMaker 7.0. Below is the image of a simple visiting card you are going to try. SanDisk Extreme SD UHS I 64GB Card for 4K Video for DSLR and Mirrorless Cameras 170MB/s Read & 80MB/s Write First, open the PageMaker application. Close the Templates window, which opens initially on startup of PageMaker, Now click on File menu and select New . A Document setup window opens,make the fields of Document Setup as seen in the image below and click OK Now select rectangle box tool from Tool box and draw a rectangle.

Interesting Android

Image
Google's Android Operating System is the major platform for almost every smartphone. It is said that 9 out of 10 smartphone shipped are runs on Android. Open source, customization, unlimited and unrestricted availability of applications makes Android OS favorite for manufacturers,developers and user. For Android OS, each version has given a specific name( usually names of dessert items), ordered alphabetically. After Android 1.0 and 1.2 which doesn't have any name Google released the revised version of last OS as Android 1.5 with code name Cupcake.[ Read full list of Android version ]. Current versions are Marshmallow(Android 6.0)and Nougat(Android 7.0). Point is that, everything from the naming to usage, Android phone has something interesting for its user.Here is one. Android Operating Systems such as Lollipop(Android 5.0), Marshmallow comes with a game which is hidden from the user. But, you can have the game by

Armstrong numbers

Image
An Armstrong(after Michael F. Armstrong ) number, also known as Narcissistic number or pluperfect digital invariant(PPDI) OR plus perfect number , is a number that is sum of its own digits each raised to the power of the number of digits. For example: If the number is 371. How to find this number is an Armstrong number. First check the number of digit in this number. There are 3 digit, so take 3 as power. Now,  3 3 =27 7 3 =343 1 3 = 1 27+343+1=371 1634 is Armstrong or not?

Number Palindrome or not

Image
A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward or forward.   A program

Simple Java program to Swap values

Image
In this post, I would like to share two simple program which swap value stored in two variables. In the first program, uses an extra variable to perform swapping and in the second program there is no additional variable used. These two program uses two variable a and b to hold the values inserted by user. After processing the value in variables get replaced by each other. That is the value in a get replace by the value in b and the value in b get replaced by the value in a. For instance if user inserts 10 and 25 into the variable a and b respectively, after process the variable a will have 25 and b will have 10. To perform this operation, normally,we need an extra variable which holds the value in variable either the value in a or in b. If we store the value in a to the additional variable, say s, then we can replace a with b's value. Now, we have variable a