Sunteți pe pagina 1din 58

Introduction

This project is allows to the student of our class involve various ability to improve their skills with what is required to the job selection process and quickly way of knowing in various news media and also find the examination result about our institution announced to them .it also has the best feature of learning english in international level with Audio & Transcript in pdf . This Contain The way to announce the Job Requirements & Skill from the Government Employment Service .The way we do this is to set up a free initial consultation in order to determine your needs and requirements. Then it will give an estimate in a couple of days.

Organization profile:

.2. System specification:

Processor Motherboard Ram Hard disk drive Floppy drive Dvd/cd drive Monitor Keyboard Mouse Cabinet Hub Bandwidth :

intel pentium iv 1.8 ghz intel 915gvsr chipset board 4 GB 160 gb 1.44 mb sony 52 x dual layer drive 17 colour tft monitor multimedia keyboard 10keys logitech optical mouse atx iball. compex 16 lines. 100 mbps.

: : : : : : : : : :

2.2 SOFTWARE CONFIGURATION

1. Frontend 2. Coding language 3. Back end 4. Operating systems 5. Documentation :

html, javascript ,css, xml html, javascript ,css, xml web hosting,cloud computing windows 7 microsoft word 2007.

: : :

LANGUAGE SPECIFICATION:

HTML

markup

consists

of

several

key

components,

including elements (and their attributes), character-based data types, character references and entity references. Another important component is the document type declaration, which triggers standards mode rendering. (The text between <html> and </html> describes the web page, and the text between <body> and </body> is the visible page content. The markup text '<title>This is a title</title>' defines the browser page title.)This Document Type Declaration is for HTML5. If the <!DOCTYPE html> declaration is not included, various browsers will revert to "quirks mode" for rendering. HTML documents are composed entirely of HTML elements that, in their most general form have three components: a pair of tags, a "start tag" and "end tag"; some attributes within the start tag; and finally, any textual and graphical content between the start and end tags, perhaps including other nested elements. The HTML element is everything between and including the start and end tags. Each tag is enclosed in angle brackets.The general form of an HTML element is therefore: <tag attribute1="value1" attribute2="value2">content</tag>. Some HTML elements are defined as empty elements and take the form <tag attribute1="value1" attribute2="value2" >. Empty elements may enclose no content, for instance, the BR tag or the inline IMG tag. The name of an HTML element is the name used in the tags. Note that the end tag's name is preceded by a slash character, "/", and that in empty elements the end tag is neither required nor allowed. If attributes are not mentioned, default values are used in each case.

HTML Element:

Header of the HTML document:<head>...</head>. Usually the title should be included in the head, for example: .There are several types of markup elements used in HTM L :Structural markup describes the purpose of text For example, <h2>Golf</h2> establishes "Golf" as a second-level heading. Structural markup does not denote any specific rendering, but most web browsers have default styles for element formatting. Content may be

further

styled

using Cascading

Style

Sheets (CSS).Presentational

markup

describes the appearance of the text, regardless of its purpose .For example <b>boldface</b> indicates that visual output devices should render "boldface" in bold text, but gives little indication what devices that are unable to do this (such as aural devices that read the text aloud) should do. In the case of both<b>bold</b> and <i>italic</i>, there are other elements that may have equivalent visual renderings but which are more semantic in nature, such as <strong>strong text</strong> and <em> emphasised text</em> respectively. It is easier to see how an aural user agent should interpret the latter two elements. However, they are not equivalent to their presentational counterparts: it would be undesirable for a screen-reader to emphasize the name of a book, for instance, but on a screen such a name would be italicized. Most presentational markup elements have become deprecated under the HTML 4.0 specification in favor of using CSS for styling .Hypertext markup makes parts of a document into links to other documents. An anchor element creates a hyperlink in the document and its href attribute sets the link's target URL. For example the HTML markup, <a href="http://www.google.com/">Wikipedia</a>, will render the word

"Wikipedia" as a hyperlink. To render an image as a hyperlink, an 'img' element is inserted as content into the 'a' element. Like 'br', 'img' is an empty element with attributes but no content or closing tag.<a href="http://example.org"><img src="image.gif" alt="descriptive text" width="50" height="50" border="0"></a>.

HTML Attribute:

Most of the attributes of an element are name-value pairs, separated by "=" and written within the start tag of an element after the element's name. The value may be enclosed in single or double quotes, although values consisting of certain characters can be left unquoted in HTML (but not XHTML) .[44][45] Leaving attribute values unquoted is considered unsafe. In contrast with name-value pair attributes, there are some attributes that affect the element simply by their presence in the start tag of the element, like the ismap attribute for the img element. There are several common attributes that may appear in many elements :

The id attribute provides a document-wide unique identifier for an element. This is used to identify the element so that stylesheets can alter its presentational properties, and scripts may alter, animate or delete its contents or presentation. Appended to the URL of the page, it provides a globally unique identifier for the element, typically a sub-section of the page. For example, the ID "Attributes" in http://en.wikipedia.org/wiki/HTML#Attributes The class attribute provides a way of classifying similar elements. This can be used for semantic or presentation purposes. For example, an HTML document might semantically use the designation class="notation" to indicate that all elements with this class value are subordinate to the main text of the document. In presentation, such elements might be gathered together and presented as footnotes on a page instead of appearing in the place where they occur in the HTML source. Class attributes are used semantically in microformats. Multiple class values may be specified; for example class="notation important" puts the element into both the 'notation' and the 'important' classes.An author may use the style attribute to assign presentational properties to a particular element. It is considered better practice to use an element's id or class attributes to select the element from within a stylesheet, though sometimes this can be too cumbersome for a simple, specific, or ad hoc styling.The title attribute is used to attach subtextual explanation to an element. In most browsers this attribute is displayed as atooltip.The lang attribute identifies the natural language of the element's contents, which may be different from that of the rest of the document. For example, in an English-language document:This example displays as HTML; in most browsers, pointing the cursor at the abbreviation should display the title text "Hypertext Markup Language."Most elements also take the language-related attribute dir to specify text direction, such as with "rtl" for right-to-left text in, for

example, Arabic, Persian or Hebrew.

HTTP:

The World Wide Web is composed primarily of HTML documents transmitted from web servers to web browsers using the Hypertext Transfer

Protocol (HTTP). However, HTTP is used to serve images, sound, and other content, in addition to HTML. To allow the web browser to know how to handle each document it receives, other information is transmitted along with the document. This meta datausually and includes the character the MIME encoding

type (e.g. text/html or application/xhtml+xml)

(see Character encoding in HTML).In modern browsers, the MIME type that is sent with the HTML document may affect how the document is initially interpreted. A document sent with the XHTML MIME type is expected to be wellformed XML; syntax errors may cause the browser to fail to render it. The same document sent with the HTML MIME type might be displayed successfully, since some browsers are more lenient with HTML.The W3C recommendations state that XHTML 1.0 documents that follow guidelines set forth in the recommendation's Appendix C may be labeled with either MIME Type.[] XHTML 1.1 also states that XHTML 1.1 documents should[59] be labeled with either MIME type The CSS 1 specification was completed in 1996. Microsoft's Internet Explorer 3 was released in that year, featuring some limited support for CSS. But it was more than three years before any web browser achieved near-full implementation of the specification.Internet Explorer 5.0 for the Macintosh, shipped in March 2000, was the first browser to have full (better than 99 percent) CSS 1 support,[13] surpassing Opera, which had been the leader since its introduction of CSS support 15 months earlier. Other browsers followed soon afterwards, and many of them additionally implemented parts of CSS 2. As of August 2010, no (finished) browser has fully implemented CSS 2, with implementation levels varying (see Comparison of layout engines (CSS)).Even though early browsers such as Internet Explorer 3[11] and 4, and Netscape 4.x had support for CSS, it was typically incomplete and had many bugs that prevented their implementations from being usefully adopted. Variations: CSS has various levels and profiles. Each level of CSS builds upon the last, typically adding new features and typically denoted as CSS 1, CSS 2, CSS 3, and CSS 4. Profiles are typically a subset of one or more levels of CSS built for a particular device or user interface. Currently there are profiles for mobile devices,

printers, and television sets. Profiles should not be confused with media types, which were added in CSS 2. CSS 1 The first CSS specification to become an official W3C Recommendation is CSS level 1, published in December 1996. Among its capabilities are support for

properties such as typeface and emphasis Color of text, backgrounds, and other elements Text attributes such as spacing between words, letters, and lines of text Alignment of text, images, tables and other elements Margin, border, padding, and positioning for most elements Unique identification and generic classification of groups of attributes The W3C no longer maintains the CSS 1 Recommendation.

CSS 2 CSS level 2 specification was developed by the W3C and published as a recommendation in May 1998. A superset of CSS 1, CSS 2 includes a number of new capabilities like absolute, relative, and fixed positioning of elements and zindex, the concept of media types, support for aural style sheets and bidirectional text, and new font properties such as shadows The W3C no longer maintains the CSS 2 recommendation. CSS 2.1 CSS level 2 revision 1, often referred to as "CSS 2.1", fixes errors in CSS 2, removes poorly supported or not fully interoperable features and adds alreadyimplemented browser extensions to the specification. In order to comply with the W3C Process for standardizing technical specifications, CSS 2.1 went back and forth between Working Draft status and Candidate Recommendation status for many years. CSS 2.1 first became a Candidate Recommendation on February 25, 2004, but it was reverted to a Working Draft on June 13, 2005 for further review. It returned to Candidate Recommendation on 19 July 2007 and then updated twice in 2009. However, since changes and clarifications were made, it again went back to Last Call Working Draft on 7 December 2010.

CSS 2.1 went to Proposed Recommendation on 12 April 2011. After being reviewed by the W3C Advisory Committee, it was finally published as a W3C Recommendation on 7 June 2011. CSS 3 CSS 3 is divided into several separate documents called "modules". Each module adds new capabilities or extends features defined in CSS 2, preserving backward compatibility. Work on CSS level 3 started around the time of publication of the original CSS 2 recommendation. The earliest CSS 3 drafts were published in June 1999. Due to the modularization, different modules have different stability and statuses. As of June 2012, there are over fifty CSS modules published from the CSS Working Group., and four of these have been published as

formal recommendations: 2012-06-19 : Media Queries 2011-09-29 : Namespaces 2011-09-29 : Selectors Level 3 2011-06-07 : Color Some modules (including Backgrounds and Borders and Multi-column

Layout among others) have Candidate Recommendation(CR) status and are considered moderately stable. At CR stage, implementations are advised to drop vendor prefixes. CSS4 There is no single, integrated CSS4 specification, since it is split into separate modules. However, there are "level 4" modules. Since CSS3 split the CSS language's definition into modules, the modules have been allowed to level independently. Most modules are level 3 - they build on things from CSS 2.1. A few level 4 modules exist (such as Image Values, Backgrounds & Borders, orSelectors), which build on the functionality of

a preceding level 3 module. Others define entirely new functionality, such as Flexbox. So, while there is no monolithic "CSS4" that will be worked on after "CSS3" is finished completely, the level 4 modules can collectively be referred to as "CSS4".

Browser support: Because not all browsers correctly parse CSS code, developed coding techniques known as CSS hacks can either filter specific browsers or target specific browsers (generally both are known as CSS filters). The former can be defined as CSS filtering hacks and the latter can be defined as CSS targeting hacks. Both can be used to hide or show parts of the CSS to different browsers. This is achieved either by exploiting CSS-handling quirks or bugs in the browser, or by taking advantage of lack of support for parts of the CSS specifications. Using CSS filters, some designers have gone as far as delivering different CSS to certain browsers to ensure designs render as expected. Because very early web browsers were either completely incapable of handling CSS, or rendered CSS very poorly, designers today often routinely use CSS filters that completely prevent these browsers from accessing any of the CSS. Internet Explorer support for CSS began with IE 3.0 and increased progressively with each version. By 2008, the first Beta of Internet Explorer 8offered support for CSS 2.1 in its best web standards mode. An example of a historically well-known CSS browser bug was the Internet Explorer box model bug, where box widths are interpreted incorrectly in several versions of the browser, resulting in blocks that are too narrow when viewed in Internet Explorer, but correct in standards-compliant browsers. The bug can be avoided in Internet Explorer 6 by using the correct doctype in (X)HTML documents. CSS hacks and CSS filters are used to compensate for bugs such as this, just one of hundreds of CSS bugs that have been documented in various versions of Netscape, Mozilla Firefox, Opera, and Internet Explorer

(including Internet Explorer 7). Even when the availability of CSS-capable browsers made CSS a viable technology, the adoption of CSS was still held back by designers' struggles with browsers' incorrect CSS implementation and patchy CSS support. Even today,

10

these problems continue to make the business of CSS design more complex and costly than it was intended to be, and cross-browser testing remains a necessity. Other reasons for the continuing non-adoption of CSS are: its perceived complexity, authors' lack of familiarity with CSS syntax and required techniques, poor support from authoring tools, the risks posed by inconsistency between browsers and the increased costs of testing Currently there is strong competition between the WebKit layout engine used in Apple Safari and Google in KDE's Konqueror browser Chrome, the similar KHTMLengine engine used used

and Mozilla's Gecko layout

in Firefox each of them is leading in different aspects of CSSAs of August 2009, Internet Explorer 8, Firefox 2 and 3 have reasonably complete levels of implementation of CSS 2.1. JavaScript :JavaScript (JS) is an interpreted computer programming language.[5] As part of web browsers, implementations allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed. It has also become common in server-side programming, game development and the creation of desktop applications. JavaScript is a prototype-based scripting language with dynamic typing and has first-class functions. Its syntax was influenced by C. JavaScript copies many names and naming conventions from Java, but the two languages are otherwise unrelated and have very different semantics. The key design principles within JavaScript are taken from the Selfand Scheme programming languages.[ It is a multi-paradigm language, supporting object-oriented imperative,

and functional programming styles.The application of JavaScript to uses outside of web pagesfor example, in PDFdocuments, site-specific browsers,and desktop widgetsis also significant. Newer and faster JavaScript VMs and frameworks built upon them (notably Node.js) have also increased the popularity of JavaScript for server-side web applications.JavaScript was formalized in the ECMAScript language standard and is primarily used as part of a web browser (client-side JavaScript). This enables programmatic access to computational objects within a host environmentJavaScript was originally developed by Brendan Eich. While

11

battling with Microsoft over the Internet, Netscape considered their client-server offering a distributed OS, running a portable version of Sun Microsystems' Java. Because Java was a competitor of C++ and aimed at professional programmers, Netscape also wanted a lightweight interpreted language that would complement Java by appealing to nonprofessional programmers, like Microsoft's Visual Basic (see JavaScript and Java). Although it was developed under the name Mocha, the language was officially called LiveScript when it first shipped in beta releases of Netscape Navigator 2.0 in September 1995, but it was renamed JavaScript. when it was deployed in the Netscape browser version 2.0B3. The change of name from LiveScript to JavaScript roughly coincided with Netscape adding support for Java technology in its Netscape Navigator web browser. The final choice of name caused confusion, giving the impression that the language was a spin-off of the Java programming language, and the choice has been characterized by many as a marketing ploy by Netscape to give JavaScript the cachet of what was then the hot new web programming language. Server-side JavaScript Netscape introduced an implementation of the language for server-side scripting (SSJS) with Netscape Enterprise Server, first released in December, 1994 (soon after releasing JavaScript for browsers). Since the mid2000s, there has been a proliferation of server-side

JavaScriptimplementations. Node.js is one recent notable example of server-side JavaScript being used in real-world applications. Adoption by Microsoft: JavaScript very quickly gained widespread success as a client-side scripting language for web pages. Microsoft introduced JavaScript support in its own web browser, Internet Explorer, in version 3.0, released in August 1996.[18][not in citation
given]

Microsoft's webserver,Internet Information Server, introduced support for

server-side scripting in JavaScript with release 3.0 (1996). Microsoft started to promote webpage scripting using the umbrella term Dynamic HTML. Microsoft's JavaScript implementation was later renamed JScript to avoid trademark issues. JScript added new date methods to fix theY2K-problematic methods in JavaScript, which were based on Java's java.util.Date class. Standardization:

12

In November 1996, Netscape announced that it had submitted JavaScript to Ecma International for consideration as an industry standard, and subsequent work resulted in the standardized version named ECMAScript. In June 1997, Ecma International published the first edition of the ECMA-262 specification. A year later, in June 1998, some modifications were made to adapt it to the ISO/IEC16262 standard, and the second edition was released. The third edition of ECMA262 (published on December 1999) is the version most browsers currently use. A fourth edition of the ECMAScript standard was not released and does not exist. Fifth edition of the Ecmascript standard was released in December 2009. The current edition of the ECMAScript standard is 5.1, released in June 2011. Later developments JavaScript has become one of the most popular programming languages on the web. Initially, however, many professional programmers denigrated the language because its target audience consisted of web authors and other such "amateurs", among other reasons.[21]The advent of Ajax returned JavaScript to the spotlight and brought more professional programming attention. The result was a proliferation of comprehensive frameworks and libraries, improved JavaScript programming practices, and increased usage of JavaScript outside of web browsers, as seen by the proliferation of server-side JavaScript platforms.In January 2009, the CommonJS project was founded with the goal of specifying a common standard library mainly for JavaScript development outside the browser. Trademark: Today, "JavaScript" is a trademark of Oracle Corporation.[23] It is used under license for technology invented and implemented by Netscape Communications and current entities such as the Mozilla Foundation. Features: The following features are common to all conforming ECMAScript

implementations, unless explicitly specified otherwise. Imperative and structured:-

13

JavaScript

supports

much

of

the structured

programming syntax etc.). One partial

from C (e.g., if statements, while loops, switch statements,

exception is scoping: C-style block scoping is not supported. Instead, JavaScript has function scoping (although, block scoping using the let keyword was added in JavaScript 1.7). Like C, JavaScript makes a distinction

between expressions andstatements. One syntactic difference from C is automatic semicolon insertion, in which the semicolons that terminate statements can be omitted. Dynamic typing: As in most scripting languages, types are associated with values, not

with variables. For example, a variable x could be bound to a number, then later rebound to a string. JavaScript supports various ways to test the type of an object, including duck typing. Object based: JavaScript is almost entirely object-based. JavaScript objects are associative arrays, augmented with prototypes (see below). Object property names are string keys. They support two equivalent syntaxes: dot notation (obj.x = 10) and bracket notation (obj['x'] = 10). Properties and their values can be added, changed, or deleted at run-time. Most properties of an object (and those on its prototype inheritance chain) can be enumerated using a for...in loop. JavaScript has a small number of built-in objects such as Function and Date. Run-time evaluation JavaScript includes an eval function that can execute statements provided as strings at run-time. Functional: First-class functions Functions are first-class; they are objects themselves. As such, they have properties and methods, such as .call() and.bind(). A nested function is a function defined within another function. It is created each time the outer function is invoked. In addition, each created function forms a lexical closure: the lexical scope of the outer function, including any constants, local variables and argument

14

values, becomes part of the internal state of each inner function object, even after execution of the outer function concludes.

2. System study
Student innovation website is although a much talked about possibility has still to come to fruition in its use. Although often used for conducting online surveys and the like, the technology is seldom used for interview where an unequivocal result is required. Such as local or international. however this defined the trend is slowly changing with many residents holding as well as student unions through inform statement in quickly at this kind of the web site..

2.1 Existing system


In earlier time students should improve their skills for do browsing in various type of website .And also find the solution of our criteria for refer the lot of book in the library with different sections are likely history, science ,story . accordingly the anticipation of the students and necessity of theirs . may not be possible at the internet. fack of the website in internet for job search egines.

2.1. Drawbacks
Sources are not involve in validation and verification Design process may not publish while debug at the connection Content of the website may not be displayed even the publish Administer account hack by hackers may possible

15

Visiting

website may not possible while error in the internet

connection. Displaying website by S E O may not possible by search engine criteria

2.2 Proposed system:


This project is allows to the students of my class to improve their skills are following INTERNATIONAL QUALITY OF COMMUINCATION HOW DO WE SPEAK AT INTERVIEW FOR TELL ABOUT OURSELF HOW DO WE BEHAVE AT HUMAN RESOURCE INTERVIEW COMUNICATE & SHARE THEIR INFORMATION IN GLOBAL LEVEL WE OFFER AFFORDABLE WEBSITE DESIGHN AND DEVELOPMENT SERVICES FOR STUDENTS AND ALSO VISITORS. In this kind of the website is allows students to improve their ability in online test is available to them in various topics are following: Non Verbal Reasoning Test Verbal Reasoning Test Logical Reasoning Test Verbal Ability Test Aptitude Test General Knowledge Test Data Interpretation Test

16

TECHNICAL EDUCATION: Database java -programming C-programming

2.2.1 features

Interactive and user friendly website High security from hackers Usability Fast-loading pages Descriptive link text Cross-platform/browser compatibility Screen Resolution Downloadable items to students

17

3. SYSTEM DESIGN AND DEVELOPMENT:

3.1 Form design:


Html & java script, css , xml provides a good environment and rich tools to design the required form in the system, some of the forms in the system are : Home page Skills and training Resume Interview About institute English News Contact us Job & recruitment

3.2 Input design


Input design is a part of overall system design. The main objective during the input design is as given below: To produce a cost-effective method of input. To achieve the highest possible level of accuracy. To ensure that the input is acceptable and understood by the user.

18

Input stages:
The main input stages can be listed as below: Data manipulation Data draft Data verification Data control Data transmission Data validation Data correction Input types: It is necessary to determine the various types of inputs. Inputs can be categorized as follows: External inputs, which are prime inputs for the system. Internal inputs, which are user communications with the system. Operational, which are computer departments communications to the system? Interactive, which are inputs entered during a dialogue.

3.3. Output design:


Outputs from computer systems are required primarily to communicate the results of processing to users. They are also used to provides a permanent copy of the results for later consultation. The various types of outputs in general are: External outputs, whose destination is outside the organization. Internal outputs whose destination is within organization and they are the Users main interface with the computer. Operational outputs whose use is purely within the computer department. Interface outputs, which involve the user in communicating directly with Output definition:

19

The outputs should be defined in terms of the following points: Type of the output Content of the output Format of the output Location of the output Size of output It is not always desirable to print or display data as it is held on a computer. It should be decided as which form of the output is the most suitable. For example Will decimal points need to be inserted Should leading zeros be suppressed.

Output media:
In the next stage it is to be decided that which medium is the most appropriate for the output. The main considerations when deciding about the output media are Keeping in view the above description the project is to have outputs mainly coming under the category of internal outputs. The main outputs desired according to the requirement specification are the outputs were needed to be generated as a hot copy and as well as queries to be viewed on the screen. Keeping in view these outputs, the format for the output is taken from the outputs, which are currently being obtained after manual processing. The standard printer is to be used as output media for hard copies.

20

3.4 Database design:


The database design is a must for any application developed especially more for the data storing at the cloud computing . over the internet while this kind of a data are stored and retrieved by one who administrative of the control.

3.5 System development 3.5.1 Module description


The project has the following main modules, these are main elements of this project .it helps to make high level performance in user manner Administration management User management Desin management Project change management Risk management Requirement managent Approved SEO management Output management

Administration management:
Administrator owns the overall determination of controls, setting of major objectives, and the identification of general purposes, guidance, leadership & control of the efforts of the groups towards some common goals. Admin has the privileges to update the nominees details like nominee code number, symbol, and place information. Admin also have the rights to restricts the users and give the access justices to the user to register

21

User management:
In this section define about the what are the processes are can done by the visiting this website. And also features of the website for the users .what are the kind of features are needed. .Design management: In this section designing the website to in which way towards the better understanding of the contents are representing the core level info to the users. and respectively following the universal way at this website.

Project change management:


In this project change management at this project for what are the possibilities of the changes are followed with never be constant of the content. change the domain name. change the keyword, query, to the page address. .change this template of the website to users anticipation .change the content from website coming decades

Risk management:
At a risk management content is define about the what are the error may face by users side and administrator of the website and also web server side due to this website in online

Approved SEO management :


This website approved by THE GOOGLE (SEO) .SEO is a big decision that can potentially improve our site and save time, but you can also risk damage to your site and reputation. Make sure to research the potential advantages as well as the damage that an irresponsible SEO can do to our site.

Output management :
It define about output of the website at search engine optimization result of the report page what indicated ,what should have at this kind of the website.

22

4. System testing and implementation

4.1System testing
System testing is the process of exercising software with the intent of finding and ultimately correcting errors. This fundamental philosophy does not change for web applications, because web-based systems and application reside on a network and interoperate with many different operating system, browsers, hardware platforms, and communication protocols; the search for errors represents a significant challenge for web application. The distributed nature of client/server environments, the performance issues associated with transaction processing, the potential presence of a number of different hardware platforms, the complexities of network communication, the need to serve multiple clients from a centralized database and the requirements imposed on the server all combine to make testing of client\server architectures. Testing issues

Types of testing 1. Unit testing 2. Integration testing 3. Validation testing 4. Output testing 5. User acceptance testing 6. System testing:-

1.Unit testing :

All modules were tested and individually as soon as they were completed were checked for there correct functionality. Unit testing is carried out by verify and

23

recover errors within the boundary of the smallest unit or a module. In this testing step, each module was found to be working satisfactory per the expected output of the module. In the package development, each module is tested separately after it has been completed and checked with valid data.

2.Integration testing :
The entire project was split into small programs; each of these single programs gives a frame as an output. These programs were tested individually; at last all these programs where combined together by creating another program where all these constructions were used. It give a lot of problem by not functioning in an integrated manner. The user interface testing is important since the user has to declare that the arrangements made in the frames are convenient and it is satisfied. When the frames are the test, the end user gave suggestion. Since they where much exposed to do the work manually.

3) validation testing:
At the culmination of the black box testing software is completely assembled as a package. Interfacing errors have been uncovered and corrected and a final series of test i.e., validation succeeds when the software functions in a manner that can be reasonably accepted by the customer.

4) output testing:
After performing the validation testing the next step is output testing of the proposed system. Since the system cannot be useful if it does not produce the required output. Asking the users about the format in which the system is required tests the output displayed or generated by the system under consideration. Here the output format is considered in two ways. One is on screen and another one is printed format. The output format on the screen is found to be corrected as the format was designed in the system phase according to the user needs. And for the

24

hardcopy the output comes according to the specifications requested by the user. Here the output testing does not result in any correction in the system.

5. User acceptance testing:


User acceptance testing of the system is the key factor the success of any system. The system under consideration is tested for user acceptance by constantly keeping in touch with prospective system at the time of development and making change whenever required. This is done with regard to the input screen design and output screen design.

6. system testing:
This is to verify that all the system elements have been properly integrated and perform allocated functions. Testing is executing a program to test the logic changes made in it and with intention of finding errors. Tests are also conducted to find discrepancies between system and its original objective, current specification and documents.

25

SYSTEM IMPLEMENTATION :
Implementation is the stage in the project where the theoretical design is turned into a working system. The most crucial stage is achieving a successful new system & giving the user confidence in that the new system will work efficiently & effectively in the implementation state. The stage consists of Testing the developed program with simple data. Detections and correction of error. Creating whether the system meets user requirements. Testing whether the system. Making necessary changes as desired by the user. Training user personnel. Implementation procedures The implementation phase is less creative than system design. A system project may be dropped at any time prior to implementation, although it becomes more difficult when it goes to the design phase. The final report to the implementation phase includes procedural flowcharts, record layouts, report layouts, and a workable plan for implementing the candidate system design into an operational one. Conversion is one aspect of implementation. The conversion portion of the implementation plan is finalized and approved. Files are converted. Parallel processing between the existing and the new system are logged on a special form. Assuming no problems, parallel processing is discontinued. Implementation results are documented for reference.

26

User training:
User training is designed to prepare the user for testing & convening the system. There are several ways to train the user. They are 1. 2. 3. user manual. help screens. training demonstration.

user manual: The summary of important functions about the system and software can be provided as a document to the user. help screens: This features now available in every software package, especially when it is used with a menu. The user selects the help option from the menu. The system accesses the necessary description or information for user reference. training demonstration: Another user training element is a training demonstration. Live demonstrations with personal contact are extremely effective for training users.

27

5. Conclusion and further enhancements


Conclusion The system is similar to a decision support system that provides useful transformation to the users of the student This information helps in making decisions regarding assignment of milestone in our class student life. The system required by the client based on their input in a faster manner.

Further enhancements:
The main scope of this project is to be able to show the usability of the web services and how it can be applied to an website. Additionally, there will be maintenance processes applied to improve the efficiency of web services. The system can be further enhanced by adding new features and facilities for internet. . In the future enhancement the website can be made and distributed to every users about data base account at here .make Large number of tera byte strorage will launching at their database for downloadable items to the users.

28

6. Bibliography

Books referred:

More asp.net (teach yourself) Guide to asp.net

- lowell mauer - peter norton,

Fundamentals of database system - ramez Complete guide to sql server - peter norton.

Web links referred: 5.2. Http://www.sourcecode.com 5.3. http://www.venkateswaran2010.webnode.com 5.4. Http://www.dbms.co.in 5.5. Http://a1code.com

29

6. Appendix I. Data flow diagram

Admin/User 7. Q

login input

Web site/ Cloud computin g

Validat ion

No

Yes

Web page upload Under the process of publishing at over internet

Yes Web site display

no error

30

II). System flow diagram:

Html file &CSS &JAVASRIPT ,

system

Web administeration

Edit website

home

skill

english

news

Institute

job

Publish web sites all pages

SEO

ALL SEARCH ENGINE RESULT OF REPORT AT WEBSITE

31

c) Entity Relational ship Diagram

Adminsterator web site

SEARCH ENGINE OPTMIZATISISM REPORTER

WEB SERVER

WEBSITE PROVIDER

SERVICE PROVIDER

USERS OF THE WEBSITE

32

Sample Code:
<! D O C T Y PE ht ml > <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=9,chrome=1"/> <meta charset="utf-8"/> <title>venkateswaran</title> <meta name="fb_admins_meta_tag" content="venkateswaran"/> <meta name="keywords" content="venkateswaran2010"/> <meta name="description" content=" Education is the most powerful weapon which you can use to change the world. Nelson Mandela Change, Powerful, Weapon It is the mark of an educated mind to be able to entertain a thought without accepting it. Aristotle liked venkateswaran2010"/> <link rel="shortcut icon" href="http://www.wix.com/favicon.ico" type="image/png"/> <link rel="canonical" href="http://venkeerthana2010.wix.com/venkateswaran2010"/> <meta http-equiv="X-Wix-Renderer-Server" content="apu2.aus"/> <meta http-equiv="X-Wix-Meta-Site-Id" content="12f73b1e-426f-942b-3e100d7b237354a0"/> <meta http-equiv="X-Wix-Application-Instance-Id" content="12f73b1e-40783a21-efd2-2a77ba06daaa"/> <meta http-equiv="X-Wix-Published-Version" content="214"/> <meta http-equiv="etag" content="fbf6bb65573d66b2aa11c53623e0a310"/> <meta property="og:title" content="venkateswaran"/> <meta property="og:type" content="article"/> <meta property="og:url" content="http://venkeerthana2010.wix.com/venkateswaran2010"/> <meta property="og:site_name" content="venkateswaran"/> <meta property="fb:admins" content="venkateswaran"/> <meta property="og:description" content=" Education is the most powerful weapon which you can use to change the world. Nelson Mandela Change, Powerful, Weapon It is the mark of an educated mind to be able to entertain a thought without accepting it. Aristotle liked venkateswaran2010"/> <meta name="SKYPE_TOOLBAR"

33

content="SKYPE_TOOLBAR_PARSER_COMPATIBLE"/> <meta id="wixMobileViewport" name="viewport" content="minimumscale=0.25, maximum-scale=1.2"/> <!-IMPORTANT! LOOKING FOR THIS SITES SEO CONTENT? This site's SEO content, such as meta tags and headers, is not here. This is because search engines, like Google, actually crawl the site's homepage via http://venkeerthana2010.wix.com/venkateswaran2010?_escaped_fragment_=. Internal pages, like resume, also have their own special search engine versions, for example: http://venkeerthana2010.wix.com/venkateswaran2010?_escaped_fragment_=r esume%2Fc1vs8 If youre looking for this sites SEO content, thats where you can view it. Want more information about Ajax page crawling? Read Google's explanation here: http://bit.ly/ajaxcrawling --> <!-- META DATA --> <script type="text/javascript"> var rendererModel = {"debugMode":"nodebug","previewMode":false,"serviceMappings":{"1":{"id InMetaSite":1,"idInApp":"12f73b1e-4078-3a21-efd22a77ba06daaa","applicationType":"HtmlWeb"}},"metaSiteId":"12f73b1e426f-942b-3e10-0d7b237354a0","premiumFeatures":[],"siteId":"12f73b1e4078-3a21-efd2-2a77ba06daaa","userId":"d1e33924-d1ff-4e9d-8b4e29bb0cd79e0a","published":true,"applicationType":"HtmlWeb","documentTy pe":"UGC","siteTitleSEO":"venkateswaran","clientSpecMap":{"2":{"type":"s itemembers","applicationId":2,"collectionType":"ApplyForMembership","sm collectionId":"130ae4d8-3611-721f-68f17b2b0bca8ecf"},"1":{"type":"appbuilder","applicationId":1,"appDefinitionId" :"3d590cbc-4907-4cc4-b0b1-ddf2c5edf297","instanceId":"130ae2ec-9844395d-1e7dd73fa09f4511"},"3":{"type":"ecommerce","applicationId":3,"appDefinitionId ":"55a88716-958a-4b91-b6666c1118abdee4","magentoStoreId":"14476854","packageName":"ecommerce", "widgets":{"30b4a102-7649-47d9-a60bbfd89dcca135":{"widgetId":"30b4a102-7649-47d9-a60bbfd89dcca135","defaultHeight":600,"defaultWidth":500},"adbeffec-c7df4908-acd0-cdd23155a817":{"widgetId":"adbeffec-c7df-4908-acd0cdd23155a817","defaultHeight":150,"defaultWidth":500},"f72a3898-85204b60-8cd6-24e4e20d483d":{"widgetId":"f72a3898-8520-4b60-8cd624e4e20d483d","defaultHeight":600,"defaultWidth":800},"c029b3fd-e8e444f1-b1f0-1f83e437d45c":{"widgetId":"c029b3fd-e8e4-44f1-b1f01f83e437d45c","defaultHeight":50,"defaultWidth":200},"cd54a28f-e3c94522-91c4-15e6dd5bc514":{"widgetId":"cd54a28f-e3c9-4522-91c4-

34

15e6dd5bc514","defaultHeight":50,"defaultWidth":200},"c614fb79-dbec4ac7-b9b0-419669fadecc":{"widgetId":"c614fb79-dbec-4ac7-b9b0419669fadecc","defaultHeight":50,"defaultWidth":200},"5fca0e8b-a33c4c18-b8eb-da50d7f31e4a":{"widgetId":"5fca0e8b-a33c-4c18-b8ebda50d7f31e4a","defaultHeight":150,"defaultWidth":800},"ae674d74-b30b47c3-aba0-0bd220e25a69":{"widgetId":"ae674d74-b30b-47c3-aba00bd220e25a69","defaultHeight":150,"defaultWidth":220}}},"4":{"type":"wix apps","applicationId":4,"appDefinitionId":"e4c4a4fb-673d-493a-9ef1661fa3823ad7","datastoreId":"f4e604f9-025a-45b6-a43befa217c15fc3","packageName":"menu","widgets":{"1660c5f3-b183-4e6ca873-5d6bbd918224":{"widgetId":"1660c5f3-b183-4e6c-a8735d6bbd918224","defaultHeight":100,"defaultWidth":400}}},"5":{"type":"pub lic","applicationId":5,"appDefinitionId":"12d5833e-f061-7cc8-5122e1d404f6c8ae","appDefinitionName":"Google AdSense","instance":"b5pKvFeKhDRcuY9W7XEiddXsp0cZIuywlGDhh861s nE.eyJpbnN0YW5jZUlkIjoiMTMwZjdhYTAtNjZiYy0wNjMyLWNkMDItO TVmZWU4MzIxMTlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE 0OjA3Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuM jA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished":true," sectionMobilePublished":false,"widgets":{"12d58350-abc8-568f-db5cbd1c19a2a71a":{"widgetUrl":"http://adsense.apps.wix.com/view","widgetId": "12d58350-abc8-568f-db5cbd1c19a2a71a","refreshOnWidthChange":true,"published":true,"mobilePublis hed":false}},"appRequirements":{"requireSiteMembers":false}},"6":{"type":" public","applicationId":6,"appDefinitionId":"12d828f7-a297-0bc0-a147e8976823817d","appDefinitionName":"Latest News","instance":"V0ZlMP0z2xN3X005XHJ94J8e7v_0DXC3Ac2UG1gaK9 0.eyJpbnN0YW5jZUlkIjoiMTMwZjdiMzgtMWY5Mi0zOTMxLWNkMDItO TVmZWU4MzIxMTlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE 0OjA3Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuM jA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished":true," sectionMobilePublished":false,"widgets":{"12d82a10-8e82-c7de-4ccde2e1a9bb726a":{"widgetUrl":"http://petprojektlabs.com/wix/newsfeed/widget ","widgetId":"12d82a10-8e82-c7de-4ccde2e1a9bb726a","refreshOnWidthChange":true,"published":true,"mobilePublis hed":false}},"appRequirements":{"requireSiteMembers":false}},"7":{"type":" public","applicationId":7,"appDefinitionId":"12cd25d6-9dad-cad9-636af9edbec13b41","appDefinitionName":"JOBS","instance":"Uqqoj5HUao0HPU ui46mcBSWPmyWLEfy5__eG3JFjGI.eyJpbnN0YW5jZUlkIjoiMTMxMDAyYTQtZDI2MS0wMjNjLWZmMjct ZGYyYzQxZmExMGIzIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE 0OjA3Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuM jA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionUrl":"http://www .emplada.com/wix","sectionMobileUrl":"http://www.emplada.com/wix","secti onPublished":true,"sectionMobilePublished":true,"sectionDefaultPage":"","se ctionRefreshOnWidthChange":true,"widgets":{"12cd2648-93ab-7d67-905e574eaea59673":{"widgetUrl":"http://www.emplada.com/wix","widgetId":"12 cd2648-93ab-7d67-905e574eaea59673","refreshOnWidthChange":true,"published":true,"mobilePublis hed":false}},"appRequirements":{"requireSiteMembers":false}},"8":{"type":"

35

public","applicationId":8,"appDefinitionId":"129acb44-2c8a-8314-fbc873d5b973a88f","appDefinitionName":"Google Event Calendar","instance":"_bXUQHhBP7oOOJh2TFABze1klKA2aeE3IJeqJKlaR Cs.eyJpbnN0YW5jZUlkIjoiMTMxMThhZmMtOTlhZS1hMDk2LTI5ZWEtM TUxYTJmODcyYzg5Iiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0 OjA3Ljc4Mi0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMj A0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished":true,"s ectionMobilePublished":false,"widgets":{"129acb44-2c60-3020-59890f5aea90b16f":{"widgetUrl":"http://calendar.apps.wix.com/production/calend ar/user","widgetId":"129acb44-2c60-3020-59890f5aea90b16f","refreshOnWidthChange":true,"published":true,"mobilePublis hed":false}},"appRequirements":{"requireSiteMembers":false}},"9":{"type":" public","applicationId":9,"appDefinitionId":"12c62b0d-d201-1791-1b0c0eefee42cac6","appDefinitionName":"Blogger Feed","instance":"451OuisWPXgSoQyq4gH3GyGCMLNv_QL8V5gZITS8Y ac.eyJpbnN0YW5jZUlkIjoiMTMxYWJmYWEtZjUzMC1iN2MwLTVmODct YzkxNDExMzQ0YjlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4OjE0 OjA3Ljc4Mi0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNzYuMj A0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionUrl":"http://blogg er.apps.wix.com/view","sectionPublished":true,"sectionMobilePublished":fals e,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true,"widgets":{" 12c62b32-774e-c0c5-88573c265a8d7166":{"widgetUrl":"http://blogger.wix.codeoasis.com/view","widg etId":"12c62b32-774e-c0c5-88573c265a8d7166","published":true,"mobilePublished":false}},"appRequirement s":{"requireSiteMembers":false}}},"runningExperiments":{"CorsContactFor m":"New","verifyPremium":"New","NoAnchorsFromServer":"New","Viewer Refactor":"New","PageHeightFix":"New","WixAppsDirection":"new","Ecom Exp1":"New","EcomExp3":"New","mobileSiteWidth":"New","BackgroundS RZ":"New","JITPageLoader":"New","SMPasswordPoundCharFix":"New","I mageLoadPerformance":"New","RichTextPresets":"New","WixAppsPage":"n ew","TPA3DGallery":"new","MobileSliderGallery":"New","RefreshFrameOn Transition":"New","useClientNewDeployViewer":"true","EcomTax":"New"," NewFetchPolicy":"New","NBC_WCD":"new","tpaartifact":"new","ChangeDe faultYouTubeVideo":"new","mediaGalleryFrame":"New","WixAppsLayoutFi xes":"new","AutoPlayFix":"New","SyncWixify":"New","QuickActionsMenus ":"New","SMOwnerLogoutFix":"New","MobileEcomViews":"New","EcomS ocial":"New","PageDuplicateLinksFix":"new","MobileBackgroundSize":"Ne w","MainPageHash":"New","WixAppsContentResize":"new","QuickActions HideSubPagesOfHiddenParent":"New","bgimagestrip":"new","WixAppsAppl icationData":"New","RenderPerf":"new","PageManagerRefactor":"new","Fix MissingSkins":"New","SvSessionFix":"new","RichText2":"New","NBC_Vert icalLine":"New","SiteVersion":"new","MobileZoom":"New","LimitRecursive DDM":"New","MobileViewerQuickActions":"New","GalleryFlick":"New","I nnerStylesFix":"New","custompreviewbehavior":"new","ActivityReporter":"n ew","DynamicCSM":"new","MaximumComponentHeight":"New","twitterapi patch":"new","SiteMembersCommon":"New","safari5menufix":"New","firstti mevisitoreditoruipreview":"New","PageLoadReport":"New","SiteJumpFix":" new","FooterHeightFix":"New","Mobileviewercomponents":"New","PostSign upUrlParam":"New","HtmlComponentRelativePath":"New","EcomRepo":"Ne

36

w","FixViewport":"new","tpanewsettings":"new","NBC_HorizontalLine":"Ne w","URM4":"New","AutoResizeEvent":"new","synclayout":"New","SMForg ot_Password":"New","FacebookCommentFix":"New","tpaglued":"new","pixe lPerfectEditorTabs":"New"},"languageCode":"en","scriptsCacheKiller":1,"sit eMetaData":{"preloader":{"uri":"d1e339_65dcaf8a17f4b301ac424eac4920b4 7b.jpg"},"hasMobileStructure":false,"quickActions":{"socialLinks":[],"colorS cheme":"light","configuration":{"quickActionsMenuEnabled":true,"navigatio nMenuEnabled":true,"phoneEnabled":true,"emailEnabled":true,"addressEnabl ed":true,"socialLinksEnabled":false}}}}; var publicModel = {"externalBaseUrl":"http://venkeerthana2010.wix.com/venkateswaran2010"," domain":"wix.com","premiumFeatures":[],"favicon":"","suppressTrackingCoo kies":true,"pageList":{"masterPage":["http://static.wixstatic.com/sites/d1e339 _b931d9927a7e83cfb18666a04e8d0624.json.z?v=2","http://archive.wix.com/s ites/d1e339_b931d9927a7e83cfb18666a04e8d0624.json.z?v=2","http://public origin.wix.com/wix-public-htmlrenderer/page/d1e339_b931d9927a7e83cfb18666a04e8d0624.json"],"pages":[ {"pageId":"c1vs8","title":"resume","urls":["http://static.wixstatic.com/sites/d1 e339_07b1263a435e2fb807d6bf38bcc49c92.json.z?v=2","http://archive.wix.c om/sites/d1e339_07b1263a435e2fb807d6bf38bcc49c92.json.z?v=2","http://pu blicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_07b1263a435e2fb807d6bf38bcc49c92.json"]},{"pageI d":"cuct","title":"CONTACT US","urls":["http://static.wixstatic.com/sites/d1e339_12b793cdaf5f63cff0a307 03a6c3373a.json.z?v=2","http://archive.wix.com/sites/d1e339_12b793cdaf5f6 3cff0a30703a6c3373a.json.z?v=2","http://publicorigin.wix.com/wix-publichtmlrenderer/page/d1e339_12b793cdaf5f63cff0a30703a6c3373a.json"]},{"pageId" :"cqkj","title":"NewS","urls":["http://static.wixstatic.com/sites/d1e339_385e0 0cf6b09b201d14e2621bfa4bc9b.json.z?v=2","http://archive.wix.com/sites/d1e 339_385e00cf6b09b201d14e2621bfa4bc9b.json.z?v=2","http://publicorigin.w ix.com/wix-public-htmlrenderer/page/d1e339_385e00cf6b09b201d14e2621bfa4bc9b.json"]},{"pageI d":"crhr","title":"Skills ","urls":["http://static.wixstatic.com/sites/d1e339_530a1b016181793194e4037 eb533cc12.json.z?v=2","http://archive.wix.com/sites/d1e339_530a1b0161817 93194e4037eb533cc12.json.z?v=2","http://publicorigin.wix.com/wix-publichtmlrenderer/page/d1e339_530a1b016181793194e4037eb533cc12.json"]},{"pageI d":"c1k0i","title":"English","urls":["http://static.wixstatic.com/sites/d1e339_5 9a3cc4c7b3a3263307e8be466352917.json.z?v=2","http://archive.wix.com/site s/d1e339_59a3cc4c7b3a3263307e8be466352917.json.z?v=2","http://publicori gin.wix.com/wix-public-htmlrenderer/page/d1e339_59a3cc4c7b3a3263307e8be466352917.json"]},{"pageI d":"c1313","title":"Jobs with 10th Class Qualification ","urls":["http://static.wixstatic.com/sites/d1e339_6498675658a9cedcb5eb2a1 acf6289ca.json.z?v=2","http://archive.wix.com/sites/d1e339_6498675658a9ce dcb5eb2a1acf6289ca.json.z?v=2","http://publicorigin.wix.com/wix-publichtmlrenderer/page/d1e339_6498675658a9cedcb5eb2a1acf6289ca.json"]},{"pageId

37

":"c1cdx","title":"JOB & REQUIRENTS","urls":["http://static.wixstatic.com/sites/d1e339_be511046bb ae5f9c369d9cf398562920.json.z?v=2","http://archive.wix.com/sites/d1e339_b e511046bbae5f9c369d9cf398562920.json.z?v=2","http://publicorigin.wix.co m/wix-public-htmlrenderer/page/d1e339_be511046bbae5f9c369d9cf398562920.json"]},{"pageI d":"c115k","title":"ABOUT OUR INSTITUE","urls":["http://static.wixstatic.com/sites/d1e339_f5538c9b42a2ad 2481746477ed43d02a.json.z?v=2","http://archive.wix.com/sites/d1e339_f553 8c9b42a2ad2481746477ed43d02a.json.z?v=2","http://publicorigin.wix.com/w ix-public-htmlrenderer/page/d1e339_f5538c9b42a2ad2481746477ed43d02a.json"]},{"pageI d":"mainPage","title":"HOME","urls":["http://static.wixstatic.com/sites/d1e33 9_fc44599e1f7d4a4720cc35546284b70f.json.z?v=2","http://archive.wix.com/ sites/d1e339_fc44599e1f7d4a4720cc35546284b70f.json.z?v=2","http://public origin.wix.com/wix-public-htmlrenderer/page/d1e339_fc44599e1f7d4a4720cc35546284b70f.json"]}],"mainP ageId":"mainPage"},"siteRevision":214,"timeSincePublish":2540405938,"ada ptiveMobileOn":false}; var serviceTopology = {"serverName":"apu2.aus.wixpress.com","cacheKillerVersion":"1","staticServ erUrl":"http://static.wix.com/","usersScriptsRoot":"http://static.wix.com/servic es/wixusers/2.232.0","biServerUrl":"http://frog.wix.com/","userServerUrl":"http://us ers.wix.com/","billingServerUrl":"http://premium.wix.com/","mediaRootUrl": "http://static.wixstatic.com/","logServerUrl":"http://frog.wix.com/plebs","mon itoringServerUrl":"http://TODO/","usersClientApiUrl":"https://users.wix.com/ wix-users","publicStaticBaseUri":"http://static.wix.com/services/wixpublic/1.36.0","basePublicUrl":"http://www.wix.com/","postLoginUrl":"http:/ /www.wix.com/create/myaccount","postSignUpUrl":"http://www.wix.com/new/account","baseDomain" :"wix.com","staticMediaUrl":"http://static.wixstatic.com/media","staticAudio Url":"http://media.wix.com/mp3","emailServer":"http://assets.wix.com/comm onservices/notification/invoke","blobUrl":"http://static.parastorage.com/wix_blo b","htmlEditorUrl":"http://editor.wix.com/html","siteMembersUrl":"https://us ers.wix.com/wix-sm","scriptsLocationMap":{"ckeditor":"http://static.parastorage.com/services/ckeditor/1.36.0","bootstrap":"http://static.parastorage.com/services/bootstrap/2.6 04.9","sitemembers":"http://static.parastorage.com/services/sm-jssdk/1.29.0","ecommerce":"http://static.parastorage.com/services/ecommerce/1 .65.0","langs":"http://static.parastorage.com/services/langs/2.169.0","wixapps ":"http://static.parastorage.com/services/wixapps/2.239.1","verifypremium":"h ttp://static.parastorage.com/services/experiments/verifypremium/1.7.0","web": "http://static.parastorage.com/services/web/2.604.9","core":"http://static.parast orage.com/services/core/2.604.9","tpa":"http://static.parastorage.com/services/ tpa/2.594.0","skins":"http://static.parastorage.com/services/skins/2.604.9"},"d eveloperMode":false,"userFilesUrl":"http://static.wix.com/","staticHTMLCom ponentUrl":"http://static.usrfiles.com/","secured":false,"ecommerceCheckout Url":"https://www.safer-

38

checkout.com/","publicStaticsUrl":"http://static.wix.com/services/wixpublic/1.36.0","staticDocsUrl":"http://media.wix.com/ugd"}; var siteHeader = {"id":"12f73b1e-4078-3a21-efd2-2a77ba06daaa", "userId":"d1e33924-d1ff-4e9d-8b4e-29bb0cd79e0a"}; var siteId = siteHeader.id; var configUrls = serviceTopology; var debugMode = "nodebug"; var viewMode = (rendererModel.previewMode) ? 'preview' : 'site'; var googleAnalytics = "" ; </script> <meta name="fragment" content="!"/> <!-- DATA --> <script type="text/javascript"> var adData = {"topLabel":"<span class=\"smallMusa\">(Wix-Logo) </span>Create a <span class=\"smallLogo\">Wix</span> site!","topContent":"100s of templates<br />No coding needed<br /><span class=\"emphasis spacer\">Start now >></span>","footerLabel":"<div class=\"adFootBox\"><div class=\"siteBanner\" ><div class=\"siteBanner\"><div class=\"wrapper\"><div class=\"bigMusa\">(Wix Logo)</div><div class=\"txt shd\" style=\"color:#fff\">This site was created by </div> <div class=\"txt shd\"><a href=\"http://www.wix.com?utm_campaign=vir_wixad_live\" style=\"color:#fff\"> WIX.com. </a></div> <div class=\"txt shd\" style=\"color:#fff\"> Create your own for FREE <span class=\"emphasis\"> >></span></div></div></div></div></div>","adUrl":"http://www.wix.com/ht ml5webbuilder/400?utm_campaign=vir_wixad_live"}; var usersDomain = "https://users.wix.com//wix-users"; </script> <script src="http://static.wix.com/services/wixusers/2.232.0/client/js/userApi_v2.js?cacheKiller=1"></script> <script type="text/javascript"> var userApi = UserApi.getInstance().init({ "usersDomain":"http://users.wix.com//wix-users", "corsEnabled":false, "dontHandShake":true, "urlThatUserRedirectedFrom":"$" }); </script> </head> <body>

39

<script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script> <link rel="stylesheet" type="text/css" href="http://static.wix.com/services/web/2.604.9/css/wysiwyg/preloader.css"> <div id="viewer_preloader"> <p>Loading</p> <h2>study</h2> <div id="userLogo" style="background:url('http://static.wixstatic.com/media/d1e339_65dcaf8a17f 4b301ac424eac4920b47b.jpg_256') no-repeat 50% 50%;backgroundsize:contain;" ></div> <div id="preloader"></div> </div> <script type="text/javascript" src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/m obile_utils.js"></script> <script type="text/javascript" src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/pr eloader.js"></script> <link rel="stylesheet" type="text/css" href="http://static.wix.com/services/web/2.604.9/css/wysiwyg/quick_actions.c ss"> <style type="text/css"> .dark .quick-actions-sprite, .dark .quick-actions-sprite-before:before, .dark .quick-actions-sprite-after:after{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Action_darkSprite.png); } .dark .quick-actions-bg-gradient{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Actions_dark_bg.png); } .light .quick-actions-sprite, .light .quick-actions-sprite-before:before, .light .quick-actions-sprite-after:after{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Action_lightSprite.png); }

40

.light .quick-actions-bg-gradient{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Action_lightSprite.png); } .quick-actions-drop-up-x { background-image: url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/x.png); } </style> <div id="quick-actions-menus-container"> <div id="qa-drop-up-pages" class="quick-actions-drop-up-wrapper"> <div class="quick-actions-drop-up-back"></div> <div class="quick-actions-drop-up quick-actions-drop-up-open"> <div class="quick-actions-drop-up-header"> <span class='quick-actions-drop-up-title'>Pages</span> <span class='quick-actions-drop-up-x'></span> </div> <ul id="qa-drop-up-pages-list"> </ul> </div> </div> </div> <div id="quick-actions" class="quick-actions light"> <div id="quick-actions-drag-handle" class="quick-actions-drag-handle quickactions-sprite"> &nbsp </div> <div id="quick-actions-bar" class="quick-actions-bar quick-actions-bggradient"> <ul id="qa-menu" class="quick-actions-menu"> <li id="quick-actions-pages-button" class="qa-new-menus-hide quick-actionsitem quick-actions-site-nav quick-actions-sprite disabled"> <div class="quick-actions-site-nav-button quick-actions-sprite"> <a class="quick-actions-button quick-actions-sprite"></a> </div> </li> <li class="quick-actions-item quick-actions-call quick-actions-sprite"> <a id="quick-actions-call" class="quick-actions-button quick-actions-sprite" href="#">Phone number</a>

41

</li> <li class="quick-actions-item quick-actions-email quick-actions-sprite"> <a id="quick-actions-email" class="quick-actions-button quick-actions-sprite" href="#">Email</a> </li> <li class="quick-actions-item quick-actions-location quick-actions-sprite"> <a id="quick-actions-location" class="quick-actions-button quick-actionssprite" href="#">Location</a> </li> </ul> </div> </div> <script src="http://static.wix.com/services/web/2.604.9/libs/hammer.min.js"></script > <script src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/qu ick_actions_new_menus.js"></script> <script> if (MobileUtils.isMobile() && MobileUtils.isViewportOpen()){ WQuickActions.element.style.visibility = "visible"; WQuickActions.initialize( "venkeerthana2010@gmail.com", "9976316089", "68/4 singapoor nagar" ); } else if(WQuickActions && WQuickActions.element){ WQuickActions.element.style.display = 'none'; } </script> <!-- debug mode=nodebug --> <!-- anc2 --> <script type="text/javascript"> var anchors = {}; </script> <script src="http://static.parastorage.com/services/bootstrap/2.604.9/javascript/bootstr ap.min.js"></script> <script src="http://static.parastorage.com/services/web/2.604.9/deployviewer.min.js" ></script>

42

<div comp="wysiwyg.viewer.components.WixAds" skin="wysiwyg.viewer.skins.wixadsskins.WixAdsWebSkin" id="wixFooter"></div> <script> window.define && define.resource('status.structure.loaded', true); </script> <script type="text/javascript">if (!NREUMQ.f) { NREUMQ.f=function() {NREUMQ.push(["load",new Date().getTime()]);var e=document.createElement("script");e.type="text/javascript";e.src=(("http:"== =document.location.protocol)?"http:":"https:") + "//" + "jsagent.newrelic.com/nr100.js";document.body.appendChild(e);if(NREUMQ.a)NREUMQ.a();};NRE UMQ.a=window.onload;window.onload=NREUMQ.f;};NREUMQ.push(["nrf j","beacon6.newrelic.com","c99d7f1ab0","1963269,1963270","ZFAHNkNYXUBQVEU KXF0aKDRyFmRWU39FDl9hUAsGVEtWQR9FVA1XVkc=",0,14,new Date().getTime(),"","","","",""]);</script> </body> </html> <!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=9,chrome=1"/> <meta charset="utf-8"/> <title>venkateswaran</title> <meta name="fb_admins_meta_tag" content="venkateswaran"/> <meta name="keywords" content="venkateswaran2010"/> <meta name="description" content=" Education is the most powerful weapon which you can use to change the world. Nelson Mandela Change, Powerful, Weapon It is the mark of an educated mind to be able to entertain a thought without accepting it. Aristotle liked venkateswaran2010"/> <link rel="shortcut icon" href="http://www.wix.com/favicon.ico" type="image/png"/> <link rel="canonical" href="http://venkeerthana2010.wix.com/venkateswaran2010"/> <meta http-equiv="X-Wix-Renderer-Server" content="apu2.aus"/> <meta http-equiv="X-Wix-Meta-Site-Id" content="12f73b1e-426f-942b3e10-0d7b237354a0"/> <meta http-equiv="X-Wix-Application-Instance-Id" content="12f73b1e4078-3a21-efd2-2a77ba06daaa"/> <meta http-equiv="X-Wix-Published-Version" content="214"/> <meta http-equiv="etag" content="fbf6bb65573d66b2aa11c53623e0a310"/>

43

<meta property="og:title" content="venkateswaran"/> <meta property="og:type" content="article"/> <meta property="og:url" content="http://venkeerthana2010.wix.com/venkateswaran2010"/> <meta property="og:site_name" content="venkateswaran"/> <meta property="fb:admins" content="venkateswaran"/> <meta property="og:description" content=" Education is the most powerful weapon which you can use to change the world. Nelson Mandela Change, Powerful, Weapon It is the mark of an educated mind to be able to entertain a thought without accepting it. Aristotle liked venkateswaran2010"/> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE"/> <meta id="wixMobileViewport" name="viewport" content="minimumscale=0.25, maximum-scale=1.2"/> <!-IMPORTANT! LOOKING FOR THIS SITES SEO CONTENT? This site's SEO content, such as meta tags and headers, is not here. This is because search engines, like Google, actually crawl the site's homepage via http://venkeerthana2010.wix.com/venkateswaran2010?_escaped_fragment_ =. Internal pages, like resume, also have their own special search engine versions, for example: http://venkeerthana2010.wix.com/venkateswaran2010?_escaped_fragment_ =resume%2Fc1vs8 If youre looking for this sites SEO content, thats where you can view it. Want more information about Ajax page crawling? Read Google's explanation here: http://bit.ly/ajaxcrawling --> <!-- META DATA --> <script type="text/javascript"> var rendererModel = {"debugMode":"nodebug","previewMode":false,"serviceMappings":{"1":{"i dInMetaSite":1,"idInApp":"12f73b1e-4078-3a21-efd22a77ba06daaa","applicationType":"HtmlWeb"}},"metaSiteId":"12f73b1e426f-942b-3e10-0d7b237354a0","premiumFeatures":[],"siteId":"12f73b1e4078-3a21-efd2-2a77ba06daaa","userId":"d1e33924-d1ff-4e9d-8b4e29bb0cd79e0a","published":true,"applicationType":"HtmlWeb","documentT ype":"UGC","siteTitleSEO":"venkateswaran","clientSpecMap":{"2":{"type" :"sitemembers","applicationId":2,"collectionType":"ApplyForMembership", "smcollectionId":"130ae4d8-3611-721f-68f17b2b0bca8ecf"},"1":{"type":"appbuilder","applicationId":1,"appDefinitionId ":"3d590cbc-4907-4cc4-b0b1-ddf2c5edf297","instanceId":"130ae2ec-9844395d-1e7d-

44

d73fa09f4511"},"3":{"type":"ecommerce","applicationId":3,"appDefinitionI d":"55a88716-958a-4b91-b6666c1118abdee4","magentoStoreId":"14476854","packageName":"ecommerce ","widgets":{"30b4a102-7649-47d9-a60bbfd89dcca135":{"widgetId":"30b4a102-7649-47d9-a60bbfd89dcca135","defaultHeight":600,"defaultWidth":500},"adbeffec-c7df4908-acd0-cdd23155a817":{"widgetId":"adbeffec-c7df-4908-acd0cdd23155a817","defaultHeight":150,"defaultWidth":500},"f72a3898-85204b60-8cd6-24e4e20d483d":{"widgetId":"f72a3898-8520-4b60-8cd624e4e20d483d","defaultHeight":600,"defaultWidth":800},"c029b3fd-e8e444f1-b1f0-1f83e437d45c":{"widgetId":"c029b3fd-e8e4-44f1-b1f01f83e437d45c","defaultHeight":50,"defaultWidth":200},"cd54a28f-e3c94522-91c4-15e6dd5bc514":{"widgetId":"cd54a28f-e3c9-4522-91c415e6dd5bc514","defaultHeight":50,"defaultWidth":200},"c614fb79-dbec4ac7-b9b0-419669fadecc":{"widgetId":"c614fb79-dbec-4ac7-b9b0419669fadecc","defaultHeight":50,"defaultWidth":200},"5fca0e8b-a33c4c18-b8eb-da50d7f31e4a":{"widgetId":"5fca0e8b-a33c-4c18-b8ebda50d7f31e4a","defaultHeight":150,"defaultWidth":800},"ae674d74-b30b47c3-aba0-0bd220e25a69":{"widgetId":"ae674d74-b30b-47c3-aba00bd220e25a69","defaultHeight":150,"defaultWidth":220}}},"4":{"type":"wi xapps","applicationId":4,"appDefinitionId":"e4c4a4fb-673d-493a-9ef1661fa3823ad7","datastoreId":"f4e604f9-025a-45b6-a43befa217c15fc3","packageName":"menu","widgets":{"1660c5f3-b183-4e6ca873-5d6bbd918224":{"widgetId":"1660c5f3-b183-4e6c-a8735d6bbd918224","defaultHeight":100,"defaultWidth":400}}},"5":{"type":"pu blic","applicationId":5,"appDefinitionId":"12d5833e-f061-7cc8-5122e1d404f6c8ae","appDefinitionName":"Google AdSense","instance":"b5pKvFeKhDRcuY9W7XEiddXsp0cZIuywlGDhh86 1snE.eyJpbnN0YW5jZUlkIjoiMTMwZjdhYTAtNjZiYy0wNjMyLWNkMD ItOTVmZWU4MzIxMTlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4 OjE0OjA3Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuN zYuMjA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished ":true,"sectionMobilePublished":false,"widgets":{"12d58350-abc8-568fdb5cbd1c19a2a71a":{"widgetUrl":"http://adsense.apps.wix.com/view","widgetId ":"12d58350-abc8-568f-db5cbd1c19a2a71a","refreshOnWidthChange":true,"published":true,"mobilePubl ished":false}},"appRequirements":{"requireSiteMembers":false}},"6":{"typ e":"public","applicationId":6,"appDefinitionId":"12d828f7-a297-0bc0-a147e8976823817d","appDefinitionName":"Latest News","instance":"V0ZlMP0z2xN3X005XHJ94J8e7v_0DXC3Ac2UG1gaK 90.eyJpbnN0YW5jZUlkIjoiMTMwZjdiMzgtMWY5Mi0zOTMxLWNkMDI tOTVmZWU4MzIxMTlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4 OjE0OjA3Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuN zYuMjA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished ":true,"sectionMobilePublished":false,"widgets":{"12d82a10-8e82-c7de4ccde2e1a9bb726a":{"widgetUrl":"http://petprojektlabs.com/wix/newsfeed/widg et","widgetId":"12d82a10-8e82-c7de-4ccde2e1a9bb726a","refreshOnWidthChange":true,"published":true,"mobilePubl

45

ished":false}},"appRequirements":{"requireSiteMembers":false}},"7":{"typ e":"public","applicationId":7,"appDefinitionId":"12cd25d6-9dad-cad9-636af9edbec13b41","appDefinitionName":"JOBS","instance":"Uqqoj5HUao0HP Uui46mcBSWPmyWLEfy5__eG3JFjGI.eyJpbnN0YW5jZUlkIjoiMTMxMDAyYTQtZDI2MS0wMjNjLWZmMjc tZGYyYzQxZmExMGIzIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4O jE0OjA3Ljc4MS0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNz YuMjA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionUrl":"http: //www.emplada.com/wix","sectionMobileUrl":"http://www.emplada.com/wi x","sectionPublished":true,"sectionMobilePublished":true,"sectionDefaultPa ge":"","sectionRefreshOnWidthChange":true,"widgets":{"12cd2648-93ab7d67-905e574eaea59673":{"widgetUrl":"http://www.emplada.com/wix","widgetId":"1 2cd2648-93ab-7d67-905e574eaea59673","refreshOnWidthChange":true,"published":true,"mobilePubl ished":false}},"appRequirements":{"requireSiteMembers":false}},"8":{"typ e":"public","applicationId":8,"appDefinitionId":"129acb44-2c8a-8314-fbc873d5b973a88f","appDefinitionName":"Google Event Calendar","instance":"_bXUQHhBP7oOOJh2TFABze1klKA2aeE3IJeqJKla RCs.eyJpbnN0YW5jZUlkIjoiMTMxMThhZmMtOTlhZS1hMDk2LTI5ZW EtMTUxYTJmODcyYzg5Iiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4 OjE0OjA3Ljc4Mi0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNz YuMjA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionPublished" :true,"sectionMobilePublished":false,"widgets":{"129acb44-2c60-302059890f5aea90b16f":{"widgetUrl":"http://calendar.apps.wix.com/production/calen dar/user","widgetId":"129acb44-2c60-3020-59890f5aea90b16f","refreshOnWidthChange":true,"published":true,"mobilePubli shed":false}},"appRequirements":{"requireSiteMembers":false}},"9":{"type ":"public","applicationId":9,"appDefinitionId":"12c62b0d-d201-1791-1b0c0eefee42cac6","appDefinitionName":"Blogger Feed","instance":"451OuisWPXgSoQyq4gH3GyGCMLNv_QL8V5gZITS8 Yac.eyJpbnN0YW5jZUlkIjoiMTMxYWJmYWEtZjUzMC1iN2MwLTVmO DctYzkxNDExMzQ0YjlmIiwic2lnbkRhdGUiOiIyMDEzLTEwLTAyVDA4 OjE0OjA3Ljc4Mi0wNTowMCIsImlwQW5kUG9ydCI6IjExNy4yMDMuNz YuMjA0LzMxNDkzIiwiZGVtb01vZGUiOmZhbHNlfQ","sectionUrl":"http: //blogger.apps.wix.com/view","sectionPublished":true,"sectionMobilePublis hed":false,"sectionDefaultPage":"","sectionRefreshOnWidthChange":true," widgets":{"12c62b32-774e-c0c5-88573c265a8d7166":{"widgetUrl":"http://blogger.wix.codeoasis.com/view","wid getId":"12c62b32-774e-c0c5-88573c265a8d7166","published":true,"mobilePublished":false}},"appRequireme nts":{"requireSiteMembers":false}}},"runningExperiments":{"CorsContactF orm":"New","verifyPremium":"New","NoAnchorsFromServer":"New","Vie werRefactor":"New","PageHeightFix":"New","WixAppsDirection":"new"," EcomExp1":"New","EcomExp3":"New","mobileSiteWidth":"New","Backgr oundSRZ":"New","JITPageLoader":"New","SMPasswordPoundCharFix":" New","ImageLoadPerformance":"New","RichTextPresets":"New","WixApp sPage":"new","TPA3DGallery":"new","MobileSliderGallery":"New","Refre shFrameOnTransition":"New","useClientNewDeployViewer":"true","Ecom

46

Tax":"New","NewFetchPolicy":"New","NBC_WCD":"new","tpaartifact":"n ew","ChangeDefaultYouTubeVideo":"new","mediaGalleryFrame":"New"," WixAppsLayoutFixes":"new","AutoPlayFix":"New","SyncWixify":"New"," QuickActionsMenus":"New","SMOwnerLogoutFix":"New","MobileEcomV iews":"New","EcomSocial":"New","PageDuplicateLinksFix":"new","Mobile BackgroundSize":"New","MainPageHash":"New","WixAppsContentResize" :"new","QuickActionsHideSubPagesOfHiddenParent":"New","bgimagestrip ":"new","WixAppsApplicationData":"New","RenderPerf":"new","PageMana gerRefactor":"new","FixMissingSkins":"New","SvSessionFix":"new","Rich Text2":"New","NBC_VerticalLine":"New","SiteVersion":"new","MobileZo om":"New","LimitRecursiveDDM":"New","MobileViewerQuickActions":" New","GalleryFlick":"New","InnerStylesFix":"New","custompreviewbehavi or":"new","ActivityReporter":"new","DynamicCSM":"new","MaximumCo mponentHeight":"New","twitterapipatch":"new","SiteMembersCommon":" New","safari5menufix":"New","firsttimevisitoreditoruipreview":"New","Pag eLoadReport":"New","SiteJumpFix":"new","FooterHeightFix":"New","Mob ileviewercomponents":"New","PostSignupUrlParam":"New","HtmlCompon entRelativePath":"New","EcomRepo":"New","FixViewport":"new","tpanew settings":"new","NBC_HorizontalLine":"New","URM4":"New","AutoResiz eEvent":"new","synclayout":"New","SMForgot_Password":"New","Faceboo kCommentFix":"New","tpaglued":"new","pixelPerfectEditorTabs":"New"}," languageCode":"en","scriptsCacheKiller":1,"siteMetaData":{"preloader":{"u ri":"d1e339_65dcaf8a17f4b301ac424eac4920b47b.jpg"},"hasMobileStructur e":false,"quickActions":{"socialLinks":[],"colorScheme":"light","configurati on":{"quickActionsMenuEnabled":true,"navigationMenuEnabled":true,"pho neEnabled":true,"emailEnabled":true,"addressEnabled":true,"socialLinksEna bled":false}}}}; var publicModel = {"externalBaseUrl":"http://venkeerthana2010.wix.com/venkateswaran2010", "domain":"wix.com","premiumFeatures":[],"favicon":"","suppressTrackingC ookies":true,"pageList":{"masterPage":["http://static.wixstatic.com/sites/d1e 339_b931d9927a7e83cfb18666a04e8d0624.json.z?v=2","http://archive.wix. com/sites/d1e339_b931d9927a7e83cfb18666a04e8d0624.json.z?v=2","http:/ /publicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_b931d9927a7e83cfb18666a04e8d0624.json"],"pages" :[{"pageId":"c1vs8","title":"resume","urls":["http://static.wixstatic.com/sites/ d1e339_07b1263a435e2fb807d6bf38bcc49c92.json.z?v=2","http://archive.w ix.com/sites/d1e339_07b1263a435e2fb807d6bf38bcc49c92.json.z?v=2","htt p://publicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_07b1263a435e2fb807d6bf38bcc49c92.json"]},{"page Id":"cuct","title":"CONTACT US","urls":["http://static.wixstatic.com/sites/d1e339_12b793cdaf5f63cff0a3 0703a6c3373a.json.z?v=2","http://archive.wix.com/sites/d1e339_12b793cda f5f63cff0a30703a6c3373a.json.z?v=2","http://publicorigin.wix.com/wixpublic-htmlrenderer/page/d1e339_12b793cdaf5f63cff0a30703a6c3373a.json"]},{"pageI d":"cqkj","title":"NewS","urls":["http://static.wixstatic.com/sites/d1e339_38 5e00cf6b09b201d14e2621bfa4bc9b.json.z?v=2","http://archive.wix.com/site s/d1e339_385e00cf6b09b201d14e2621bfa4bc9b.json.z?v=2","http://publicor

47

igin.wix.com/wix-public-htmlrenderer/page/d1e339_385e00cf6b09b201d14e2621bfa4bc9b.json"]},{"page Id":"crhr","title":"Skills ","urls":["http://static.wixstatic.com/sites/d1e339_530a1b016181793194e40 37eb533cc12.json.z?v=2","http://archive.wix.com/sites/d1e339_530a1b0161 81793194e4037eb533cc12.json.z?v=2","http://publicorigin.wix.com/wixpublic-htmlrenderer/page/d1e339_530a1b016181793194e4037eb533cc12.json"]},{"pag eId":"c1k0i","title":"English","urls":["http://static.wixstatic.com/sites/d1e33 9_59a3cc4c7b3a3263307e8be466352917.json.z?v=2","http://archive.wix.co m/sites/d1e339_59a3cc4c7b3a3263307e8be466352917.json.z?v=2","http://p ublicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_59a3cc4c7b3a3263307e8be466352917.json"]},{"pag eId":"c1313","title":"Jobs with 10th Class Qualification ","urls":["http://static.wixstatic.com/sites/d1e339_6498675658a9cedcb5eb2a 1acf6289ca.json.z?v=2","http://archive.wix.com/sites/d1e339_6498675658a 9cedcb5eb2a1acf6289ca.json.z?v=2","http://publicorigin.wix.com/wixpublic-htmlrenderer/page/d1e339_6498675658a9cedcb5eb2a1acf6289ca.json"]},{"page Id":"c1cdx","title":"JOB & REQUIRENTS","urls":["http://static.wixstatic.com/sites/d1e339_be511046b bae5f9c369d9cf398562920.json.z?v=2","http://archive.wix.com/sites/d1e33 9_be511046bbae5f9c369d9cf398562920.json.z?v=2","http://publicorigin.wi x.com/wix-public-htmlrenderer/page/d1e339_be511046bbae5f9c369d9cf398562920.json"]},{"page Id":"c115k","title":"ABOUT OUR INSTITUE","urls":["http://static.wixstatic.com/sites/d1e339_f5538c9b42a2a d2481746477ed43d02a.json.z?v=2","http://archive.wix.com/sites/d1e339_f5 538c9b42a2ad2481746477ed43d02a.json.z?v=2","http://publicorigin.wix.co m/wix-public-htmlrenderer/page/d1e339_f5538c9b42a2ad2481746477ed43d02a.json"]},{"pag eId":"mainPage","title":"HOME","urls":["http://static.wixstatic.com/sites/d1 e339_fc44599e1f7d4a4720cc35546284b70f.json.z?v=2","http://archive.wix. com/sites/d1e339_fc44599e1f7d4a4720cc35546284b70f.json.z?v=2","http:// publicorigin.wix.com/wix-public-htmlrenderer/page/d1e339_fc44599e1f7d4a4720cc35546284b70f.json"]}],"main PageId":"mainPage"},"siteRevision":214,"timeSincePublish":2540405938," adaptiveMobileOn":false}; var serviceTopology = {"serverName":"apu2.aus.wixpress.com","cacheKillerVersion":"1","staticSe rverUrl":"http://static.wix.com/","usersScriptsRoot":"http://static.wix.com/se rvices/wixusers/2.232.0","biServerUrl":"http://frog.wix.com/","userServerUrl":"http://u sers.wix.com/","billingServerUrl":"http://premium.wix.com/","mediaRootUr l":"http://static.wixstatic.com/","logServerUrl":"http://frog.wix.com/plebs"," monitoringServerUrl":"http://TODO/","usersClientApiUrl":"https://users.wi x.com/wix-users","publicStaticBaseUri":"http://static.wix.com/services/wixpublic/1.36.0","basePublicUrl":"http://www.wix.com/","postLoginUrl":"http ://www.wix.com/create/my-

48

account","postSignUpUrl":"http://www.wix.com/new/account","baseDomai n":"wix.com","staticMediaUrl":"http://static.wixstatic.com/media","staticAu dioUrl":"http://media.wix.com/mp3","emailServer":"http://assets.wix.com/c ommonservices/notification/invoke","blobUrl":"http://static.parastorage.com/wix_bl ob","htmlEditorUrl":"http://editor.wix.com/html","siteMembersUrl":"https:// users.wix.com/wix-sm","scriptsLocationMap":{"ckeditor":"http://static.parastorage.com/services/ckeditor/1.36.0","bootstrap":"http://static.parastorage.com/services/bootstrap/2. 604.9","sitemembers":"http://static.parastorage.com/services/sm-jssdk/1.29.0","ecommerce":"http://static.parastorage.com/services/ecommerce/ 1.65.0","langs":"http://static.parastorage.com/services/langs/2.169.0","wixap ps":"http://static.parastorage.com/services/wixapps/2.239.1","verifypremium ":"http://static.parastorage.com/services/experiments/verifypremium/1.7.0"," web":"http://static.parastorage.com/services/web/2.604.9","core":"http://stati c.parastorage.com/services/core/2.604.9","tpa":"http://static.parastorage.com /services/tpa/2.594.0","skins":"http://static.parastorage.com/services/skins/2. 604.9"},"developerMode":false,"userFilesUrl":"http://static.wix.com/","stati cHTMLComponentUrl":"http://static.usrfiles.com/","secured":false,"ecomm erceCheckoutUrl":"https://www.safercheckout.com/","publicStaticsUrl":"http://static.wix.com/services/wixpublic/1.36.0","staticDocsUrl":"http://media.wix.com/ugd"}; var siteHeader = {"id":"12f73b1e-4078-3a21-efd2-2a77ba06daaa", "userId":"d1e33924-d1ff-4e9d-8b4e-29bb0cd79e0a"}; var siteId = siteHeader.id; var configUrls = serviceTopology; var debugMode = "nodebug"; var viewMode = (rendererModel.previewMode) ? 'preview' : 'site'; var googleAnalytics = "" ; </script> <meta name="fragment" content="!"/> <!-- DATA --> <script type="text/javascript"> var adData = {"topLabel":"<span class=\"smallMusa\">(Wix-Logo) </span>Create a <span class=\"smallLogo\">Wix</span> site!","topContent":"100s of templates<br />No coding needed<br /><span class=\"emphasis spacer\">Start now >></span>","footerLabel":"<div class=\"adFootBox\"><div class=\"siteBanner\" ><div class=\"siteBanner\"><div class=\"wrapper\"><div class=\"bigMusa\">(Wix Logo)</div><div class=\"txt shd\" style=\"color:#fff\">This site was created by </div> <div class=\"txt shd\"><a href=\"http://www.wix.com?utm_campaign=vir_wixad_live\" style=\"color:#fff\"> WIX.com. </a></div> <div class=\"txt shd\" style=\"color:#fff\"> Create your own for FREE <span class=\"emphasis\"> >></span></div></div></div></div></div>","adUrl":"http://www.wix.com/

49

html5webbuilder/400?utm_campaign=vir_wixad_live"}; var usersDomain = "https://users.wix.com//wix-users"; </script> <script src="http://static.wix.com/services/wixusers/2.232.0/client/js/userApi_v2.js?cacheKiller=1"></script> <script type="text/javascript"> var userApi = UserApi.getInstance().init({ "usersDomain":"http://users.wix.com//wix-users", "corsEnabled":false, "dontHandShake":true, "urlThatUserRedirectedFrom":"$" }); </script> </head> <body> <script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script> <link rel="stylesheet" type="text/css" href="http://static.wix.com/services/web/2.604.9/css/wysiwyg/preloader.css" > <div id="viewer_preloader"> <p>Loading</p> <h2>study</h2> <div id="userLogo" style="background:url('http://static.wixstatic.com/media/d1e339_65dcaf8a17 f4b301ac424eac4920b47b.jpg_256') no-repeat 50% 50%;backgroundsize:contain;" ></div> <div id="preloader"></div> </div> <script type="text/javascript" src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/ mobile_utils.js"></script> <script type="text/javascript" src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/p reloader.js"></script> <link rel="stylesheet" type="text/css" href="http://static.wix.com/services/web/2.604.9/css/wysiwyg/quick_actions .css"> <style type="text/css"> .dark .quick-actions-sprite,

50

.dark .quick-actions-sprite-before:before, .dark .quick-actions-sprite-after:after{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Action_darkSprite.png); } .dark .quick-actions-bg-gradient{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Actions_dark_bg.png); } .light .quick-actions-sprite, .light .quick-actions-sprite-before:before, .light .quick-actions-sprite-after:after{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Action_lightSprite.png); } .light .quick-actions-bg-gradient{ background-image : url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/quick Action_lightSprite.png); } .quick-actions-drop-up-x { background-image: url(http://static.wix.com/services/web/2.604.9/images/wysiwyg/viewer/x.png ); } </style> <div id="quick-actions-menus-container"> <div id="qa-drop-up-pages" class="quick-actions-drop-up-wrapper"> <div class="quick-actions-drop-up-back"></div> <div class="quick-actions-drop-up quick-actions-drop-up-open"> <div class="quick-actions-drop-up-header"> <span class='quick-actions-drop-up-title'>Pages</span> <span class='quick-actions-drop-up-x'></span> </div> <ul id="qa-drop-up-pages-list"> </ul> </div> </div> </div>

51

<div id="quick-actions" class="quick-actions light"> <div id="quick-actions-drag-handle" class="quick-actions-drag-handle quick-actions-sprite"> &nbsp </div> <div id="quick-actions-bar" class="quick-actions-bar quick-actions-bggradient"> <ul id="qa-menu" class="quick-actions-menu"> <li id="quick-actions-pages-button" class="qa-new-menus-hide quickactions-item quick-actions-site-nav quick-actions-sprite disabled"> <div class="quick-actions-site-nav-button quick-actions-sprite"> <a class="quick-actions-button quick-actions-sprite"></a> </div> </li> <li class="quick-actions-item quick-actions-call quick-actions-sprite"> <a id="quick-actions-call" class="quick-actions-button quick-actions-sprite" href="#">Phone number</a> </li> <li class="quick-actions-item quick-actions-email quick-actions-sprite"> <a id="quick-actions-email" class="quick-actions-button quick-actionssprite" href="#">Email</a> </li> <li class="quick-actions-item quick-actions-location quick-actions-sprite"> <a id="quick-actions-location" class="quick-actions-button quick-actionssprite" href="#">Location</a> </li> </ul> </div> </div> <script src="http://static.wix.com/services/web/2.604.9/libs/hammer.min.js"></scrip t> <script src="http://static.wix.com/services/web/2.604.9/javascript/wysiwyg/viewer/q uick_actions_new_menus.js"></script> <script> if (MobileUtils.isMobile() && MobileUtils.isViewportOpen()){ WQuickActions.element.style.visibility = "visible"; WQuickActions.initialize( "venkeerthana2010@gmail.com",

52

"9976316089", "68/4 singapoor nagar" ); } else if(WQuickActions && WQuickActions.element){ WQuickActions.element.style.display = 'none'; } </script> <!-- debug mode=nodebug --> <!-- anc2 --> <script type="text/javascript"> var anchors = {}; </script> <script src="http://static.parastorage.com/services/bootstrap/2.604.9/javascript/boots trap.min.js"></script> <script src="http://static.parastorage.com/services/web/2.604.9/deployviewer.min.js "></script> <div comp="wysiwyg.viewer.components.WixAds" skin="wysiwyg.viewer.skins.wixadsskins.WixAdsWebSkin" id="wixFooter"></div> <script> window.define && define.resource('status.structure.loaded', true); </script> <script type="text/javascript">if (!NREUMQ.f) { NREUMQ.f=function() {NREUMQ.push(["load",new Date().getTime()]);var e=document.createElement("script");e.type="text/javascript";e.src=(("http:" ===document.location.protocol)?"http:":"https:") + "//" + "jsagent.newrelic.com/nr100.js";document.body.appendChild(e);if(NREUMQ.a)NREUMQ.a();};NR EUMQ.a=window.onload;window.onload=NREUMQ.f;};NREUMQ.push([" nrfj","beacon6.newrelic.com","c99d7f1ab0","1963269,1963270","ZFAHNkNYXUBQVE UKXF0aKDRyFmRWU39FDl9hUAsGVEtWQR9FVA1XVkc=",0,14,new Date().getTime(),"","","","",""]);</script> </body> </html>

Design

view of the web page

53

54

55

56

57

8.

58

S-ar putea să vă placă și