Search your Topic HERE....

Showing posts with label IT Officers Exam. Show all posts
Showing posts with label IT Officers Exam. Show all posts

December 24, 2013

Types of Compilers

8 comments
Friends, we have already discussed the introduction of compilers and phases of compilers. In this post we shall discuss about various types of compilers.Those are 1. Incremental Compiler and 2. Cross compiler. Lets have a detailed look at them,
Read More...

March 07, 2012

Normalization and Normal Forms - IBPS IT Officers Preparation Materials - DBMS

28 comments
The Process of making a table (or often we call it as Record) NORMAL is called Normalization :P Ok in other words, we can say that the Normalization is the process of simplifying the Table :)

Good definitions... Aren't they ??? ;) But you will get Size Zero marks if you write the above definitions in exams. Lets be lil TECHNICAL.

The design method which helps us to MINIMIZE the redundancies of data (repetitions) and reduces the errors / mistakes in the table is called Normalization. 
Read More...

February 26, 2012

Compilers Basics for IBPS IT Officers Exam

38 comments
Assume that you visited china to meet China's Prime minister. The meeting was arranged in a big auditorium. But now the problem is, you don't know Chinese and he too don't know your Language (say Hindi). Then what  to Do? Now you have 3 solutions.
  1. To learn Chinese
  2. To make him learn your Language
  3. Or you both should learn some other language (Like English) so that you can communicate in that language...
Read More...

The Phases of Compiler

24 comments
There are several Phases in compilers are there. Those are,
  1. Lexical Analyser : Performs Lexical Analysis 
  2. Syntax Analyser : Performs Syntax Analysis
  3. Semantic Analyser : Performs Semantic Analysis
  4. Intermediate Code Generator : Performs Intermediate Code Generation
  5. Code Optimizer : Performs Code Optimization
  6. Code Generator : Generates Target Code 
Read More...

February 25, 2012

The OSI Model - Study Materials for IBPS IT Officers Exam 2013

33 comments
Once there was an Organization called International Standards Organization (ISO in short). It standardized the functions of the Communications System with abstraction layer and developed a Model. They named it as Open Systems Interconnection (OSI). ISO - OSI sounds funny, isn't it???
In this model, similar types of communication functions are grouped into Layers. There are 7 layers in this Model. Those are,
  1. Physical Layer
  2. Data link Layer
  3. Network Layer
  4. Transport Layer
  5. Session Layer
  6. Presentation Layer
  7. Application Layer 
Each layer helps it's above layer to establish an error free communication, in other words, each layer depends on its below layer to establish an error free communication. 


How to remember these names????
Here the order is very important. If anybody asks you about these layers, you should start with Physical and end with Application Layer. You should not jumble these names according to your convenience. So you should remember these names with an order. Well, there are several techniques are there to remember these type of names. One of those technique is, making a funny name or sentence with the STARTING letters. Just, write the starting letters of these layers.

                                         P D N T S P A


Now make a funny sentence, here are some examples


  • Please Do Not Touch Steve's Pet Alligator  

                       Or





  • Please Do Not Throw Sausage Pizza Away 








Now I bet you never going to forget these names and order again :)

Ok, now lets have a look at the Functionalities of these Layers...


  • Physical Layer : This is the First or Lowest layer of the OSI model. It takes care about the Physical Connections.
  • Data Link Layer : This layer Encodes the data packets and provides error free node to node transmission. It is divided into two sub layers. Those are
      • Media Access Control Layer (MAC Sublayer in short)
        • It helps the computer to get the access of data transmission 
      • Logical Link Control Layer (LLC Sublayer in short)
        • It controls the order, flow and errors of the frames (Frame synchronization)
  • Network Layer : This layer helps in Switching and Routing (connecting and transmitting), and also creates virtual circuits ( Imaginary paths for transmission)
  • Transport Layer : This layer helps in providing Transparent data transmission. Its also checks whether the data completely transmitted or not.
  • Session Layer : This layer is responsible for the Transmission Sessions. I mean Starting, Maintaining and Terminating the Communication. 
  • Presentation Layer : This layer provides the data Independence ( simply you can remember that this layer is responsible for the data Presentation :) I mean, how you are presenting data (without any leakage)
  • Application Layer : This is the topmost layer, this layer directly interacts with the end user. This layer is responsible for checking whether the claimed user is genuine or not. 
          Still having problems with these functions??? Have a look at the following diagram. It will be easier for you to understand :)




Very good. Now you know about the OSI model and It's Layers :) You know that it was developed by ISO.

Hey, you know one secret? ISO dint invent any new model. It just COPIED some old model and modified it.. Thats all.

Once there was a model called TCP/IP model (Transport Control Protocol / Internet Protocol) with this name itself, you can define its functionality :) It has lil complicated structure with only  4 Layers. Those are

        1. Network Interface Layer
        2. Internet Layer
        3. Transport Layer
        4. Application Layer
ISO Just elaborated this model and divided some of these layers into EXTRA LAYERS and developed OSI model. have a look at the following Diagram, so that you can understand the difference :)




Thats all for now friends. Happy reading...



IBPS bank it officer study material pdf download 2013

Read More...

February 24, 2012

DBMS Study Material for IBPS IT Officers - Data Models

12 comments

Data Model means, to give a SHAPE to the data. A Data Model Makes it easier to understand the Data. We can define the data model as "The Collection of High-Level data description that hide many low level storage details". 
The Data Models are divided into THREE different groups. They are,

  1. Object - Based Logical Models
  2. Record - Based Logical Models
  3. Physical Data Models

1. Object Based Logical Models :  These are used in describing data at Logical Level and View Level. ( Logical level describes what data are stored in the database and what relationships exists among those Data. This logical level is used by the DBA (Data Base Administrator). He must decide what information is to be kept in the Data Base. The View level describes Only part of the entire database to be viewed by the user of the database hiding the details of the Information Stored. 


The Object based logical models are described in the different following models.


  • The E-R (Entity-Relationship ) Model
  • The Object-Based Logical Model
  • The Semantic Data Model
  • The Functional Data Model
E-R Model : The entity is a "Thing" or " Object" in the real world that is distinguishable from other objects. The E-R model is based on the collection of basic objects called Entities and the Relationship among them. Consider the following Diagram.



In the above diagram, RECTANGLES represents ENTITIES, DIAMONDS represents RELATIONSHIP among those ENTITIES. LINES represents links of Entities to Relationships. 

Object - Oriented Model : The Object Oriented model based on a collection of OBJECTS. An object contains values stored in Instance Variables and Bodies of Code that operates on the Object. (These bodies of Code is called Methods).
Objects that contain the same types of values and the same methods are grouped together into classes. (A class is the definition of the object). 

Semantic Data Model : A Semantic data model is a more high level data model that makes it easier for a user to give Starting Description of the data in an organization. (Semantic is nothing but the Meaning). These models contain a wide verity of relations that helps to describe a real application scenario. A DBMS cannot support all these relations directly. So it is build only with few relations known as relational model in DBMS. A widely used semantic data model is the Entity-Relationship (ER) data model which allows us to graphically denote entities and relationship between them.

Functional Data Model : The functional data model makes it easier to define functions and call them where ever necessary to process data. 

2. Record - Based Logical Models : 
In this type of models, the data is kept in the form of RECORDS (documents). Thse models describes data at Logical and View Levels. When compared with Object Based Data Models, the record based logical models specifies the overall logical structure of the database and provides higher-level implementation. 
These are of 3 types. Those are,
  • Relational Model
  • Network Model
  • Hierarchical Model
Relational Model : The relational model represents both Data (entities) and Relationships among that data in the form of Tables. Each table contains multiple columns and each column contains a unique name. Have a look at the following table. 


Network Model : Data in the network model are represented by collection of Records and Relationships among data are connected by LINKS. These links can be viewed as Pointers. Have a look at the following diagram.


Hierarchical Model : This is also same as Hierarchical model, the difference is the records in the database are represented in the form of TREES (in Hierarchical way)


3. Physical Data Models: Physical data models are used to describe data at the lowest level, which explains how the data is actually stored using complex low-level data structures. Actually, the physical data models are rarely used.

There are two types in Physical Data Models.

  • Unifying Model
  • Frame-Memory Model


Read More...
Related Posts Plugin for WordPress, Blogger...