Saturday 17 June 2017

About Google Products

All Google Products


  • Search

        Get instant answers on the web and on your phone.

  • Maps

        Get GPS navigation, traffic alerts, transit directions, and more.

  • Translate

        Speak, scan, type, or draw to translate in over 100 languages.

  • Chrome

        A fast, simple, and secure browser for the modern web.

  • YouTube

        Discover, watch, and share your favorite videos and music.

  • Google Play Music

        Subscribe to access millions of songs, on demand and ad-free.

  • Chromecast

        Stream movies, music and more from your phone to your TV

  • Google Play Movies & TV

        The newest releases, plus all your favorites, even on your TV.

 

 

 

 

 

 

 

 


How to create a Blog on Blogger

How to use Blogger

You can post info and stories with Blogger.
When you use Blogger, make sure you comply with the Blogger Content Policy and Terms of Service.

Create a blog

  1. Sign in to Blogger.
  2. In the top left, next to "New blog" click the Down arrow Down Arrow.
  3. Click New blog.
  4. Enter a name for your blog.
  5. Choose a blog address, or URL.
  6. Choose a template.
  7. Click Create blog.

Change the name of your blog

  1. Sign in to Blogger.
  2. In the left menu, click Settingsand thenBasic.
  3. Next to "Title," click Edit.
  4. Enter a new name for the blog.
  5. Click Save changes.

See how your blog looks

To view your blog, go to the top left and click View Blog.

Change how your blog looks

You can change the design of your blog.

Decide who can see or edit your blog

You can control who has access to your blog.

Explore your blog

You can use the left menu to:
  • View your posts, pages, comments, and statistics.
  • Manage earnings, campaigns, and more.

Get Blogger updates

To get feature announcements, advice, and other info, sign up for email updates:
  1. Sign in to Blogger.
  2. In the left menu, click Settingsand thenUser settings.
  3. Under "Email Notifications," next to "Feature Announcements," choose "Yes."
  4. In the top right, click Save settings.

Troubleshoot issues

If you have a problem with Blogger, see info on troubleshooting issues.

Thursday 2 February 2017

Information about Data Flow Diagram

Data Flow Diagram

  • Definition

     A data flow diagram (DFD) is a graphical representation of the "flow" of data through an information system, modelling its process aspects. A DFD is often used as a preliminary step to create an overview of the system, which can later be elaborated.

    A DFD shows what kind of information will be input to and output from the system, where the data will come from and go to, and where the data will be stored. It does not show information about the timing of process or information about whether processes will operate in sequence or in parallel(which is shown on a flowchart).

     
    Data flow diagrams are also known as bubble charts.DFD is a designing tool used in the top-down approach to Systems Design.Data flow diagrams can be used in both Analysis and Design phase of the SDLC.There are different notations to draw data flow diagrams (Yourdon & Coad and Gane & Sarson[6]), defining different visual representations for processes, data stores, data flow, and external entities.

    External Entity 

    An external entity can represent a human, system or subsystem. It is where certain data comes from or goes to. It is external to the system we study, in terms of the business process. For this reason, people used to draw external entities on the edge of a diagram.

    Process

    A process is a business activity or function where the manipulation and transformation of data takes place. A process can be decomposed to finer level of details, for representing how data is being processed within the process. 

     


    Data Store

    A data store represents the storage of persistent data required and/or produced by the process. Here are some examples of data stores: membership forms, database table, etc.

      

    Data Flow

    A data flow represents the flow of information, with its direction represented by an arrow head that shows at the end(s) of flow connector. 


      
    The DFD may be used for any level of data abstraction. DFD can be partitioned into levels.              Each  level has more information flow and data functional details than the previous level.
   Highest level is Context Diagram. Some important points are:
  •  1 bubble (process) represents the entire system.
  •  Data arrows show input and output.
  •  Data Stores NOT shown. They are within the system.
   
Next Level is Level 0 DFD. Some important points are:
  • Level 0 DFD must balance with the context diagram it describes.
  • Input going into a process are different from outputs leaving the process.
  • Data stores are first shown at this level.
Next level is Level 1 DFD. Some important points are:
  • Level 1 DFD must balance with the Level 0 it describes.
  • Input going into a process are different from outputs leaving the process.
  • Continue to show data stores.
A DFD may look similar to a flow chart. However, there is a significant difference with the data flow diagram. The arrows in DFDs show that there is a flow of data between the two components and not that the component is sending the data that must be executed in the following component. A component in DFD may not continue execution when sending data and during execution of the component receiving the data. The component sending data can send multiple sets of data along several connections. In fact, a DFD node can be a component that never ends.

Tuesday 4 October 2016

Basic knowledge about C language

What Is C?

C could be a programming language. The C language was 1st developed in 1972 by Dennis Ritchie at AT & T Bell Labs. Ritchie known as his newly developed language C merely because there was a B programming language already.
C could be a high-level programming language. In fact, C is one in every of the foremost common general purpose programming languages.
In the pc world, the any a programming language is from the pc design, the higher the language’s level. you’ll be able to imagine that the lowest-level languages are machine languages that computers perceive and execute directly. The high-level programming languages, on the opposite hand, are nearer to our human languages
High-level programming languages, together with C, have the subsequent advantages:
  • Readability: Programs are simple to scan.
  • Maintainability: Programs are simple to take care of.
  • Portability: Programs are simple to port across completely different pc platforms.

The C language’s readability and maintainability profit directly from its relative close to human languages, particularly English. Each high-level language desires a compiler or an interpreter to translate directions written within the high-level programming language into a machine language that a pc can perceive and execute. machines may have different compilers or interpreters for constant programming language. for example, i exploit Microsoft’s C compiler to compile the C programs during this book for my notebook computer (PC). If I want to run the C programs on a UNIX-based workstation, I actually have to use another form of C compiler to compile these programs. Therefore, the portability of programs written in C is realized by re-compiling the programs with completely different compilers for various machines