Website is updated! 06:37 PM 09/01/2015

Pgesturia

Online training

We provide essential courses to our courses online and we teach them every thing we know about web designing and web development For no cost

Sunday, 21 December 2014

A memorable journey

Topic: A memorable journey A memorable journey is that which clicks in your mind, it is that moment which impressed you a lot. I travelled a lot in my life but the most shining and the most memorable journey of my life is when I went to the Fair, it was famous by its name that is LUCKY IRANI CIRCUS which was held in the city Lahore. Lahore is the famous city of Pakistan. Lucky Irani circus was on 25th of December. We started our journey two days earlier from Karachi .We were not came from Plane, we started our journey by car. It took...

Wednesday, 17 December 2014

SRS-Software Requirement specification

Software Requirement specificationSRS 1.  INTRODUCTION                                    This SRS document is for a software house’s website (Anysoftwarehouse.com) This document provides overview of the SRS for our website.It includes purpose of our website. It provides scope of website and definitions and reference and the overview is also written in SRS. 1.1         Purpose...

Tuesday, 16 December 2014

peshawar attack DP

Attack in peshawar DP We in the condolence of peshawar attack will change our dps's of atleast 3 days. ...

Friday, 12 December 2014

Polymorphism in OOP

Polymorphism and virtual functions Polymorphism The word Polymorphism is a combination of two words i.e poly and morphism. Poly means many and morphism mean form. In object-oriented-programming, Polymorphism is the cability of objects of different types two reply to the functions of the same name.The user  not have to know the exact type of the object in advance. The action of the object can be apply at the run time. It is called Late-Binding or Dynamic binding. Polymorphism is implemented by using virtual functions. Pointer to objects A...

Sunday, 7 December 2014

Sandwich Model in SE

Requirement and ModelingorSandwich Model                              It is important to understand the relationship between requirement management and system modeling.They are mutually supportive activities that should not be equated.We can compare this relationship  to the terminology 'SANDWICH'.                    ...

Wednesday, 3 December 2014

Software configuration management

Presentation on Software configuration management  The topic of my today's presentation is Software configuration management. Firstly we see that what is meant by configuration? What is configuration? The way a computer system or program is prepared for particular use is known as configuration.For example we will see that a simple USB have multiple functions i.e we can store data or make it boot-able drive,so in both cases we actually...

Monday, 1 December 2014

What is meant by Inheritance in OOP?

Inheritance                             A programming technique that is used to reuse an existing class to build a new class is known as inheritance.The new class inherits all the behavior of the original class. The existing class that is re-used to create a new class is known as super class,base class,or parent class.The new class that inherits the properties and functions of...

Sunday, 30 November 2014

Write a note on Water

Importance of water Water is the most important thing in our life.We can not live without water.The earth is divided in to four parts or quarters.The three quarters are filled with water,but 2.5 percent of the world's water is pure or fresh for drinking. How many oceans are present? There are five (5) oceans. Arctic Ocean Atlantic Ocean Pacific Ocean Indian Ocean Southern Ocean The  largest ocean of the world is the PACIFIC OCEAN. Uses of Water We use water in our life with many ways i.e: We use water for drinking. We use the...

Saturday, 29 November 2014

How to create tables in HTML?

Tables in HTML In table forming,generally four tags are use. <table> <tr> <td> <th> <tr> tag is used for creating new row. <th> tag is used for creating new heading. <td> tag is used for entring new data. RowSpan It is not so difficult to understand. RowSpan means to combine multiple rows to form new row.Its value can be defined in to the tag. ColSpan It is not so difficult to understand.ColSpan means to combine multiple column to form new column.Its value can be defined in to the tag. Making...

Define Link colors in HTML

How to change Link colors in HTML? We divided links into three categories: alink vlink link Link It is standard link that is not visited by visitors. alink It is active link.The color of link become changed when we put cursor on it. vlink It is visited link.Color become changed when visitor visited the link. Syntax <header link="blue" vlink="grey" alink"red"&g...

Friday, 28 November 2014

What is a comment in Programming Language?

Comment Comment is a line of code which is written in the program but it can not be executed.It can only be written in program to enhance the readability of progra...

How to add comment in HTML?

Adding comment in HTML page We can add comments in our webpage very easily using a simple tag known as comment tag. Firstly you have to know that what do you meant by comment in any  programming language. // Comment is a line of code which is written in the program but it can not be executed.It can only be written in program to enhance the readability of program.                                                ...

Image tag in HTML

How to add Image tag in HTML? There are three important tags which are use to add and format the image in HTML.These are as below:- <FIGURE> tag <IMG> tag <FIGCAPTION> tag <img> tag is used to add the picture in our website.Syntax of img tag is given below:- Syntax <img src="abc.jpeg" /> When we add more then one picture in a page,then it is good practice to encapsulate the all <img> tag in another tag called <figure> tag. Syntax <figure> <img src="image1.png" /> <img src="image2.png"...

Thursday, 27 November 2014

More tags of HTML

Some more tags of HTML Some other useful tags are listed below. hr tag. hr tag is used to draw a horizontal line to the webpage. Example this is my page <hr>. <br> tag.br tag is used to go to next line. Example Hi world <br>. <a> tag. a tag also called anchor tag is used to add links and make references to  webpage. Example <a href="http://educationwelfaretrust.blogspot.com>Mysite</a>...

What are List tags in HTML?

List tags in HTML We can divide list in to sub cetagories: Unordered list (ul) Ordered list(ol) List item(li) Examples To create navigation list. <nav> <ul> <li><a href="#">Name</a></li> <li><a href="#">contact</a></li> <li><a href="#">email</a></li> </ul> </nav&g...

Heading tags

What are the Heading tags of HTML? There are six heading tags listed below: H1 HEADING H2 HEADING H3 HEADING H4 HEADING H5 HEADING H6 HEADING These headings tag can be enclosed in another important tag called HGROUP  tag. ...

Formatting Tags

What are Formatting Tags ? There are several tags which are used to formatting the text. These are listed as below. <b>  It defines BOLD text. <em> It defines emphasized text. <small> It defines small text. <strong> It defines important text. <sub> It defines subscript text. <sup> It defines superscript text. <ins> It defines underline text. <del> It defines deleted text. <mark> It defines highlighted text. ...

Wednesday, 26 November 2014

Basic HTML tags

Tags of HTML In this chapter we will discuss about tags,its nature and its attributes. Every tag has its opening and its closing tags.Tags are closed using "/". <HEAD>  tag Head tag is also called a container tag.It is basically used to add the METADATA  in to the HTML file. It is also used to add CSS(cascading style sheet). The basic purpose of head tag is to add basic description about blog. <P> tag "P" tag is used for writing paragraphs.we used this tag to edit separately edit text in web-page. <BODY>...

What is CSS-Cascading style sheet?

CSS CSS stands for cascading style sheet and is used to design  web pages. There are three types of CSS. IN-LINE  css INTERNAL css EXTERNAL css...

What is MetaData ?

META-DATA Meta-Data is known as Data about data.I know this statement confuse you. Dont worry i'll explain it in future tutorials but now you can understand it as information about your basic data is added by META DAT...

HTML syntax

Basic HTML structure The structure and syntax of HTML is given below: <HTML> <HEAD> <TITLE>Page title</TITLE> </HEAD> <BODY> Page structure </BODY> </HTML> This is the basic structure of HTM...

Basics of HTML

Basics of HTML HTML Introduction HTML is known as Hyper-Text-Markup_language.It is basically used  for designing a webpage.It is also used to create the static websites. HTML is a TAG-based language.Every tag has its own special meaning. Many tags are used in HTML,we will discuss all tags briefly. some tags are <BODY> , <HEAD> , <HTML> , <P> , e...

Phillip Hughes Australian Cricketer has died

Death of Phillip Huges Phillip Hughes died  Phillip Hughes is no more with us. He died due to hitting ball on his head.  He was fighting for life after being hit in  the head by cricket ball.May his soul rest  in peace.He was only 25 years old. Phillip Hughes Australian Cricketer hit by a bal...

Friday, 21 November 2014

C tutorial for series for new commer

Friends,next lesson of C programming tutorials will be publish tonight till 11:00 PM. So do not panic and enjoy EWT tutorials of C language. Regards ewt t...

learning C language chapter 2

Learning C language using OOP Chapter#2 Introduction to C++ Contents History of C++ Preprocessor directive Header files Main() function C++ statements Token White spaces Linker 1. History of C++                  Many new programming languages appeared during the 1960's. The computers at that time were still in early stage of development.The language ALGOL 60 was developed as an alternativ to FORTRAN.The language CPL was developed in 1963.It was more specific for concrete programming...

C programming language chapter 1

Object-Oriented Programming using C++ Chapter#1 Introduction to programming Contents Problem solving Advantages of computer program Algorithms and Pseudo code Types of code Programming languages are sub-divided in to numerous categories in which we discussed C language. 1. Problem Solving  DEF:-       Problem solving is the process of identifying problem and to finds its best solution. Problem solving is a skill that can be developed by following a well organized approach. Different strategies techniques and...

C# tutorials using ASP.net &VB

C# tutorials are basically designed under strong observation and will be uploaded after compilation and completing of C or C++ tutorial series.These tutorials are getting popular because only a hard-work that i currently do for you guys.After completing of our 1st tutorial series ,our next target is to compose tutorials of C# in ASP.net and also in Visual Basic(VB). C# tutorials using ASP.net & VB We are soon announcing our releasing...

Education

Important to note that Video Tutorials Necessary Education  Are you interested in learning some knowledge? Are you intended to attend lecture of your favorite subjects? Are you curious about learning? If your answer is YES of all questions the you are coming on right place.We are soon starting our tutorial classes in this website specially for you guys.Firstly we were going to create new website for uploading tutorials ,but after your so much response we decided to gives tuts in this websites for neglecting confusion. We...

Tuesday, 18 November 2014

earn in seconds

Hi fellows ,i must recommend you all to please study minimum of 12th grade to earn a normal status in soci...

top ptc websites

Dear fellows,in this articles i tell you the most famous and trusted ptc websites known as paid to click websites.these are explained below:- *www.neobux.com *www.probux.com *www.clixsense.com These are international websiteswhich you can trust If you live in Pakistanthe website which i recommend is:- http://www.earninseconds.com/?ref=djabdullah this is trusted and best paid websitei personally  earned so far from this s...

Kinds of Software Requirements

•Functional requirements •Non-functional requirements •Domain requirements •Inverse requirements •Design and implementation constraints Non functional •Most non-functional requirements relate to the system as a whole. They include constraints on timing, performance, reliability, security, maintainability, accuracy, the development process, standards, etc. ...

How to handle this problem

}Software economic techniques ◦We need to make some economic decision to overcome this problem ◦Example: – we will discuss these decision w.r.t major phases of project life cycle –}How much should we invest in information system analysis in order that we converge on an appropriate definition and concept of operation for the proposed system ◦User questionnaire, interviews, current system analysis, prototype e...

Economics and Software Engineering Management

}Microeconomics ….. Why ◦We deal with limited resources ◦Never enough time ◦Never enough money ◦Even cheap hardware and software is available but they also have limit ◦Some product features may limit critical resources. Can you give some examples……….. }What type of resources a software project may need??? ◦People ( with required skills) ◦Equipment ( with correct type and specification) ◦What else ????...