Monday 19 August 2013

Increase Traffic

Reduce Load Time 

Hi friends we know that all blogger people want to increase their traffic so i tell you some tips.

# Low social networks icons

I tell you how to increase your traffic on blogs. So firstly keep in mind that only add some social icons. It means we add only our famous page like as Facebook,Twitter etc. 
If you have add more icons then when visitor's are click the page and it take to many seconds for loading all content and also update social networks. So reduce the icons. If you have more load time of blogs then visitor's will not come to here in future and not impress to your blogs. We all know about Facebook is the largest social community in the world.

# Main Content show on home page

 Content are play main role for every blogger blogs. So we show only our famous blogs on home page because page have took more time to update and it is not good for any blogs so visitor's are not like this. So to take action for your blogs.

# Remove Java script

If you have more use of Java script then it is cause of late page load. So you have used only require java script only in your template. And use more attractive template is come more visitor's for your blogs

# Low Intermediate Links

All blogger have known about not add more inter connection links. Because it have to take more time for load the page. You add only required links only not add useless links in the blogs. 

Friday 16 August 2013

Money with Blogging

Hi friends we all are using blogs for make money with Google Ad-Sense. So it is free and easy way to get money without any hard efforts on internet. 
Google Ad-Sense provide a simple way to make money with website's. So if we have good and lot of daily visitors then make hundred's of dollar's easily.
Firstly we signup with Ad-Sense Account then attach with blogger Earning tabs and it is approval successfully then we have got Ad on our website and high traffic of visitor's give a chance to make a lot of money in easy way with Google on internet.
If you have any query regarding about how to work Google Ad-sense then leave a message in comments box with Money with Blogging.

Blogging Tips

Blogging tips are very useful for know about How to manage your blogs and their content ? Because if we do not know about our blogs then we have not got a lot of visitors and then no get a good traffics. 
Blogs are always updated and put a unique materials for our readers  so if we are success in this section then readers are come daily and we will get easily high traffic and make money with ad-sense.


Thursday 15 August 2013

HTML head Elements

The HTML <head> Element

The <head> element is a container for all the head elements. Elements inside <head> can include scripts, instruct the browser where to find style sheets, provide meta information, and more.
The following tags can be added to the head section: <title>, <style>, <meta>, <link>, <script>, <noscript>, and <base>.

The HTML <title> Element

The <title> tag defines the title of the document.
The <title> element is required in all HTML/XHTML documents.
The <title> element:
  • defines a title in the browser toolbar
  • provides a title for the page when it is added to favorites
  • displays a title for the page in search-engine results
A simplified HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>



The HTML <base> Element

The <base> tag specifies the base URL/target for all relative URLs in a page:
<head>
<base href="http://www.Google.com/images/" target="_blank">
</head>



The HTML <link> Element

The <link> tag defines the relationship between a document and an external resource.
The <link> tag is most used to link to style sheets:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>



The HTML <style> Element

The <style> tag is used to define style information for an HTML document.
Inside the <style> element you specify how HTML elements should render in a browser:
<head>
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
</head>



The HTML <meta> Element

Metadata is data (information) about data.
The <meta> tag provides metadata about the HTML document. Metadata will not be displayed on the page, but will be machine parsable.
Meta elements are typically used to specify page description, keywords, author of the document, last modified, and other metadata.
The metadata can be used by browsers (how to display content or reload page), search engines (keywords), or other web services.
<meta> tags always go inside the <head> element.

<meta> Tags - Examples of Use

Define keywords for search engines:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
Define a description of your web page:
<meta name="description" content="Free Web tutorials on HTML and CSS">
Define the author of a page:
<meta name="author" content="Hege Refsnes">
Refresh document every 30 seconds:
<meta http-equiv="refresh" content="30">



The HTML <script> Element

The <script> tag is used to define a client-side script, such as a JavaScript.
The <script> element will be explained in a later chapter.

HTML head Elements


Tag Description
<head> Defines information about the document
<title> Defines the title of a document
<base> Defines a default address or a default target for all links on a page
<link> Defines the relationship between a document and an external resource
<meta> Defines metadata about an HTML document
<script> Defines a client-side script
<style> Defines style information for a document

HTML Links

HTML Hyperlinks (Links)

The HTML <a> tag defines a hyperlink.
A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document.
When you move the cursor over a link in a Web page, the arrow will turn into a little hand.
The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
By default, links will appear as follows in all browsers:
  • An unvisited link is underlined and blue
  • A visited link is underlined and purple
  • An active link is underlined and red

HTML Link Syntax

The HTML code for a link is simple. It looks like this:
<a href="url">Link text</a>
The href attribute specifies the destination of a link.

Example

<a href="http://www.Google.com/">Visit Google</a>

Clicking on this hyperlink will send the user to Google' homepage.
Tip: The "Link text" doesn't have to be text. It can be an image or any other HTML element.

HTML Links - The target Attribute

The target attribute specifies where to open the linked document.
The example below will open the linked document in a new browser window or a new tab:

Example

<a href="http://www.Google.com">Visit Google!</a>




HTML Links - The id Attribute

The id attribute can be used to create a bookmark inside an HTML document.
Tip: Bookmarks are not displayed in any special way. They are invisible to the reader.

Example

An anchor with an id inside an HTML document:
<a id="tips">Useful Tips Section</a>
Create a link to the "Useful Tips Section" inside the same document:
<a href="#tips">Visit the Useful Tips Section</a>
Or, create a link to the "Useful Tips Section" from another page:
<a href="http://www.w3schools.com/html_links.htm#tips">
Visit the Useful Tips Section</a>



Basic Notes - Useful Tips

Note: Always add a trailing slash to subfolder references. If you link like this: href="http://www.w3schools.com/html", you will generate two requests to the server, the server will first add a slash to the address, and then create a new request like this: href="http://www.w3schools.com/html/".



HTML Link Tags

TagDescription
<a>Defines a hyperlink

HTML Formatting

HTML Text Formatting

This text is bold

This text is italic

This is computer output

This is subscript and superscript



HTML Formatting Tags

HTML uses tags like <b> and <i> for formatting output, like bold or italic text.
These HTML tags are called formatting tags (look at the bottom of this page for a complete reference).

Often <strong> renders as <b>, and <em> renders as <i>.

However, there is a difference in the meaning of these tags:

<b> or <i> defines bold or italic text only.

<strong> or <em> means that you want the text to be rendered in a way that the user understands as "important". Today, all major browsers render strong as bold and em as italics. However, if a browser one day wants to make a text highlighted with the strong feature, it might be cursive for example and not bold!

HTML Text Formatting Tags

Tag Description
<b> Defines bold text
<em> Defines emphasized text 
<i> Defines a part of text in an alternate voice or mood
<small> Defines smaller text
<strong> Defines important text
<sub> Defines subscripted text
<sup> Defines superscripted text
<ins> Defines inserted text
<del> Defines deleted text
<mark> Defines marked/highlighted text

HTML "Computer Output" Tags

Tag Description
<code> Defines computer code text
<kbd> Defines keyboard text 
<samp> Defines sample computer code
<var> Defines a variable
<pre> Defines preformatted text

HTML Citations, Quotations, and Definition Tags

Tag Description
<abbr> Defines an abbreviation or acronym
<address> Defines contact information for the author/owner of a document
<bdo> Defines the text direction
<blockquote> Defines a section that is quoted from another source
<q> Defines an inline (short) quotation
<cite> Defines the title of a work
<dfn> Defines a definition term
  

HTML Paragraphs

HTML documents are divided into paragraphs.

HTML Paragraphs

Paragraphs are defined with the <p> tag.

Example

<p>This is a paragraph</p>
<p>This is another paragraph</p>


Note: Browsers automatically add an empty line before and after a paragraph.

Don't Forget the End Tag

Most browsers will display HTML correctly even if you forget the end tag:

Example

<p>This is a paragraph
<p>This is another paragraph


The example above will work in most browsers, but don't rely on it. Forgetting the end tag can produce unexpected results or errors.
Note: Future version of HTML will not allow you to skip end tags.

HTML Line Breaks

Use the <br> tag if you want a line break (a new line) without starting a new paragraph:

Example

<p>This is<br>a para<br>graph with line breaks</p>


The <br> element is an empty HTML element. It has no end tag.

HTML Output - Useful Tips

You cannot be sure how HTML will be displayed. Large or small screens, and resized windows will create different results.
With HTML, you cannot change the output by adding extra spaces or extra lines in your HTML code.
The browser will remove extra spaces and extra lines when the page is displayed. Any number of lines count as one line, and any number of spaces count as one space.

HTML Tag Reference

tutorial4begginers tag reference contains additional information about HTML elements and their attributes.
Tag Description
<p> Defines a paragraph
<br> Inserts a single line break

HTML Headings

Headings are important in HTML documents.

HTML Headings

Headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading.

Example

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>


Note: Browsers automatically add some empty space (a margin) before and after each heading.

Headings Are Important

Use HTML headings for headings only. Don't use headings to make text BIG or bold.
Search engines use your headings to index the structure and content of your web pages.
Since users may skim your pages by its headings, it is important to use headings to show the document structure.
H1 headings should be used as main headings, followed by H2 headings, then the less important H3 headings, and so on.

HTML Lines

The <hr>tag creates a horizontal line in an HTML page.

The hr element can be used to separate content:

Example

<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>





HTML Comments

Comments can be inserted into the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed.
Comments are written like this:

Example

<!-- This is a comment -->


Note: There is an exclamation point after the opening bracket, but not before the closing bracket.

HTML Tag Reference

http://Tutorial4Begginers.blogspot.in tag reference contains additional information about these tags and their attributes.
You will learn more about HTML tags and attributes in the next chapters of this tutorial.
Tag Description
<html> Defines an HTML document
<body> Defines the document's body
<h1> to <h6> Defines HTML headings
<hr> Defines a horizontal line
<!--> Defines a comment

HTML Attributes

Attributes provide additional information about HTML elements.

HTML Attributes

  • HTML elements can have attributes
  • Attributes provide additional information about an element
  • Attributes are always specified in the start tag
  • Attributes come in name/value pairs like: name="value"

Attribute Example

HTML links are defined with the <a> tag. The link address is specified in the href attribute:

Example

<a href="http://www.google.com">This is a link</a>





Always Quote Attribute Values

Attribute values should always be enclosed in quotes.
Double style quotes are the most common, but single style quotes are also allowed.
RemarkTip: In some rare situations, when the attribute value itself contains quotes, it is necessary to use single quotes: name='John "ShotGun" Nelson'

HTML Tip: Use Lowercase Attributes

Attribute names and attribute values are case-insensitive.
However, the World Wide Web Consortium (W3C) recommends lowercase attributes/attribute values in their HTML 4 recommendation.
Newer versions of (X)HTML will demand lowercase attributes.

HTML Attributes Reference

A complete list of legal attributes for each HTML element is listed in our: HTML Tag Reference.
Below is a list of some attributes that can be used on any HTML element:

Attribute Description
class Specifies one or more classnames for an element (refers to a class in a style sheet)
id Specifies a unique id for an element
style Specifies an inline CSS style for an element
title Specifies extra information about an element (displayed as a tool tip)

HTML Elements

HTML documents are defined by HTML elements.

HTML Elements

An HTML element is everything from the start tag to the end tag:
Start tag * Element content End tag *
<p> This is a paragraph </p>
<a href="default.htm"> This is a link </a>
<br>    
* The start tag is often called the opening tag. The end tag is often called the closing tag.

HTML Element Syntax

  • An HTML element starts with a start tag / opening tag
  • An HTML element ends with an end tag / closing tag
  • The element content is everything between the start and the end tag
  • Some HTML elements have empty content
  • Empty elements are closed in the start tag
  • Most HTML elements can have attributes
Tip: You will learn about attributes in the next chapter of this tutorial.

Nested HTML Elements

Most HTML elements can be nested (can contain other HTML elements).
HTML documents consist of nested HTML elements.

HTML Document Example

<!DOCTYPE html>
<html>

<body>
<p>This is my first paragraph.</p>
</body>

</html>
The example above contains 3 HTML elements.

HTML Example Explained

The <p> element:
<p>This is my first paragraph.</p>
The <p> element defines a paragraph in the HTML document.
The element has a start tag <p> and an end tag </p>.
The element content is: This is my first paragraph.
The <body> element:
<body>
<p>This is my first paragraph.</p>
</body>
The <body> element defines the body of the HTML document.
The element has a start tag <body> and an end tag </body>.
The element content is another HTML element (a p element).
The <html> element:
<html>

<body>
<p>This is my first paragraph.</p>
</body>

</html>
The <html> element defines the whole HTML document.
The element has a start tag <html> and an end tag </html>.
The element content is another HTML element (the body element).

Don't Forget the End Tag

Some HTML elements might display correctly even if you forget the end tag:
<p>This is a paragraph
<p>This is a paragraph
The example above works in most browsers, because the closing tag is considered optional.
Never rely on this. Many HTML elements will produce unexpected results and/or errors if you forget the end tag .

Empty HTML Elements

HTML elements with no content are called empty elements.
<br> is an empty element without a closing tag (the <br> tag defines a line break).
Tip: In XHTML, all elements must be closed. Adding a slash inside the start tag, like <br />, is the proper way of closing empty elements in XHTML (and XML).

HTML Tip: Use Lowercase Tags

HTML tags are not case sensitive: <P> means the same as <p>. Many web sites use uppercase HTML tags.

W3Schools use lowercase tags because the World Wide Web Consortium (W3C) recommends lowercase in HTML 4, and demands lowercase tags in XHTML.

HTML Basic



HTML Headings

HTML headings are defined with the <h1> to <h6> tags.

Example

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>



HTML Paragraphs

HTML paragraphs are defined with the <p> tag.

Example

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>





HTML Links

HTML links are defined with the <a> tag.

Example

<a href="http://tutorial4begginers.blogspot.in">This is a link</a>

Note: The link address is specified in the href attribute.
(You will learn about attributes in a later chapter of this tutorial).

HTML Images

HTML images are defined with the <img> tag.

Example

<img src="blog.jpg" width="104" height="142"> 


Note: The filename and the size of the image are provided as attributes.

HTML Editors

Writing HTML Using Notepad or TextEdit

HTML can be edited by using a professional HTML editor like:
  • Adobe Dreamweaver
  • Microsoft Expression Web
  • CoffeeCup HTML Editor
However, for learning HTML we recommend a text editor like Notepad (PC) or TextEdit (Mac). We believe using a simple text editor is a good way to learn HTML.
Follow the 4 steps below to create your first web page with Notepad.

Step 1: Start Notepad

To start Notepad go to:
Start
    All Programs
        Accessories
            Notepad


Step 2: Edit Your HTML with Notepad

Type your HTML code into your Notepad:
Notepad

Step 3: Save Your HTML

Select Save as.. in Notepad's file menu.
When you save an HTML file, you can use either the .htm or the .html file extension. There is no difference, it is entirely up to you.
Save the file in a folder that is easy to remember, like w3schools.

Step 4: Run the HTML in Your Browser

Start your web browser and open your html file from the File, Open menu, or just browse the folder and double-click your HTML file.
The result should look much like this:

View in Browser

HTML Introduction


What is HTML?

HTML is a language for describing web pages.
  • HTML stands for Hyper Text Markup Language
  • HTML is a markup language
  • A markup language is a set of markup tags
  • The tags describe document content
  • HTML documents contain HTML tags and plain text
  • HTML documents are also called web pages

HTML Tags

HTML markup tags are usually called HTML tags
  • HTML tags are keywords (tag names) surrounded by angle brackets like <html>
  • HTML tags normally come in pairs like <b> and </b>
  • The first tag in a pair is the start tag, the second tag is the end tag
  • The end tag is written like the start tag, with a forward slash before the tag name
  • Start and end tags are also called opening tags and closing tags
<tagname>content</tagname>



HTML Elements

"HTML tags" and "HTML elements" are often used to describe the same thing.
But strictly speaking, an HTML element is everything between the start tag and the end tag, including the tags:
HTML Element:
<p>This is a paragraph.</p>



Web Browsers

The purpose of a web browser (such as Google Chrome, Internet Explorer, Firefox, Safari) is to read HTML documents and display them as web pages.
The browser does not display the HTML tags, but uses the tags to determine how the content of the HTML page is to be presented/displayed to the user:
Browser

HTML Page Structure

Below is a visualization of an HTML page structure:
<html>
<body>
<h1>This a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>



HTML Versions

Since the early days of the web, there have been many versions of HTML:
Version Year
HTML 1991
HTML+ 1993
HTML 2.0 1995
HTML 3.2 1997
HTML 4.01 1999
XHTML 1.0 2000
HTML5 2012
XHTML5 2013



The <!DOCTYPE> Declaration

The <!DOCTYPE> declaration helps the browser to display a web page correctly.
There are many different documents on the web, and a browser can only display an HTML page 100% correctly if it knows the HTML type and version used.

Common Declarations

HTML5

<!DOCTYPE html>

HTML 4.01

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

XHTML 1.0


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

SQL SERVER

 1) General Questions on SQL SERVER



What is RDBMS?


Relational Data Base Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships may be created and maintained across and among the data and tables. In a relational database, relationships between data items are expressed by means of tables. Interdependencies among these tables are expressed by data values rather than by pointers. This allows a high degree of data independence. An RDBMS has the capability to recombine the data items from different files, providing powerful tools for data usage. (Read more here)
What are the Properties of the Relational Tables?

Relational tables have the following six properties:

    Values are atomic.
    Column values are of the same kind.
    Each row is unique.
    The sequence of columns is insignificant.
    The sequence of rows is insignificant.
    Each column must have a unique name.

What is Normalization?


Database normalization is a data design and organization process applied to data structures based on rules that help building relational databases. In relational database design, the process of organizing data to minimize redundancy is called normalization. Normalization usually involves dividing a database into two or more tables and defining relationships between the tables. The objective is to isolate data so that additions, deletions, and modifications of a field can be made in just one table and then propagated through the rest of the database via the defined relationships.
What is De-normalization?

De-normalization is the process of attempting to optimize the performance of a database by adding redundant data. It is sometimes necessary because current DBMSs implement the relational model poorly. A true relational DBMS would allow for a fully normalized database at the logical level, while providing physical storage of data that is tuned for high performance. De-normalization is a technique to move from higher to lower normal forms of database modeling in order to speed up database access.
How is ACID property related to Database?

ACID (an acronym for Atomicity Consistency Isolation Durability) is a concept that Database Professionals generally look for while evaluating databases and application architectures. For a reliable database, all this four attributes should be achieved.

Atomicity is an all-or-none proposition.

Consistency guarantees that a transaction never leaves your database in a half-finished state.

Isolation keeps transactions separated from each other until they are finished.

Durability guarantees that the database will keep track of pending changes in such a way that the server can recover from an abnormal termination. (Read more here)
What are the Different Normalization Forms?

1NF: Eliminate Repeating Groups

Make a separate table for each set of related attributes, and give each table a primary key. Each field contains at most one value from its attribute domain.

2NF: Eliminate Redundant Data

If an attribute depends on only part of a multi-valued key, then remove it to a separate table.

3NF: Eliminate Columns Not Dependent On Key

If attributes do not contribute to a description of the key, then remove them to a separate table. All attributes must be directly dependent on the primary key. (Read more here)

BCNF: Boyce-Codd Normal Form

If there are non-trivial dependencies between candidate key attributes, then separate them out into distinct tables.

4NF: Isolate Independent Multiple Relationships

No table may contain two or more 1:n or n:m relationships that are not directly related.

5NF: Isolate Semantically Related Multiple Relationships

There may be practical constrains on information that justify separating logically related many-to-many relationships.

ONF: Optimal Normal Form

A model limited to only simple (elemental) facts, as expressed in Object Role Model notation.

DKNF: Domain-Key Normal Form

A model free from all modification anomalies is said to be in DKNF.

Remember, these normalization guidelines are cumulative. For a database to be in 3NF, it must first fulfill all the criteria of a 2NF and 1NF database.

HCL Technologies Limited Walk-in Interviews For Freshers 2013 B.Tech, BCA, B.Sc On 21st August 2013

                                  Hottest Jobs !!!!!

HCL Technologies Limited Walk-in Interviews For Freshers 2013 B.Tech, BCA, B.Sc On 21st August 2013

 







Company Name : HCL Technologies Limited

Company Website : www.hcltech.com

Job Designation or Job Role : Fresher

Candidate Educational Qualification : B.Tech (CS/IT/EEE/ECE/E&I) , BCA / B.Sc. - (CS / IT / Mathematics / Statistics) - 2013 Pass Out Only

Candidate Experience Required : Freshers 2013

CTC or Package Offered : Best In Market

Working Location : Noida

Functional Area : IT-Hardware & Networking
Area of Working : IT-Hardware & Networking

Desired Candidate Profile :


        B.Tech (CS/IT/EEE/ECE/E&I) , BCA/ B.Sc. - (CS / IT / Mathematics / Statistics)
        60% throughout in academics.
        No current backlogs.
        2013 Pass Out only
        Excellent communication and conversation skills (Verbal and Written)
        Good documentation skills
        Good working knowledge of MS OFFICE
        Should have good customer handling skills
        Able to handle unforeseen situations
        High level of acceptance
        Can drive HCLs value and its methodology

    Technical Skills / Experience/Certification requirements :


        Ability to successfully provide hardware/software/network problem analysis and resolution support over the phone
        Personal dedication to providing high quality, superior service at all times. Ability to finish what is started is a must.
        Ability to integrate as a cross-functional, team player in a fast-paced environment where all information is shared.
        Ability to learn new information quickly and the willingness to do so at all times.
        Ability to work flexible hours from time to time to cover for other staff
        Should have understanding of IT Environment and ready to learn new processes and technologies
        Customer Focus
        Teamwork
        Technical Expertise.
        Interpersonal Effectiveness.
        Concern for Order and Quality
        Knowledge of basic Networking and other technologies
        Fundamental ITIL knowledge of V2 or V3 especially on Service Desk, Incident, Problem, and Change Management preferred
        Good to have basic understanding of Client Server Architecture, OS
        CCNA/MCP/MSCAPreferred

Job Description :


        Provide hardware / software / network problem diagnosis resolutionviaemail/chat/ telephone/web, Monitoring & Management of various IT Infrastructure components for customers end users.
        Identify, evaluate and prioritize customer problems and escalations.
        Respond to and diagnose, problems through discussions with users, including problem recognition, logs, research, isolation, resolution, and follow-up steps. Provide level 1 support and perform other activities based adhering on SOPs/work instructions.
        Responsible for activities relating to the evaluation, analysis, setup of PC-based software products (e.g.word processors, spreadsheets, presentation graphics, database management systems, electronic mail, and communications), client software &basic network connectivity problems within SLA (If any)
        Use the Incident Management System to document information and manage problems and work requests and their respective resolutions and circumvention's.
        Analyze, acknowledge & record each & every alert in the monitoring tools & handle the alerts as per their impact.
        Administer and provide User account provisioning & activities.
        Assign work orders / incidents to appropriate support teams and follow up until closure.
        Route problems to internal 2nd and 3rd level IT support staff.
        Escalate complex problem to appropriate support specialists.
        Routine maintenance updates with other IT staff and business units.
        Initiates,Coordinate and manage relationships with vendors and support staff that provide hardware / software / network problem resolution.
        Participate in on-going training and departmental development.
        Ready to work in rotational shifts, 24 x 7 shifts to provide monitoring of IT infrastructure support

Walk-in Interviews On 21st August 2013


Time : 9am - 12 Noon Registration. (after 12 Noon no registration will be entertained)


Venue :

BP Poddar Institute of Management & Technology,
137, Poddar Vihar, VIP Rd,
Biman Nagar, Kaikhali,
Kolkata, WB - 700052

Source : Click Here

Company Profile :


    HCL Technologies is a leading global IT services company, working with clients in the areas that impact and redefine the core of their businesses. Since its inception into the global landscape after its IPO in 1999, HCL focuses on 'transformational outsourcing', underlined by innovation and value creation, and offers integrated portfolio of services including software-led IT solutions, remote infrastructure management, engineering and R&D services and BPO.
    HCL leverages its extensive global offshore infrastructure and network of offices in 26 countries to provide holistic, multi-service delivery in key industry verticals including Financial Services, Manufacturing, Consumer Services, Public Services and Healthcare. HCL takes pride in its philosophy of 'Employees First, Customers Second' which empowers our 83,076 transformers to create a real value for the customers.

Cognizant Jobs Opening For Freshers/Experienced - BE,B.Tech - August 2013

                                    Hottest Jobs !!!!!

Cognizant Jobs Opening For Freshers/Experienced - BE,B.Tech - August 2013 

 

Key Responsibilities:

* Involved in coding, testing, debugging

* Responsible for delivery of assigned work, under a module lead or team lead supervision.
* Needs to understand technology and quality processes within Cognizant

Job Requirement:

* Working knowledge of the technical platforms of the project

* Applies design specifications techniques under supervision of the module leader / Project Lead


Experience: 0 - 4 Yrs

Qualification: BE,B.Tech

Location:  Across India

Position: Associate


How To Apply:

Apply Here

 

EMC Corporation Hiring Associate Storage Operations Specialist

                                   Hottest Jobs !!!!!

EMC Corporation hiring "Associate Storage Operations Specialist" for freshers B.E/B.Tech graduates,Bangalore-August 2013

 

 



EMC Corporation-Associate

JOB POSTED DATE: 15 August 2013

COMPANY NAME:  EMC Corporation

COMPANY-PROFILE:  
 
                          EMC Corporation , a Financial Times Global 500, Fortune 500 and S&P 500 company, develops, delivers and supports information infrastructure and virtual infrastructure hardware, software, and services. EMC is headquartered in Hopkinton, Massachusetts, USA.Former Intel executive Richard Egan and his college roommate, Roger Marino, founded EMC in 1979. The company’s name, EMC, stands for the initials of the founders, and an unknown third individual who has remained nameless. "EMC Corporation" is the company's full name. The company's logo also incorporates exponent 2, a reference to Albert Einstein's mass–energy equivalence theory.

WEBSITE DETAILS: http://www.emc.com

JOB FIELD :  IT/Software Industry

JOB ROLE/PROFILE: Associate Storage Operations Specialist

JOB REQ ID:  107768BR

OFFERED SALARY: Best in Industry

JOB-LOCATION:  Bangalore

REQUIRED QUALIFICATION: B.E/B.Tech

EXPERIENCE REQUIRED: Freshers(Entry Level)

CANDIDATE PROFILE:

    Candidates should possess BE/ B.Tech – CS, IT, IS, EEE& ECE - 2012 alone will be considered.
    Candidates should have aggregate 60% and above in UG
    Freshers who has knowledge in storage technologies preferred.

APPLY-MODE: online

HOW TO APPLY:

               Interested and eligible candidates apply this position in online as soon as possible.

To Apply: Click Here

Fresher Jobs of Software Developer in Zibrasoft Technologies

                                    Hottest Jobs !!!!!

Zibrasoft Technologies Hiring Freshers As "Software Developer" Noida August 2013

 


Company Name : Zibrasoft Technologies

Company Website : www.zibrasoft.com

Job Designation or Job Role : Fresher / Intern (android-iphone-ipad-blackberry-php-java-dotnet-cms)

Candidate Educational Qualification : Any Graduate
Candidate Experience Required : 0 to 1 year

CTC or Package Offered : Best in Market

Working Location: Noida

Functional Area : Application Programming,Maintenance
Area of Working : IT-Software/ Software Services

Desired Candidate Profile :


        Candidate should have Technical Background.
        Strong written, verbal, and interpersonal communication skills.
        Full Time Graduates (in any discipline) / Post Graduates.
        Must possess excellent analytical and logical skills.


Job Description :


        Zibrasoft is looking for Junior Software Developer / Internship Candidates / Software Developer Trainee forinternal client projects. Live Project based Practical Work. Technologies HTML, HTML5, PHP , Mobile Apps Developer,Photoshop, iOS, Android.


Apply Now :Click Here


Company Profile :

    Zibrasoft Technologies is a highly professional Mobile and web software development company based in India having competency in providing software development services to clients using using latest Mobile and Web technologies like iOS, Andriod,etc

Zibrasoft Technologies Hiring Freshers As "Software Developer" Noida August 2013

Fresher Jobs in Relience Communications

                                Hottest Jobs !!!!!

 Reliance Communications Hiring "Engineer- Mobile Station" BE, B.Tech Navi Mumbai August 2013

 

 

 

 Company Name : Reliance Communications

Company Website : www.relianceada.com
Job Designation or Job Role : Engineer- Mobile Station

Candidate Educational Qualification : B.Tech/B.E. - Computers, Electrical, Electronics/Telecommunication

Candidate Experience Required : 0 to 2 years

CTC or Package Offered : Best in Market

Working Location: Navi Mumbai

Functional Area : IT Software - QA & Testing

Area of Working : Telcom / ISP

Desired Candidate Profile :

        Knowledge, Skills and Attributes
        Expertise on GSM and 3G technology.
        Excellent technical understanding of GSM and 3G network archietecture and call flows.
        Familiaar with 3GPP standards
        Active personal contribution to the team activities.
        Good Communication and presentation skills.


Job Description :

        To be able to validate products of GSM and 3G Technology offered for CAT/UAT.
        Working with team to test customised products. (Including Handsets, Smartphones, SIM/USIM, Data Cards, Routers etc.)
        Test Execution. Solving and troubleshooting problems occurred during testing and generation of test reports.
        Performing Quality inspection testing whenever required.
        Implementing/writing test plans with reference to relevant standards for device testing.
        Creating Generic Requirments document.
        Providing technical support for resolving issues.
        Field issue simulation and analysis.
        Conceptualization of new ideas on testing.
Apply Now : Click Here

Company Profile :

    Reliance BPO is part reliance group, having more than 15000 employees on board operating from 2 locations ie, Mumbai and Chennai providing customer care services in the areas of Telecom, Banking and Financial services, Media & Entertainment and Utilities.Reliance BPO, a premium business process outsourcing services provider one of the largest business houses of India. At Reliance BPO, we truly believe that our employees are our greatest asset. People with diverse backgrounds and work experiences flourish at Reliance BPO because we are all united by something unique: a passion for excellence, managing business processes for many of Indias leading brands and a commitment to work as a team.

Freshers Jobs in IBM For B.E./B.Tech./MBA/MCA For 2013 Batch

                                   Hottest Jobs !!!!!

IBM Pooled Campus Drive for 2013 Batch Freshers - B.E/B.Tech/MBA/MCA – 2013 Batch On 17th August 2013 

 


 Job Description:

* Providing Voice support to IBM Internal End Users and External Commercial Account End Users across North America, EMEA & AP.

* The job will require you to handle inbound calls / emails / chats regarding technical issues for end users.
   
* Remote Infrastructure support delivery
   
* Resolve routine customer problem
   
* Ability to Identify Opportunity & Implement Process Improvements
   
* Ability to meet a set of defined account agent productivity measurements.
   
* Has technical experience and skills in the areas of problem determination, creativity and analysis.


Experience: Fresher

Qualification: B.E/B.Tech/MBA/MCA

Job location: Hyderabad

Desired Skills:

* Understanding of operating systems, Windows 2000/NT/XP configuration options and troubleshooting
   
* Browser Support - Internet Explorer
   
* Strong computer skills required
   
* Proficient in network connectivity troubleshooting, TCP/IP, Dial-up, Token Ring, Ethernet, LAN/WAN
   
* Excellent oral and written communication skills.
   
* Excellent customer service orientation
   
* Neutral accent

Date of Drive:
17th Aug 2013

Time: 9 AM

Venue:


St.Peters Engineering College

Maisammaguda, Opp. A.P. Forest Academy,

Dhoolapally (P.O.), Medchal Mandal,

R.R. District, Hyderabad - 500 014.

Fresher Jobs,Deloitte Hiring Automated Testing Engineer

                                        Hottest Jobs !!!

Deloitte Hiring "Automated Testing Engineer" for freshers any graduates,Gurgaon-August 2013

                          Deloitte-Automated Testing Engineer

 

 


JOB POSTED DATE: 14 August  2013

COMPANY NAME:    Deloitte

COMPANY-PROFILE:  

                     Deloitte Touche Tohmatsu Limited  commonly referred to as Deloitte, is one of the Big Four professional services firms along with PricewaterhouseCoopers (PwC), Ernst & Young, and KPMG.Deloitte is the second largest professional services network in the world by revenue and has 182,000 employees in more than 150 countries providing audit, tax, consulting, enterprise risk and financial advisory services.[2] In FY 2011, Deloitte earned a record $28.8 billion USD in revenues, ranking second behind PwC's record $29.2 billion.

WEBSITE DETAILS:  http://www.deloitte.com

JOB FIELD :  Technical/Consulting/Others

JOB ROLE/PROFILE: Automated Testing Engineer

OFFERED SALARY: Best in Industry

JOB-LOCATION:  Gurgaon

LAST DATE: ASAP
 
REQUIRED QUALIFICATION: Any Degree

EXPERIENCE REQUIRED: Fresher(Entry-Level)

CANDIDATE PROFILE:

    Candidates should be any Graduate from a recognized university
    Conversant with different testing tools
    Good communication skills
    Knowledge in different type of testing
    Specialization in any testing category - like automated, performance, Vulnerability/ penetration etc.
    Functional domain of Finance, Retail or Manufacturing

APPLY-MODE: Online

HOW TO APPLY:
                               Interested and eligible candidates apply this position in online as soon as possible(before the link expire).


To Apply: Click here

Freshers Jobs in TCS for 2012,2013 Passouts Students

TCS Walk-in Drive For 2012 & 2013 Pass-outs Freshers On 17th Aug 2013 @ Chennai 

 

 

 

 Eligibility Criteria:


* 2012 & 2013 Passouts with less than 3 months experience B.Com/ B.B.A/ B.B.M/ BA/ BMS/B. Pharm / BSc Except Statistics / Computer Science / IT & BA Except Economics
 
* B.E, B.Tech, MBA,M.E, Msc,MCA,M.Com,M.A,Bsc IT,MscIT & M.Tech are not eligible
 
* Should have Good Communication skill.
 
* Ready to work in any shifts.

* Minimum 15yrs of regular education.
 
* Should not have any arrears/Back logs

Experience: Fresher


Qualification: B.Com/ B.B.A/ B.B.M/ BA/ BMS/B. Pharm / BSc / BA

Job location: Chennai

Job Role: Team Member

Note:


* It is mandatory to mention (Vinod Rayan-HR) name on top of the resume while coming for the interview.

* Those who are interested can also refer your friends.

* Documents to be carried:- Resume with original photo ID proof and a copy of this mail.

Walk In Details:


Walk In Date: 17th Aug 2013

Walk In Time:  10 AM - 1 PM

Venue:
 TCS

No.21, Ambattur Industrial Estate,

Ambattur, Chennai 58.

LandMark near Prince Info Park.

Contact Person: Vinod rayan

Google HTML File

Google HTML File


google-site-verification: googleb7087e56569f1d39.html

Wednesday 14 August 2013

Beginning of PHP,PHP2,PHP3,PHP4,PHP5

THE BEGINNING OF 

PHP

It was eight years ago, when Rasmus Lerdorf first started developing PHP/FI.
He could not have imagined that his creation would eventually lead to the
development of PHP as we know it today, which is being used by millions of
people. The first version of “PHP/FI,” called Personal Homepage Tools/ Form Interpreter,
was a collection of Perl scripts in 1995. One of the basic features was a Perl-like language for handling form submissions, but it lacked many common useful language features, such as for loops.


PHP/FI 2

A rewrite came with PHP/FI 2

in 1997, but at that time the development was
almost solely handled by Rasmus. After its release in November of that year,
Andi Gutmans and Zeev Suraski bumped into PHP/FI while looking for a language
to develop an e-commerce solution as a university project. They discovered
that PHP/FI was not quite as powerful as it seemed, and its language was
lacking many common features. One of the most interesting aspects included
the way
while
loops were implemented. The hand-crafted lexical scanner would
go through the script and when it hit the while keyword it would remember its
position in the file. At the end of the loop, the file pointer sought back to the
saved position, and the whole loop was reread and re-executed.

PHP 3

Zeev and Andi decided to completely rewrite the scripting language. They then
teamed up with Rasmus to release PHP 3, and along also came a new name: PHP:
Hypertext Pre-processor, to emphasize that PHP was a different product and not
only suitable for personal use. Zeev and Andi had also designed and implemented
a new extension API. This new API made it possible to easily support additional
extensions for performing tasks such as accessing databases, spell checkers and
other technologies, which attracted many developers who were not part of the
“core” group to join and contribute to the PHP project. At the time of PHP 3’s
release in June 1998, the estimated PHP installed base consisted of about 50,000
domains. PHP 3 sparked the beginning of PHP’s real breakthrough, and was the
first version to have an installed base of more than one million domains.

PHP 4

In late 1998, Zeev and Andi looked back at their work in PHP 3 and felt they
could have written the scripting language even better, so they started yet
another rewrite. While PHP 3 still continuously parsed the scripts while executing
them, PHP 4 came with a new paradigm of “compile first, execute later.” The
compilation step does not compile PHP scripts into machine code; it instead
compiles them into byte code, which is then executed by the
Zend Engine
(Zend stands for Zeev & Andi), the new heart of PHP 4. Because of this new
way of executing scripts, the performance of PHP 4 was much better than that
of PHP 3, with only a small amount of backward compatibility breakage
Among other improvements was an improved extension API for better run-time
performance, a web server abstraction layer allowing PHP 4 to run on most popular
web servers, and lots more. PHP 4 was officially released on May 22, 2002,
and today its installed base has surpassed 15 million domains.

In PHP 3, the minor version number (the middle digit) was never used,
and all versions were numbered as 3.0.x. This changed in PHP 4, and the minor
version number was used to denote important changes in the language. The first
important change came in PHP 4.1.0,which introduced super globals
such as
$_GET
and
$_POST
. Super globals can be accessed from within functions without
having to use the
global
keyword. This feature was added in order to allow the
register_globals
INI option to be turned off.
register_globals
is a feature in
PHP which automatically converts input variables like
"?foo=bar" in http://
php.net/?foo=bar
to a PHP variable called
$foo
. Because many people do not
check input variables properly, many applications had security holes, which
made it quite easy to circumvent security and authentication code.
With the new super globals in place, on April 22, 2002, PHP 4.2.0 was
released with the
register_globals
turned off by default. PHP 4.3.0, the last
significant PHP 4 version, was released on December 27, 2002. This version
introduced the Command Line Interface (CLI), a revamped file and network I/O layer (called
streams), and a bundled GD library. Although most of those additions have no real effect on end users, the major version was bumped due to the major changes in PHP’s core.

PHP 5

Soon after, the demand for more common object-oriented features increased
immensely, and Andi came up with the idea of rewriting the objected-oriented
part of the Zend Engine. Zeev and Andi wrote the “Zend Engine II: Feature
Overview and Design” document
6
and jump started heated discussions about
PHP’s future. Although the basic language has stayed the same, many features
were added, dropped, and changed by the time PHP 5 matured. For
example, namespaces and multiple inheritance, which were mentioned in the
original document, never made it into PHP 5. Multiple inheritance was
dropped in favor of interfaces, and namespaces were dropped completely. You
can find a full list of new features in Chapter, “What Is New in PHP 5?”
PHP 5 is expected to maintain and even increase PHP’s leadership in
the web development market. Not only does it revolutionizes PHP’s object-oriented
support but it also contains many new features which make it the
ultimate web development platform. The rewritten XML functionality in
PHP 5 puts it on par with other web technologies in some areas and overtakes
them in others, especially due to the new Simple XML extension which
makes it ridiculously easy to manipulate XML documents. In addition, the
new SOAP, MySQLi, and variety of other extensions are significant milestones
in PHP’s support for additional technologies.

Server-Side Programming

Server-Side Programming


To understand why ASP.NET was created, it helps to understand the problems of early web
development technologies. With the original CGI standard, for example, the web server must
launch a completely separate instance of the application for each web request. If the website
is popular, the web server struggles under the weight of hundreds of separate copies of the
application, eventually becoming a victim of its own success. Furthermore, technologies such
as CGI provide a bare-bones programming environment. If you want higher-level features, like
the ability to authenticate users, store personalized information, or display records you’ve
retrieved from a database, you need to write pages of code from scratch. Building a web application
this way is tedious and error-prone.
To counter these problems, Microsoft created higher-level development platforms, such
as ASP and ASP.NET. Both of these technologies allow developers to program dynamic web
pages without worrying about the low-level implementation details. For that reason, both
platforms have been incredibly successful.
The original ASP platform garnered a huge audience of nearly one million developers,
becoming far more popular than even Microsoft anticipated. It wasn’t long before it was being
wedged into all sorts of unusual places, including mission-critical business applications and
highly trafficked e-commerce sites. Because ASP wasn’t designed with these uses in mind, performance,
security, and configuration problems soon appeared.
That’s where ASP.NET comes into the picture. ASP.NET was developed as an industrial strength
web application framework that could address the limitations of ASP. Compared to
classic ASP, ASP.NET offers better performance, better design tools, and a rich set of ready made
features. ASP.NET was wildly popular from the moment it was released—in fact, it was
put to work in dozens of large-scale commercial websites while still in beta form.

HTML,HTML Forms

HTML and HTML Forms

It would be difficult to describe early websites as web applications. Instead, the first generation
of websites often looked more like brochures, consisting mostly of fixed HTML pages that
needed to be updated by hand.
A basic HTML page is a little like a word-processing document—it contains formatted
content that can be displayed on your computer, but it doesn’t actually do anything. The
3
C H A P T E R 1
following example shows HTML at its simplest, with a document that contains a heading and
single line of text:
<html>
<head>
<title>Sample Web Page</title>
</head>
<body>
<h1>Sample Web Page Heading</h1>
<p>This is a sample web page.</p>
</body>
</html>
An HTML document has two types of content: the text and the elements (or tags) that tell
the browser how to format it. The elements are easily recognizable, because they are designated
with angled brackets (< >). HTML defines elements for different levels of headings,
paragraphs, hyperlinks, italic and bold formatting, horizontal lines, and so on. For example,
<h1>Some Text</h1> uses the <h1> element. This element tells the browser to display Some
Text in the Heading 1 style, which uses a large, bold font. Similarly, <p>This is a sample web
page.</p> creates a paragraph with one line of text. The <head> element groups the header
information together, including the title that appears in the browser window, while the
<body> element groups together the actual document content that’s displayed in the browser
window.
Figure 1-1 shows this simple HTML page in a browser. Right now, this is just a fixed file
(named sample_web_page_heading.htm) that contains HTML content. It has no interactivity,
doesn’t require a web server, and certainly can’t be considered a web application.
Figure 1-1. Ordinary HTML: the “brochure” site
4 CHAPTER 1 n THE .NET FRAMEWORK
nTip You don’t need to master HTML to program ASP.NET web pages, although it’s often useful. For a quick
introduction to HTML, refer to one of the excellent HTML tutorials on the Internet, such as www.w3schools.
com/html. You’ll also get a mini-introduction in Chapter 4.
HTML 2.0 introduced the first seed of web programming with a technology called HTML
forms. HTML forms expand HTML so that it includes not only formatting tags but also tags for
graphical widgets, or controls. These controls include common ingredients such as drop-down
lists, text boxes, and buttons. Here’s a sample web page created with HTML form controls:
<html>
<head>
<title>Sample Web Page</title>
</head>
<body>
<form>
<input type="checkbox" />
This is choice #1<br />
<input type="checkbox" />
This is choice #2<br /><br />
<input type="submit" value="Submit" />
</form>
</body>
</html>
In an HTML form, all controls are placed between the <form> and </form> tags. The
preceding example includes two check boxes (represented by the <input type="checkbox" />
element) and a button (represented by the <input type="submit" /> element). The <br /> element
adds a line break in between lines. In a browser, this page looks like Figure 1-2.
HTML forms allow web application developers to design standard input pages. When the
user clicks the Submit button on the page shown in Figure 1-2, all the data in the input controls
(in this case, the two check boxes) is patched together into one long string of text and
sent to the web server. On the server side, a custom application receives and processes the
data.
Amazingly enough, the controls that were created for HTML forms more than ten years
ago are still the basic foundation that you’ll use to build dynamic ASP.NET pages! The difference
is the type of application that runs on the server side. In the past, when the user clicked a
button on a form page, the information might have been e-mailed to a set account or sent to
an application on the server that used the challenging Common Gateway Interface (CGI) standard.
Today, you’ll work with the much more capable and elegant ASP.NET platform.

What is .NET Framework

Introduction of .NET Framework


Microsoft has a time-honored reputation for creating innovative technologies and wrapping
them in buzzwords that confuse everyone. The .NET Framework is the latest example—it’s
been described as a feeble Java clone, a meaningless marketing term, and an attempt to take
over the Internet with proprietary technology. But none of these descriptions is truly accurate.
.NET is actually a cluster of technologies—some revolutionary, some not—that are
designed to help developers build a variety of different types of applications. Developers can
use the .NET Framework to build rich Windows applications, long-running services, and even
command-line tools. Of course, if you’re reading this book you’re most interested in using
.NET to craft web applications. You’ll use a specific subset of the .NET Framework called
ASP.NET, and you’ll work with one of .NET’s core languages: C#.

What is ASP.NET

 What is ASP.NET

ASP.NET is Microsoft’s platform for developing web applications. Using ASP.NET, you can
create e-commerce shops, data-driven portal sites, and just about anything else you can find
on the Internet. Best of all, you don’t need to paste together a jumble of HTML and script code
in order to program the Web. Instead, you can create full-scale web applications using nothing
but code and a design tool such as Visual Studio 2008.
The cost of all this innovation is the learning curve. To master ASP.NET, you need to learn
how to use an advanced design tool (Visual Studio), a toolkit of objects (the .NET Framework),
and an object-oriented programming language (such as C# 2008). Taken together, these topics
provide more than enough to overwhelm any first-time web developer.
Beginning ASP.NET 3.5 in C# 2008 assumes you want to master ASP.NET, starting from the
basics. Using this book, you’ll build your knowledge until you understand the concepts, techniques,
and best practices for writing sophisticated web applications. The journey is long, but
it’s also satisfying. At the end of the day, you’ll find that ASP.NET allows you to tackle challenges
that are simply out of reach on many other platforms.