Thursday, July 2, 2009

Mitigation of global warming

Mitigation of global warming involves taking actions to reduce greenhouse gas emissions and to enhance sinks aimed at reducing the extent of global warming. This is in distinction to adaptation to global warming which involves taking action to minimize the effects of global warming. Scientific consensus on global warming, together with the precautionary principle and the fear of abrupt climate change is leading to increased effort to develop new technologies and sciences and carefully manage others in an attempt to mitigate global warming.

The Stern Review identifies several ways of mitigating climate change. These include reducing demand for emissions-intensive goods and services, increasing efficiency gains, increasing use and development of low-carbon technologies, and reducing non-fossil fuel emissions.

The energy policy of the European Union has set a target of limiting the global temperature rise to 2 °C [3.6 °F] compared to preindustrial levels, of which 0.8 °C has already taken place and another 0.5 °C is already committed. The 2 °C rise is typically associated in climate models with a carbon dioxide concentration of 400-500 ppm by volume; the current level as of January 2007 is 383 ppm by volume, and rising at 2 ppm annually. Hence, to avoid a very likely breach of the 2 °C target, CO2 levels would have to be stabilized very soon; this is generally regarded as unlikely, based on current programs in place to date. The importance of change is illustrated by the fact that world economic energy efficiency is presently improving at only half the rate of world economic growth.

At the core of most proposals is the reduction of greenhouse gas emissions through reducing energy use and switching to cleaner energy sources. Frequently discussed energy conservation methods include increasing the fuel efficiency of vehicles (often through hybrid, plug-in hybrid, and electric cars and improving conventional automobiles), individual-lifestyle changes and changing business practices. Newly developed technologies and currently available technologies including renewable energy (such as solar power, tidal and ocean energy, geothermal power, and wind power) and more controversially nuclear power and the use of carbon sinks, carbon credits, and taxation are aimed more precisely at countering continued greenhouse gas emissions. More radical proposals include geoengineering techniques ranging from carbon sequestration projects such as carbon dioxide air capture, to solar radiation management schemes such as the creation of stratospheric sulfur aerosols. The ever-increasing global population and the planned growth of national GDPs based on current technologies are counter-productive to most of these proposals.

NET Framework

The Microsoft .NET Framework is a software framework that can be installed on computers running Microsoft Windows operating systems. It includes a large library of coded solutions to common programming problems and a virtual machine that manages the execution of programs written specifically for the framework. The .NET Framework is a key Microsoft offering and is intended to be used by most new applications created for the Windows platform.

The framework's Base Class Library provides a large range of features including user interface, data and data access, database connectivity, cryptography, web application development, numeric algorithms, and network communications. The class library is used by programmers, who combine it with their own code to produce applications.

Programs written for the .NET Framework execute in a software environment that manages the program's runtime requirements. Also part of the .NET Framework, this runtime environment is known as the Common Language Runtime (CLR). The CLR provides the appearance of an application virtual machine so that programmers need not consider the capabilities of the specific CPU that will execute the program. The CLR also provides other important services such as security, memory management, and exception handling. The class library and the CLR together constitute the .NET Framework.

Version 3.0 of the .NET Framework is included with Windows Server 2008 and Windows Vista. The current version of the framework can also be installed on Windows XP and the Windows Server 2003 family of operating systems. A reduced version of the .NET Framework is also available on Windows Mobile platforms, including smartphones as the .NET Compact Framework. Version 4.0 of the framework was released as a public Beta on 20 May 2009.

The intermediate CIL code is housed in .NET assemblies. As mandated by specification, assemblies are stored in the Portable Executable (PE) format, common on the Windows platform for all DLL and EXE files. The assembly consists of one or more files, one of which must contain the manifest, which has the metadata for the assembly. The complete name of an assembly (not to be confused with the filename on disk) contains its simple text name, version number, culture, and public key token. The public key token is a unique hash generated when the assembly is compiled, thus two assemblies with the same public key token are guaranteed to be identical from the point of view of the framework. A private key can also be specified known only to the creator of the assembly and can be used for strong naming and to guarantee that the assembly is from the same author when a new version of the assembly is compiled (required adding an assembly to the Global Assembly Cache).

Nanotechnology

Nanotechnology, shortened to "Nanotech", is the study of the control of matter on an atomic and molecular scale. Generally nanotechnology deals with structures of the size 100 nanometers or smaller, and involves developing materials or devices within that size. Nanotechnology is very diverse, ranging from novel extensions of conventional device physics, to completely new approaches based upon molecular self-assembly, to developing new materials with dimensions on the nanoscale, even to speculation on whether we can directly control matter on the atomic scale.

There has been much debate on the future of implications of nanotechnology. Nanotechnology has the potential to create many new materials and devices with wide-ranging applications, such as in medicine, electronics, and energy production. On the other hand, nanotechnology raises many of the same issues as with any introduction of new technology, including concerns about the toxicity and environmental impact of nanomaterials , and their potential effects on global economics, as well as speculation about various doomsday scenarios. These concerns have led to a debate among advocacy groups and governments on whether special regulation of nanotechnology is warranted.

One nanometer (nm) is one billionth, or 10-9, of a meter. By comparison, typical carbon-carbon bond lengths, or the spacing between these atoms in a molecule, are in the range 0.12-0.15 nm, and a DNA double-helix has a diameter around 2 nm. On the other hand, the smallest cellular life-forms, the bacteria of the genus Mycoplasma, are around 200 nm in length.

To put that scale in another context, the comparative size of a nanometer to a meter is the same as that of a marble to the size of the earth.[4] Or another way of putting it: a nanometer is the amount a man's beard grows in the time it takes him to raise the razor to his face. Two main approaches are used in nanotechnology. In the "bottom-up" approach, materials and devices are built from molecular components which assemble themselves chemically by principles of molecular recognition. In the "top-down" approach, nano-objects are constructed from larger entities without atomic-level control.

A number of physical phenomena become pronounced as the size of the system decreases. These include statistical mechanical effects, as well as quantum mechanical effects, for example the “quantum size effect” where the electronic properties of solids are altered with great reductions in particle size. This effect does not come into play by going from macro to micro dimensions. However, it becomes dominant when the nanometer size range is reached. Additionally, a number of physical (mechanical, electrical, optical, etc.) properties change when compared to macroscopic systems. One example is the increase in surface area to volume ratio altering mechanical, thermal and catalytic properties of materials. Diffusion and reactions at nanoscale, nanostructures materials and nanodevices with fast ion transport are generally referred to nanoionics. Novel mechanical properties of nanosystems are of interest in the nanomechanics research. The catalytic activity of nanomaterials also opens potential risks in their interaction with biomaterials.

Integrated development

An integrated development environment (IDE) also known as integrated design environment or integrated debugging environment is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of a: Source code editor, Compiler and/or interpreter, Build automation tools, Debugger. Ides are designed to maximize programmer productivity by providing tightly-knit components with similar user interfaces. This should mean that the programmer has much less mode switching to do than when using discrete development programs. However, because an IDE is by its very nature a complicated piece of software, this high productivity only occurs after a lengthy learning curve.

Typically an IDE is dedicated to a specific programming language, so as to provide a feature set which most closely matches the programming paradigms of the language. However, some multiple-language IDEs are in use, such as Eclipse, ActiveState Komodo, recent versions of NetBeans, Microsoft Visual Studio and WinDev.

IDEs typically present a single program in which all development is done. This program typically provides many features for authoring, modifying, compiling, deploying and debugging software. The aim is to abstract the configuration necessary to piece together command line utilities in a cohesive unit, which theoretically reduces the time to learn a language, and increases developer productivity. It is also thought that the tight integration of development tasks can further increase productivity. For example, code can be compiled while being written, providing instant feedback on syntax errors. While most modern IDEs are graphical, IDEs in use before the advent of windowing systems (such as Microsoft Windows or X11) were text-based, using function keys or hotkeys to perform various tasks (Turbo Pascal is a common example). This contrasts with software development using unrelated tools, such as vi, GCC or make.

IDEs initially became necessary when developing via a console or terminal. Early languages did not have one, since they were prepared using flowcharts, coding before being submitted to a compiler. Dartmouth BASIC was the first language to be created with an IDE (and was also the first to be designed for use while sitting in front of a console or terminal). Its IDE (part of the Dartmouth Time Sharing System) was command-based, and therefore did not look much like the menu-driven, graphical IDEs prevalent today. However it integrated editing, file management, compilation, debugging and execution in a manner consistent with a modern IDE.

Microcontroller

A microcontroller (also microcontroller unit, MCU or µC) is a small computer on a single integrated circuit consisting of a relatively simple CPU combined with support functions such as a crystal oscillator, timers, watchdog, serial and analog I/O etc. Program memory in the form of NOR flash or OTP ROM is also often included on chip, as well as a, typically small, read/write memory.

Microcontrollers are designed for small applications. Thus, in contrast to the microprocessors used in personal computers and other high-performance applications, simplicity is emphasized. Some microcontrollers may operate at clock frequencies as low as 32kHz, as this is adequate for many typical applications, enabling low power consumption (milliwatts or microwatts). They will generally have the ability to retain functionality while waiting for an event such as a button press or other interrupt; power consumption while sleeping (CPU clock and most peripherals off) may be just nanowatts, making many of them well suited for long lasting battery applications.

Microcontrollers are used in automatically controlled products and devices, such as automobile engine control systems, remote controls, office machines, appliances, power tools, and toys. By reducing the size and cost compared to a design that uses a separate microprocessor, memory, and input/output devices, microcontrollers make it economical to digitally control even more devices and processes.

The majority of computer systems in use today are embedded in other machinery, such as automobiles, telephones, appliances, and peripherals for computer systems. These are called embedded systems. While some embedded systems are very sophisticated, many have minimal requirements for memory and program length, with no operating system, and low software complexity. Typical input and output devices include switches, relays, solenoids, LEDs, small or custom LCD displays, radio frequency devices, and sensors for data such as temperature, humidity, light level etc. Embedded systems usually have no keyboard, screen, disks, printers, or other recognizable I/O devices of a personal computer, and may lack human interaction devices of any kind.

It is mandatory that microcontrollers provide real time response to events in the embedded system they are controlling. When certain events occur, an interrupt system can signal the processor to suspend processing the current instruction sequence and to begin an interrupt service routine (ISR). The ISR will perform any processing required based on the source of the interrupt before returning to the original instruction sequence. Possible interrupt sources are device dependent, and often include events such as an internal timer overflow, completing an analog to digital conversion, a logic level change on an input such as from a button being pressed, and data received on a communication link. Where power consumption is important as in battery operated devices, interrupts may also wake a microcontroller from a low power sleep state where the processor is halted until required to do something by a peripheral event.

Marketing Dominance:

Market dominance is a measure of the strength of a brand, product, service, or firm, relative to competitive offerings. There is often a geographic element to the competitive landscape. In defining market dominance, you must see to what extent a product, brand, or firm controls a product category in a given geographic area.
Calculating

There are several ways of calculating market dominance. The most direct is market share. This is the percentage of the total market serviced by a firm or brand. A declining scale of market shares is common in most industries: that is, if the industry leader has say 50% share, the next largest might have 25% share, the next 12% share, the next 6% share, and all remaining firms combined might have 7% share.

Market share is not a perfect proxy of market dominance. The influences of customers, suppliers, competitors in related industries, and government regulations must be taken into account. Although there are no hard and fast rules governing the relationship between market share and market dominance, the following are general criteria:
A company, brand, product, or service that has a combined market share exceeding 60% most probably has market power and market dominance.
A market share of over 35% but less than 60%, held by one brand, product or service, is an indicator of market strength but not necessarily dominance.
A market share of less than 35%, held by one brand, product or service, is not an indicator of strength or dominance and will not raise anti-combines concerns of government regulators.

Market shares within an industry might not exhibit a declining scale. There could be only two firms in a duopolistic market, each with 50% share; or there could be three firms in the industry each with 33% share; or 100 firms each with 1% share. The concentration ratio of an industry is used as an indicator of the relative size of leading firms in relation to the industry as a whole. One commonly used concentration ratio is the four-firm concentration ratio, which consists of the combined market share of the four largest firms, as a percentage, in the total industry. The higher the concentration ratio, the greater the market power of the leading firms.

Financial Crisis:

Banking crises
When a bank suffers a sudden rush of withdrawals by depositors, this is called a bank run. Since banks lend out most of the cash they receive in deposits (see fractional-reserve banking), it is difficult for them to quickly pay back all deposits if these are suddenly demanded, so a run may leave the bank in bankruptcy, causing many depositors to lose their savings unless they are covered by deposit insurance. A situation in which bank runs are widespread is called a systemic banking crisis or just a banking panic. A situation without widespread bank runs, but in which banks are reluctant to lend, because they worry that they have insufficient funds available, is often called a credit crunch. In this way, the banks become an accelerator of a financial crisis.

Examples of bank runs include the run on the Bank of the United States in 1931 and the run on Northern Rock in 2007. The collapse of Bear Stearns in 2008 has also sometimes been called a bank run, even though Bear Stearns was an investment bank rather than a commercial bank. The U.S. savings and loan crisis of the 1980s led to a credit crunch which is seen as a major factor in the U.S. recession of 1990-91.

Speculative bubbles and crashes
Economists say that a financial asset (stock, for example) exhibits a bubble when its price exceeds the present value of the future income (such as interest or dividends) that would be received by owning it to maturity. If most market participants buy the asset primarily in hopes of selling it later at a higher price, instead of buying it for the income it will generate, this could be evidence that a bubble is present. If there is a bubble, there is also a risk of a crash in asset prices: market participants will go on buying only as long as they expect others to buy, and when many decide to sell the price will fall. However, it is difficult to tell in practice whether an asset's price actually equals its fundamental value, so it is hard to detect bubbles reliably. Some economists insist that bubbles never or almost never occur.

Well-known examples of bubbles (or purported bubbles) and crashes in stock prices and other asset prices include the Dutch tulip mania, the Wall Street Crash of 1929, the Japanese property bubble of the 1980s, the crash of the dot-com bubble in 2000-2001, and the now-deflating United States housing bubble.

Wednesday, July 1, 2009

Advertising:

Advertising is a form of communication that typically attempts to persuade potential customers to purchase or to consume more of a particular brand of product or service. “While now central to the contemporary global economy and the reproduction of global production networks, it is only quite recently that advertising has been more than a marginal influence on patterns of sales and production. The formation of modern advertising was intimately bound up with the emergence of new forms of monopoly capitalism around the end of the 19th and beginning of the 20th century as one element in corporate strategies to create, organize and where possible control markets, especially for mass produced consumer goods. Mass production necessitated mass consumption, and

Organizations that frequently spend large sums of money on advertising that sells what is not, strictly speaking, a product or service include political parties, interest groups, religious organizations, and military recruiters. Non-profit organizations are not typical advertising clients, and may rely on free modes of persuasion, such as public service announcements.Money spent on advertising has increased dramatically in recent years. In 2007, spending on advertising has been estimated at over $150 billion in the United States and $385 billion worldwide, and the latter to exceed $450 billion by 2010.

While advertising can be seen as necessary for economic growth, it is not without social costs. Unsolicited Commercial Email and other forms of spam have become so prevalent as to have become a major nuisance to users of these services, as well as being a financial burden on internet service providers. Advertising is increasingly invading public spaces, such as schools, which some critics argue is a form of child exploitation.

Economic Development:

'Economic development' or 'development' is a term that economists, politicians, and others have used frequently in the 20th century. The concept, however, has been in existence in the West for centuries. Modernization, Westernization, and especially Industrialization are other terms people have used when discussing economic development. Although no one is sure when the concept originated, most people agree that development is closely bound up with the evolution of capitalism and the demise of feudalism."

Among other things, the contemporary social scientific study of economic development encompasses broad theories of the causes of industrial-economic modernization plus organizational and related aspects of enterprise development in modern societies. It embraces sociological-type research relating to business organization and enterprise development from a historical and comparative perspective; specific processes of the evolution (growth, modernization) of markets and management-employee relations; and culturally related cross-national similarities and differences in patterns of industrial organization in contemporary Western societies. On the subject of the nature and causes of the considerable variations that exist in levels of industrial-economic growth and performance internationally, it seeks answers to such questions as: "Why are levels of direct foreign investment and labor productivity significantly higher in some countries than in others?"

Economic Growth vs. Economic Development

Economic development refers to social and technological progress. Economic growth is often assumed to indicate the level of economic development. The term "economic growth" refers to the increase (or growth) of a specific measure such as real national income, gross domestic product, or per capita income. National income or product is commonly expressed in terms of a measure of the aggregate value-added output of the domestic economy called gross domestic product (GDP). When the GDP of a nation rises economists refer to it as economic growth.

The term economic development on the other hand, implies much more. It typically refers to improvements in a variety of indicators such as literacy rates, life expectancy, and poverty rates. GDP is a specific measure of economic welfare that does not take into account important aspects such as leisure time, environmental quality, freedom, or social justice. Economic growth of any specific measure is not a sufficient definition of economic development.

Online sales Assistant:

We are looking for a bright star who has experience in online marketing and who can use their skills to contribute to the growth in online sales. This is a challenging and rewarding role for someone who is commercial, analytical and personable and who wants the opportunity to gain experience in an established, fast growing business.

MarketingYou will work with the Marketing Manager and be involved in SEO activity, PPC campaigns, viral marketing, e-newsletters, and tactical PR and news management, as well as the development and improvement of our site layout and landing page content.You will also get involved in branding and events, CRM and their communications strategy.

Sales:
You will work with the B2B Account Manager and be involved in account setup, processing customer orders, order fulfillment and customer service.Reporting:
You will be required to report, analyze and forecast future online salesEssential Skills/Experience:You will need to have a minimum of 1 years B2B experience in an internet marketing focused role. You will have a working understanding of most of the following: SEO, PPC, Viral Marketing, e-Newsletters, Tactical PR, CRM, Email Marketing etc

Desirable Skills/Experience:
An understanding of how to use Dreamweaver and Photoshop
Able to work on own initiative and able to prioritize workload.
Able to work as part of a team with strong interpersonal skills.

Online Financial Business:

Aplicor Financial Services CRM Software Edition helps some of the largest commercial and retail banks, investment bankers, asset managers and insurance companies manage and automate front to back office processes so that staff are freed to focus on core activities such as increasing customer share, growing assets under management, creating wealth, ensuring regulatory compliance and expanding customer relationships.

The Financial Services CRM software edition delivers a pre-built industry specific on-demand solution to achieve key competitive advantages:
Make use of a 360 degree holistic customer view at every customer touch point to identify renewal processing, complimentary solutions, financial product promotions, cross-selling and up-selling opportunities, and other value added recommendations
Integrate better customer and household information with line of business financial products and customer portfolios in order to succeed in converting more referrals, growing customer share and increasing customer longevity
Leverage proven selling methodologies, systemic sales processes and a searchable library of best practices to increase sales conversion rates, sales person quota achievement and predictable revenue growth


Financial Services CRM provides at-a-glance viewing of the complete customer relationship along with insight into the customers portfolio, history, household, objectives, risk tolerance and interests. Centralized book of business and customer information enables staff to provide proactive product and policy management, easily create new quotes, automate renewal processes, grow the customer relationship and increase customer share.

Customer knowledge provides the single-greatest path to profitable organic growth in the financial services industry. The Financial Services Edition provides complete front-to-back office client information in a centralized 360 degree customer view. With one integrated system, staff views all client marketing interactions, sales communications, customer support incident history, client contacts and preferences, client documentation, complete purchasing history and outstanding sales and receivables information.

Telemarketing Call Centers

We’ve all heard jokes about telemarketers – from the calls during dinner to the “funny” things to say in response – but working in a call center can actually be a viable way to make a living if you enjoy speaking with people and providing good customer service. Today, many business owners feel that it’s important to try to reach new customers by phone. Therefore, finding a job with a telemarketing call center isn’t all that difficult. Working in the field, you’ll find that you experience many of the same issues as employees in other types of call centers.


In general, when you begin working as a telemarketer, you’ll be provided with a list of names, telephone numbers and a pre-written script to follow. Your objective will be to make direct contact with an individual and then try to sell them a product or service. Unfortunately, most people will tell you they aren’t interested in your product or hang up on you as soon as they figure out you are a telemarketer. In most cases, that happens as soon as you tell them your name and the company you represent – if you don’t deal well with rejection, seek another line of work.


Because telemarketers are often viewed as a nuisance, many consumers registered their phone numbers with the Do Not Call Registry. If you’re a telemarketer, you aren’t allowed to call individuals on this list. If you try to call an individual on this list and they determine that you’re a telemarketer, you may have to pay fines and penalties or be subject to investigation by law enforcement authorities.

Even though you may find a number of positions related to telemarketing, it’s not always an easy job. In particular, if you’re offered payment based on sales, you may find that it’ll take a huge amount of calls to attain any kind of success. On the other hand, as a telemarketer, you’ll gain experience dealing with many different kinds of people and communication behaviors, all while earning a healthy income.

Database management system:-

A database management system (DBMS) is computer software that manages databases. DBMSes may use any of a variety of database models, such as the network model or relational model. In large systems, a DBMS allows users and other software to store and retrieve data in a structured way.
A DBMS is a set of software programs that controls the organization, storage, management, and retrieval of data in a database. DBMS are categorized according to their data structures or types. It is a set of prewritten programs that are used to store, update and retrieve a Database. The DBMS accepts requests for data from the application program and instructs the operating system to transfer the appropriate data. When a DBMS is used, information systems can be changed much more easily as the organization's information requirements change. New categories of data can be added to the database without disruption to the existing system.

Organizations may use one kind of DBMS for daily transaction processing and then move the detail onto another computer that uses another DBMS better suited for random inquiries and analysis. Overall systems design decisions are performed by data administrators and systems analysts. Detailed database design is performed by database administrators.

Database servers are computers that hold the actual databases and run only the DBMS and related software. Database servers are usually multiprocessor computers, with generous memory and RAID disk arrays used for stable storage. Connected to one or more servers via a high-speed channel, hardware database accelerators are also used in large volume transaction processing environments. DBMSs are found at the heart of most database applications. Sometimes DBMSs are built around a private multitasking kernel with built-in networking support although nowadays these functions are left to the operating system.

Computer-aided design:-

Computer-aided design (CAD) is the use of computer technology for the design of objects, real or virtual. The design of geometric models for object shapes, in particular, is often called computer-aided geometric design (CAGD).

However CAD often involves more than just shapes. As in the manual drafting of technical and engineering drawings, the output of CAD often must convey also symbolic information such as materials, processes, dimensions, and tolerances, according to application-specific conventions. CAD may be used to design curves and figures in two-dimensional ("2D") space; or curves, surfaces, or solids in three-dimensional ("3D") objects.

CAD is an important industrial art extensively used in many applications, including automotive, shipbuilding, and aerospace industries, industrial and architectural design, prosthetics, and many more. CAD is also widely used to produce computer animation for special effects in movies, advertising, technical manuals. The modern ubiquity and power of computers means that even perfume bottles and shampoo dispensers are designed using techniques unheard of by shipbuilders of 1960s. Because of its enormous economic importance, CAD has been a major driving force for research in computational geometry, computer graphics (both hardware and software), and discrete differential geometry.
Current Computer-Aided Design software packages range from 2D vector-based drafting systems to 3D solid and surface modelers. Modern CAD packages can also frequently allow rotations in three dimensions, allowing viewing of a designed object from any desired angle, even from the inside looking out. Some CAD software is capable of dynamic mathematic modeling, in which case it may be marketed as CADD — computer-aided design and drafting.

CAD is used in the design of tools and machinery and in the drafting and design of all types of buildings, from small residential types (houses) to the largest commercial and industrial structures (hospitals and factories).CAD is mainly used for detailed engineering of 3D models and/or 2D drawings of physical components, but it is also used throughout the engineering process from conceptual design and layout of products, through strength and dynamic analysis of assemblies to definition of manufacturing methods of components.

Earn From Home Using Computer:-

Working from home with paid surveys is a wonderful way to earn some extra money but there is some basic information that you need to know before you enter this world. The first question on a lot of peoples mind is what are paid surveys? Major companies hire marketing people to find people like you and me.
Can you find real work at home? Even though are economy is not in a good place and the current state of affairs in the corporate world is not any better, there are ways to earn era money and that is to find real work at home. Working at Home has become very popular.

Do you have a son or daughter that is in college and needs to earn some extra money? How about having that child earn money working online since kids these days are always on the internet with applications like Face book, MySpace and other social platforms? Most young college students don’t see the huge potential to work.
Do you dream of your own money making business that's much better than a real job? Are you serious about earning money from home? Do you really want to work on your own terms and control your own life? We're here to help make your dreams a reality! Real people have used this site for years and continue to be floored by how successful they've become.

Search engine optimization:-

Search engine optimization (SEO) is the process of improving the volume or quality of traffic to a web site from search engines via "natural" ("organic" or "algorithmic") search results. Typically, the earlier a site appears in the search results list, the more visitors it will receive from the search engine. SEO may target different kinds of search, including image search, local search, and industry-specific vertical search engines. This gives a web site web presence.

As an Internet marketing strategy, SEO considers how search engines work and what people search for. Optimizing a website primarily involves editing its content and HTML coding to both increase its relevance to specific keywords and to remove barriers to the indexing activities of search engines.

The acronym "SEO" can also refer to "search engine optimizers," a term adopted by an industry of consultants who carry out optimization projects on behalf of clients, and by employees who perform SEO services in-house. Search engine optimizers may offer SEO as a stand-alone service or as a part of a broader marketing campaign. Because effective SEO may require changes to the HTML source code of a site, SEO tactics may be incorporated into web site development and design. The term "search engine friendly" may be used to describe web site designs, menus, content management systems and shopping carts that are easy to optimize.

Another class of techniques, known as black hat SEO or Spamdexing, use methods such as link farms and keyword stuffing that degrade both the relevance of search results and the user-experience of search engines. Search engines look for sites that employ these techniques in order to remove them from their indices.

Social Media Optimization:-

Social media optimization (SMO) is a set of methods for generating publicity through social media, online communities and community websites. Methods of SMO include adding RSS feeds, social news buttons, blogging, and incorporating third-party community functionalities like images and videos. Social media optimization is related to search engine marketing, but differs in several ways, primarily the focus on driving traffic from sources other than search engines, though improved search ranking is also a benefit of successful SMO.
Social media optimization is in many ways connected as a technique to viral marketing where word of mouth is created not through friends or family but through the use of networking in social bookmaking, video and photo sharing websites. In a similar way the engagement with blogs achieves the same by sharing content through the use of RSS in the blogosphere and special blog search engines.
Social Media optimization is considered an integral part of an online reputation management (ORM) or Search Engine Reputation Management (SERM) strategy for organizations or individuals who care about their online presence.
Template: Business Strategy Social Media Optimization (SMO) is not limited to marketing and brand building. Increasingly smart businesses are integrating social media participation as part of their knowledge management strategy (i.e. product/service development, recruiting, employee engagement and turnover, brand building, customer satisfaction and relations, business development and more).

Internet creative and technical:-

Internet marketing ties together creative and technical aspects of the Internet, including design, development, advertising, and sale.
Internet marketing also refers to the placement of media along different stages of the customer engagement cycle through search engine marketing (SEM), search engine optimization (SEO), banner ads on specific websites, e-mail marketing, and Web 2.0 strategies. In 2008 The New York Times working with COM Score published an initial estimate to quantify the user data collected by large Internet-based companies. Counting four types of interactions with company websites in addition to the hits from advertisements served from advertising networks, the authors found the potential for collecting data upward of 2,500 times on average per user per month.
One-to-one approach
The targeted user is typically browsing the Internet alone, so the marketing messages can reach them personally. This approach is used in search marketing, where the advertisements are based on search engine keywords entered by the user. And now with the advent of Web 2.0 tools, many users can interconnect as "peers."

Internet Marketing:-

Internet marketing, also referred to as i-marketing, web marketing, online marketing, or marketing, is the marketing of products or services over the Internet.
The Internet has brought many unique benefits to marketing, one of which being lower costs for the distribution of information and media to a global audience. The interactive nature of Internet marketing, both in terms of providing instant response and eliciting responses, is a unique quality of the medium. Internet marketing is sometimes considered to have a broader scope because it not only refers to digital media such as the Internet, e-mail, and wireless media; however, Internet marketing also includes management of digital customer data and electronic customer relationship management (ECRM) systems.

Brand Architecture:-

The different brands owned by a company are related to each other via brand architecture. In "product brand architecture", the company supports many different product brands with each having its own name and style of expression while the company itself remains invisible to consumers. Procter & Gamble, considered by many to have created product branding, is a choice example with its many unrelated consumer brands such as Tide, Pampers, Ivory and Pantene.

With "endorsed brand architecture", a mother brand is tied to product brands, such as The Courtyard Hotels (product brand name) by Marriott (mother brand name). Endorsed brands benefit from the standing of their mother brand and thus save a company some marketing expense by virtue promoting all the linked brands whenever the mother brand is advertised.

The third model of brand architecture is most commonly referred to as "corporate branding". The mother brand is used and all products carry this name and all advertising speaks with the same voice. A good example of this brand architecture is the UK-based conglomerate Virgin. Virgin brands all its businesses with its name (e.g., Virgin Mega store, Virgin Atlantic, Virgin Brides) and uses one style and logo to support each of them.

Types of brands

A number of different types of brands are recognized. A "premium brand" typically costs more than other products in the same category. An "economy brand" is a brand targeted to a high price elasticity market segment. A "fighting brand" is a brand created specifically to counter a competitive threat. When a company's name is used as a product brand name, this is referred to as corporate branding. When one brand name is used for several related products, this is referred to as family branding. When all a company's products are given different brand names, this is referred to as individual branding. When a company uses the brand equity associated with an existing brand name to introduce a new product or product line, this is referred to as "brand extension.


" When large retailers buy products in bulk from manufacturers and put their own brand name on them, this is called private branding, store brand, white labeling, private label or own brand (UK). Private brands can be differentiated from "manufacturers' brands" (also referred to as "national brands"). When different brands work together to market their products, this is referred to as "co-branding". When a company sells the rights to use a brand name to another company for use on a non-competing product or in another geographical area, this is referred to as "brand licensing." An "employment brand" is created when a company wants to build awareness with potential candidates. In many cases, such as Google, this brand is an integrated extension of their customer.

Brand Management:-

Brand management is the application of marketing techniques to a specific product, product line, or brand. It seeks to increase the product's perceived value to the customer and thereby increase brand franchise and brand equity. Marketers see a brand as an implied promise that the level of quality people have come to expect from a brand will continue with future purchases of the same product. This may increase sales by making a comparison with competing products more favorable. It may also enable the manufacturer to charge more for the product. The value of the brand is determined by the amount of profit it generates for the manufacturer.

This can result from a combination of increased sales and increased price, and/or reduced COGS (cost of goods sold), and/or reduced or more efficient marketing investment. All of these enhancements may improve the profitability of a brand, and thus, "Brand Managers" often carry line-management accountability for a brand's P&L (Profit and Loss) profitability, in contrast to marketing staff manager roles, which are allocated budgets from above, to manage and execute. In this regard, Brand Management is often viewed in organizations as a broader and more strategic role than Marketing alone.

he annual list of the world’s most valuable brands, published by Interbrand and Business Week, indicates that the market value of companies often consists largely of brand equity. Research by McKinsey & Company, a global consulting firm, in 2000 suggested that strong, well-leveraged brands produce higher returns to shareholders than weaker, narrower brands. Taken together, this means that brands seriously impact shareholder value, which ultimately makes branding a CEO responsibility.

Earn By Online Survey:-

People can earn money as survey takers online; the problem is often it isn’t very much. Surveys individually are fairly low paying so you’d have to take an awful lot of them and there aren’t always surveys available to take. It is this inconsistency that many people report as being the reason they failed to make a work from home job out of survey taking. However, for experienced business people and those going into business for the first time, an Internet Consultancy franchise with WSI is the ideal option for home based work. The benefits of having a professional team of experts behind the businessperson

It’s not necessary to have any previous technical experience. WSI has become a leading worldwide franchising opportunity by developing an extensive training program that will The reputation of WSI speaks for itself. Entrepreneur has consistently ranked WSI first in the worldwide internet franchising category. With 1500 franchisees operating around the world, we’ve grown and developed a unique business strategy and methods of operation that are designed to help you quickly start a profitable, sustainable business.

WSI has evolved a series of Business Solutions that are developed in one of our 12 production centers located in key, low-cost, yet technologically developed areas around the world. Your role will be to determine which of our solutions is the best fit is for your client by conducting an internet business analysis. In this manner you’ll be able to help businesses reduce costs and become more profitable. By working with small and medium-sized companies in your area you’ll be able to see firsthand the positive results of your successful franchise!

Online Banking Foreign exchange Jobs:-

In 2007, India's GDP was $1.237 trillion, which makes it the twelfth-largest economy in the world or fourth largest by purchasing power adjusted exchange rates. India's nominal per capita income of $1043 is ranked 136th in the world. In the late 2000s, India's growth has averaged 7.5% a year, increases which will double the average income within a decade. Unemployment rate is 7% (2008 estimate). Previously a closed economy, India's trade has grown fast.[ India currently accounts for 1.5% of World trade as of 2007 according to the WTO. According to the World Trade Statistics of the WTO in 2006, India's total merchandise trade (counting exports and imports) was valued at $294 billion in 2006 and India's services trade inclusive of export and import was $143 billion. Thus, India's global economic engagement in 2006 covering both merchandise and services trade was of the order of $437 billion, up by a record 72% from a level of $253 billion in 2004. India's trade has reached a still relatively moderate share 24% of GDP in 2006, up from 6% in 1985.

Despite robust economic growth, India continues to face several major problems. The recent economic development has widened the economic inequality across the country. Despite sustained high economic growth rate, approximately 80% of its population lives on less than $2 a day (PPP), more than double the same poverty rate in China. Even though the arrival of Green Revolution brought end to famines in India, 40% of children under the age of three are underweight and a third of all men and women suffer from economic crisis.

Online Banking Jobs:-

The economy of India is the twelfth largest in the world by market exchange rates and the fourth largest in the world by GDP measured on purchasing power parity (PPP) basis.

The country was under socialist-based policies for an entire generation from the 1950s until the 1980s. The economy was characterized by extensive regulation, protectionism, and public ownership, leading to pervasive corruption and slow growth. Since 1991, continuing economic liberalization has moved the economy towards a market-based system. By 2009, India had prominently established itself as the world's second-fastest growing major economy.

Agriculture is the predominant occupation in India, accounting for about 60% of employment. The service sector makes up a further 28% and industrial sector around 12%. One estimate says that only one in five job-seekers have had any sort of vocational training. The labor force totals half a billion workers. For output, the agricultural sector accounts for 17% of GDP; the service and industrial sectors make up 54% and 29% respectively. Major agricultural products include rice, wheat, oilseed, cotton, jute, tea, sugarcane, potatoes, cattle, water buffalo, sheep, goats, poultry and fish. Major industries include textiles, chemicals, food processing, steel, transportation equipment, cement, mining, petroleum, machinery and software design.

Data Entry Jobs How it Works:-

Once you become a DataEntryPortal.com member, you will have exclusive access to legitimate data entry opportunities via the Members Only Portal. You will be in control of which companies you want to work with and they will pay you directly via direct Deposit. Earnings are paid weekly and can be sent anywhere in the world. All that is required is a computer and access to the Internet and you can start making a significant income.
We update the Members Only Portal regularly with new information and send email notifications to all members with important updates. This will allow you to continumaking money for as long as you like All data is provided! Most forms are 1 - 3 pages and take only minutes to complete! You do not need any special software or hardware! Start earning immediately!

Work whenever and wherever you want. Full time and part time workers are needed worldwide and you can work as much or as little as you like. There are no minimum or maximum restrictions so you can work 1 day per month or every day. The more data you enter, the more money you make!

Data Entry Jobs:-

DataEntryPortal.com is the leading online data entry referral service. Through our network of TRUSTED partners, you can be confident that the opportunities are legitimate. Our goal is to provide our members with the most accurate and up-to-date information about online "work from home" data entry companies and help you avoid the scams. We are not a data entry company and do not solicit data entry workers. You will have access to both free and fee based opportunities around the world!Our members save time and money with the information provided in the Members Only Portal. We have helped thousands of online data entry workers find real data entry opportunities and start making good money working from home

BPO Jobs In Mumbai:-

A company may be able to grow at a faster pace as it will be less constrained by large capital expenditures for people or equipment that may take years to amortize, may become outdated or turn out to be a poor match for the company over time.
Although the above-mentioned arguments favor the view that BPO increases the flexibility of organizations, management needs to be careful with the implementation of it as there are a few stumbling blocks, which could counter these advantages. Among problems, which arise in practice are: A failure to meet service levels, unclear contractual issues, changing requirements and unforeseen charges, and a dependence on the BPO which reduces flexibility. Consequently, these challenges need to be considered before a company decides to engage in business process outsourcing.
A further issue is that in many cases there is little that differentiates the BPO providers other than size. They often provide similar services, have similar geographic footprints, leverage similar technology stacks, and have similar Quality Improvement approaches.

BPO Jobs:-

One of the most important advantages of BPO is the way in which it helps to increase a company’s flexibility. However, several sources have different ways in which they perceive organizational flexibility. Therefore business process outsourcing enhances the flexibility of an organization in different ways.
Most services provided by BPO vendors are offered on a fee-for-service basis. This helps a company becoming more flexible by transforming fixed into variable costs. A variable cost structure helps a company responding to changes in required capacity and does not require a company to invest in assets, hereby making the company more flexible. Outsourcing may provide a firm with increased flexibility in its resource management and may reduce response times to major environmental changes..
A third way in which BPO increases organizational flexibility is by increasing the speed of business processes. Using techniques such as linear programming can reduce cycle time and inventory levels, which can increase efficiency and cut costs. Supply chain management with the effective use of supply chain partners and business process outsourcing increases the speed of several business processes, such as the throughput in the case of a manufacturing company.

Apply Online Jobs Now:-

Start registering with those online job providing sites. There are around thousand sites providing these types of online money making opportunities. Registration is totally free with them. But selecting the genuine sites to work with will not be an easy task for you at this stage because it needs lot of payment analysis and updating on regular basis.

Keep in mind that there are several scam sites available on the internet in which you will never be paid for your hard work. They are total waste of your time and money. We after doing all those scrutiny for you have a large database of real online jobs which are very genuine in payment and also help you to earn money at home with no investment.

Online Computer jobs:-

Hundreds of advertising websites are ready to pay you for your online work. Advertisers display their product in the advertising companies’ websites and you will be paid for viewing on these online displays. And sometimes you need to share your opinion about their products honestly.
The startling fact is that you need not purchase or sell anything from them. Just sit! Just watch! Just answer! And get paid handsomely! Even a child too can do this kind of work. We know that by this time you would have realized that making money through online jobs is as easy as a cakewalk.

Online Tuition jobs:-

Aim-for-A Tutoring is looking for part-time and full-time tutors to provide online tutoring services to students worldwide. If you have a mastery of ANY subject, we would like to hear from you! You may be located anywhere in the world; if you have a computer with a broadband Internet connection, you can now be part of the revolution iteaching & learning. Method of tutoring The tutoring will be provided online using audio and data conferencing. Prospective tutors must have access to the following:
A personal computer with a broad band Internet access Computer speakers and a microphone Internet telephone software Skype
For some subjects, a digital tablet & pen mouse is highly recommended (details will be provided to you) The tutoring will also use a shared white board software that would be made available for free. Instructions for obtaining and installing the required software will be provided prior to the tutoring session. Tutoring Subjects & Goals Math, Science, English Language Arts, or any other subject Elementary, Middle, High School, and College Level, as well as general interest topics Homework help

Cryptography:-

Cryptography (or cryptology; from Greek krypton, "hidden, secret"; and graph, "I write", -logia, respectively) is the practice and study of hiding information. In modern times cryptography is considered a branch of both mathematics and computer science and is affiliated closely with information theory, computer security and engineering. Cryptography is used in applications present in technologically advanced societies; examples include the security of ATM cards, computer passwords and electronic commerce, which all depend on cryptography.
Before the modern era, cryptography was concerned solely with message confidentiality (i.e., encryption) — conversion of messages from a comprehensible form into an incomprehensible one and back again at the other end, rendering it unreadable by interceptors or eavesdroppers without secret knowledge (namely the key needed for decryption of that message). In recent decades, the field has expanded beyond confidentiality concerns to include techniques for message integrity checking, sender/receiver identity authentication, digital signatures, and interactive proofs and secure computation, among others.
The earliest forms of secret writing required little more than local pen and paper analogs, as most people could not read. More literacy, or opponent literacy, required actual cryptography. The main classical cipher types are transposition ciphers, which rearrange the order of letters in a message (e.g., 'hello world' becomes 'ehlol owrdl' in a trivially simple rearrangement scheme), and substitution ciphers, which systematically replace letters or groups of letters with other letters or groups of letters (e.g., 'fly at once' becomes by replacing each letter with the one following it in the English alphabet). Simple versions of either offered little confidentiality from enterprising opponents, and still don't. An early substitution cipher was the Caesar cipher, in which each letter in the plaintext was replaced by a letter some fixed number of positions further down the alphabet. It was named after Julius Caesar who is reported to have used it, with a shift of 3, to communicate with his generals during his military campaigns, just like EXCESS-3 code in Boolean algebra.
Encryption attempts to ensure secrecy in communications, such as those of spies, military leaders, and diplomats. There is record of several early Hebrew ciphers as well. Cryptography is recommended in the Kama Sutra as a way for lovers to communicate without inconvenient discovery. Steganography (i.e., hiding even the existence of a message so as to keep it confidential) was also first developed in ancient times. An early example, from Herodotus, concealed a message - a tattoo on a slave's shaved head - under the regrown hair. More modern examples of steganography include the use of invisible ink, microdots, and digital watermarks to conceal information.

Visual communication:-

Visual communication as the name suggests is communication through visual aid. It is the conveyance of ideas and information in forms that can be read or looked upon. Primarily associated with two dimensional images, it includes: signs, typography, drawing, graphic design, illustration, color and electronic resources. It solely relies on vision. It is form of communication with visual effect. It explores the idea that a visual message with text has a greater power to inform, educate or persuade a person. It is communication by presenting information through Visual form.
The evaluation of a good visual design is based on measuring comprehension by the audience, not on aesthetic or artistic preference. There are no universally agreed-upon principles of beauty and ugliness. There exists a variety of ways to present information visually, like gestures, body languages, video and TV. Here, focus is on the presentation of text, pictures, diagrams, photos, et cetera, integrated on a computer display. The term visual presentation is used to refer to the actual presentation of information. Recent research in the field has focused on web design and graphically oriented usability. Graphic designers use methods of visual communication in their professional practice.

Visual communication on the World Wide Web is perhaps the most important form of communication taking place when users are surfing the Internet. When experiencing the web, one uses the eyes as the primary sense and therefore the visual dísplay of a website is important for the users understanding of the communication taking place.

Visual communication by e-mail, a textual medium, is commonly approximated with ASCII art, emoticons, and embedded digital images.

Computer worm:-

A computer worm is a self-replicating computer program. It uses a network to send copies of itself to other nodes (computers on the network) and it may do so without any user intervention. Unlike a virus, it does not need to attach itself to an existing program. Worms almost always cause at least some harm to the network, if only by consuming bandwidth, whereas viruses almost always corrupt or devour files on a targeted computer.
Many worms that have been created are only designed to spread, and don't attempt to alter the systems they pass through. However, as the Morris worm and My doom showed, the network traffic and other unintended effects can often cause major disruption. A "payload" is code designed to do more than spread the worm - it might delete files on a host system (e.g., the Explore Zip worm), encrypt files in a crypto viral extortion attack, or send documents via e-mail. A very common payload for worms is to install a backdoor in the infected computer to allow the creation of a "zombie" computer under control of the worm author - So big and My doom are examples which created zombies. Networks of such machines are often referred to as botnets and are very commonly used by spam senders for sending junk email or to cloak their website's address. Spammers are therefore thought to be a source of funding for the creation of such worms, and the worm writers have been caught selling lists of IP addresses of infected machines. Others try to blackmail companies with threatened DoS attacks.

Beginning with the very first research into worms at Xerox PARC there have been attempts to create useful worms. The Nachi family of worms, for example, tried to download and install patches from Microsoft's website to fix vulnerabilities in the host system – by exploiting those same vulnerabilities. In practice, although this may have made these systems more secure, it generated considerable network traffic, rebooted the machine in the course of patching it, and did its work without the consent of the computer's owner or user.

Some worms, such as XSS worms, have been written for research to determine the factors of how worms spread, such as social activity and change in user behavior, while other worms are little more than a prank, such as one that sends the popular image macro of an owl with the phrase "O RLY?" to a print queue in the infected computer.

Worms spread by exploiting vulnerabilities in operating systems. All vendors supply regular security updates, and if these are installed to a machine then the majority of worms are unable to spread to it. If a vendor acknowledges vulnerability, but has yet to release a security update to patch it, a zero day exploit is possible. However, these are relatively rare.

Antivirus software:-

Antivirus (or anti-virus) software is used to prevent, detect, and remove malware, including computer viruses, worms, and Trojan horses. Such programs may also prevent and remove adware, spyware, and other forms of malware.
A variety of strategies are typically employed. Signature-based detection involves searching for known malicious patterns in executable code. However, it is possible for a user to be infected with new malware in which no signature exists yet. To counter such so called zero-day threats, heuristics can be used. One type of heuristic approach, generic signatures, can identify new viruses or variants of existing viruses for looking for known malicious code (or slight variations of such code) in files. Some antivirus software can also predict what a file will do if opened/run by emulating it in a sandbox and analyzing what it does to see if it performs any malicious actions. If it does, this could mean the file is malicious.

However, no matter how useful antivirus software is, it can sometimes have drawbacks. Antivirus software can degrade computer performance if it is not designed efficiently. Inexperienced users may have trouble understanding the prompts and decisions that antivirus software presents them with. An incorrect decision may lead to a security breach. If the antivirus software employs heuristic detection (of any kind), the success of it is going to depend on whether it achieves the right balance between false positives and false negatives. False positives can be as destructive as false negatives. In one case, a faulty virus signature issued by Symantec mistakenly removed essential operating system files, leaving thousands of PCs unable to boot. Finally, antivirus software generally runs at the highly trusted kernel level of the operating system, creating a potential avenue of attack.
An emerging technique to deal with malware in general is white listing. Rather than looking for only known bad software, this technique prevents execution of all computer code except that which has been previously identified as trustworthy by the system administrator. By following this "default deny" approach, the limitations inherent in keeping virus signatures up to date are avoided. Additionally, computer applications that are unwanted by the system administrator are prevented from executing since they are not on the white list. Since organizations often have large quantities of trusted applications, the limitations of adopting this technique rest with the system administrators' ability to properly inventory and maintain the white list of trusted applications. Viable implementations of this technique include tools for automating the inventory and white list maintenance processes.

Digital camera:-

A digital camera (or dig cam for short) is a camera that takes video or still photographs, or both, digitally by recording images via electronic image sensor. Many compact digital still cameras can record sound and moving video as well as still photographs. In the Western market, digital cameras outsell their 35 mm film counterparts.
Digital cameras can do things film cameras cannot: displaying images on a screen immediately after they are recorded, storing thousands of images on a single small memory device, recording video with sound, and deleting images to free storage space. Digital cameras are incorporated into many devices ranging from PDAs and mobile phones (called camera phones) to vehicles. The Hubble Space Telescope and other astronomical devices are essentially specialized digital cameras.
Compact cameras are designed to be small and portable and are particularly suitable for casual and "snapshot" use, thus are also called point-and-shoot camera. The smallest, generally less than 20 mm thick, are described as subcompacts or "ultra-compacts". Compact cameras are usually designed to be easy to use, sacrificing advanced features and picture quality for compactness and simplicity; images can usually only be stored using loss compression (JPEG). Most have a built-in flash usually of low power, sufficient for nearby subjects. Live preview is almost always used to frame the photo. They may have limited motion picture capability. Compacts often have macro capability, but if they have zoom capability the range is usually less than for bridge and DSLR cameras. They have a greater depth of field, allowing objects within a large range of distances from the camera to be in sharp focus.
Bridge cameras often have super zoom lenses which provide a very wide zoom range, typically between 10:1 and 18:1, which is attained at the cost of some distortions, including barrel and pincushion distortion, to a degree which varies with lens quality. These cameras are sometimes marketed as and confused with digital SLR cameras since the appearance is similar. Bridge cameras lack the mirror and reflex system of DSLRs, have so far been fitted with fixed (non-interchangeable) lenses (although in some cases accessory wide-angle or telephoto converters can be attached to the lens), can usually take movies with sound, and the scene is composed by viewing either the liquid crystal display or the electronic viewfinder (EVF). They are usually slower to operate than a true digital SLR, but they are capable of very good image quality (with sufficient light) while being more compact and lighter than DSLRs. The high-end models of this type have comparable resolutions to low and mid-range DSLRs. Many of these cameras can store images in lossless RAW format as an option to JPEG compression. The majority have a built-in flash, often a unit which flips up over the lens. The guide number tends to be between 11 and 15.

Memory card:-

A memory card or flash memory card is a solid-state electronic flash memory data storage device capable of storing digital contents. These are mainly used with digital cameras, handheld and Mobile computers, mobile phones, music players, video game consoles, and other electronics. They offer high re-record-ability, power-free storage, small form factor, and rugged environmental specifications. There are also non-solid-state memory cards that do not use flash memory, and there are different types of flash memory.
There are many different types of memory cards and jobs they are used for. Some common places include in digital cameras, game consoles, cell phones, and industrial applications. PC card (PCMCIA) were among first commercial memory card formats (type I cards) to come out in the 1990s, but are now only mainly used in industrial applications and for I/O jobs (using types I/II/III), as a connection standard for devices (such as a modem). Also in 1990s, a number of memory card formats smaller than PC Card came out, including Compact Flash, Smart Media, and Miniature Card. In other areas, tiny embedded memory cards (SID) were used in cell phones, game consoles started using proprietary memory card formats, and devices like PDAs and digital music players started using removable memory cards.
From the late 1990s into the early 2000s a host of new formats appeared, including SD/MMC, Memory Stick, xD-Picture Card, and a number of variants and smaller cards. The desire for ultra-small cards for cell-phones, PDAs, and compact digital cameras drove a trend toward smaller cards that left the previous generation of "compact" cards looking big. In digital cameras Smart Media and Compact Flash had been very successful, in 2001 SM alone captured 50% of the digital camera market and CF had a strangle hold on professional digital cameras.
By 2005 however, SD/MMC had nearly taken over Smart Media’s spot, though not to the same level and with stiff competition coming from Memory Stick variants, XD, as well as Compact Flash. In industrial fields, even the venerable PC card (PCMCIA) memory cards still manage to maintain a niche, while in cell-phones and PDAs, the memory card market is highly fragmented.

CD Walkman:-

The first CD based Walkman was initially launched in 1984 — the D-50 (D-5 in some markets). It was officially called the 'Discman', and this name has since been used informally to refer to such players. In recent years, Sony has dropped the Discman name and markets all its personal stereos under the Walkman brand.
Later Discman models featured ESP (Electronic Skip Protection), which pre-read the music from the CD into on-board memory and formed a type of buffer to prevent the CD skipping when the player was moved. The technology was since renamed 'G-Protection' and features a larger memory area, providing additional protection against skipping.
Sony still makes CD Walkmans — the newer models are capable of playing ATRAC3, ATRAC3plus, and MP3 CDs, and have become progressively thinner and more compact with each revision. Minidiscs come in a plastic caddy protecting the disc's surface from dust and scratches. Minidisc Walkmans are able to play and record Minidiscs from digital and analogue sources, such as live audio from their microphone inputs. The first unit on the market, the MZ-1 was relatively large and unpocketable, but following model, MZ-R2, and subsequent MD Walkmans are quite compact, with today's Minidisc Walkmans not much larger than the discs themselves.
Gradual improvements were made to Minidisc Walkmans through the years. The addition of MDLP (Minidisc Long Play) codec allowed up to 4 times the amount of music to be stored on one Minidisc, at the sacrifice of some sound quality. NetMD followed. In 2004, Hi-MD was introduced, enabling computer files as well as CD-quality audio to be recorded on the discs for the first time. By 2005, Sony had relaxed the restrictions in its Sonic Stage software to allow unrestricted digital transfers to and from Hi-MD and the computer.

Wireless headsets:-

Wireless headsets are quickly becoming a new trend for both business and consumer communications. There are a number of solutions for wireless, and they usually differ according to application and power-managementDECT wireless headseDECT (Digital Enhanced Cordless Telecommunication] is one the most common standards for cordless telephones. It uses 1.88 to 1.90 GHz RF (European Version) or 1.92 to 1.93 GHz RF (US Version), as the frequency bandwidth. Different countries have regulations for the bandwidth used in DECT, but most have pre-set this band for wireless audio transmission. The most common profile of DECT is GAP


(Generic Access Profile), which is used to ensure common communication between base station and its cordless handset. This common platform allows communication between the two devices even if they are from different manufacturers. For example, a Panasonic DECT base-station theoretically can connect to a Siemens DECT Handset. Based on this profile, developers such as Plantronics or Jabra have launched wireless headsets which can directly pair with any GAP-enable DECT telephones. So users with a DECT Wireless Headset can pair it with their home DECT phones and enjoy wireless communication.
Bluetooth wireless headsets:


Most users have heard about Bluetooth, and although this technology was designed originally for a much wider application, it has today become largely for voice transmission (a notable exception to this would be the use of Bluetooth in the Nintendo Wiimote). The reason for this general exclusivity is because of the power/range settings of Bluetooth. Bluetooth uses 2.4 GHz RF, similar to WLAN or Wi-Fi; however, by default it is set for a very close proximity usage for power consumption benefits. This deficiency for a longer-range coverage made Bluetooth technology un-desirable for data transmission. As nowadays, more and more mobile phones come equipped with Bluetooth, this technology has become a common wireless profile for wireless mobile phone headsets only.

When choosing a Bluetooth headset users should be aware that Bluetooth headsets come in different types as well. Standard Bluetooth headset's using version 1.0 or 1.1 are often a single-side monaural earpiece, which can only access the Headset/hands free profile of Bluetooth. Depending on the phone's operating system, this type of headset will either play music at a very low quality (because the phone is converting it into a voice signal) or will be unable to play music at all (because the phone cannot perform such a conversion). Users who need a stereo-music playing Bluetooth headset should look for a headset with the A2DP profile.[10] Users should note that some A2DP-equipped headsets will automatically de-activate the microphone function during music-listening, so if these headsets are paired to a computer via Bluetooth connection, the headset may either disable the stereo function or the microphone function.

Liquid crystal display:

A liquid crystal display (LCD) is an electronically-modulated optical device shaped into a thin, flat panel made up of any number of color or monochrome pixels filled with liquid crystals and arrayed in front of a light source (backlight) or reflector. It is often utilized in battery-powered electronic devices because it uses very small amounts of electric power.
A comprehensive classification of the various types and electro-optical modes of LCDs is provided in the article LCD classification.
Each pixel of an LCD typically consists of a layer of molecules aligned between two transparent electrodes, and two polarizing filters, the axes of transmission of which are (in most of the cases) perpendicular to each other. With no actual liquid crystal between the polarizing filters, light passing through the first filter would be blocked by the second (crossed) polarizer.
The surfaces of the electrodes that are in contact with the liquid crystal material are treated so as to align the liquid crystal molecules in a particular direction. This treatment typically consists of a thin polymer layer that is unidirectional rubbed using, for example, a cloth. The direction of the liquid crystal alignment is then defined by the direction of rubbing. Electrodes are made of a transparent conductor called Indium Tin Oxide (ITO).
Before applying an electric field, the orientation of the liquid crystal molecules is determined by the alignment at the surfaces. In a twisted nomadic device (still the most common liquid crystal device), the surface alignment directions at the two electrodes are perpendicular to each other, and so the molecules arrange themselves in a helical structure, or twist. This reduces the rotation of the polarization of the incident light, and the device appears grey. If the applied voltage is large enough, the liquid crystal molecules in the center of the layer are almost completely untwisted and the polarization of the incident light is not rotated as it passes through the liquid crystal layer. This light will then be mainly polarized perpendicular to the second filter, and thus be blocked and the pixel will appear black. By controlling the voltage applied across the liquid crystal layer in each pixel, light can be allowed to pass through in varying amounts thus constituting different levels of gray.

Touch screen:-

A touch screen is a display that can detect the presence and location of a touch within the display area. The term generally refers to touch or contact to the display of the device by a finger or hand. Touch screens can also sense other passive objects, such as a stylus. However, if the object sensed is active, as with a light pen, the term touch screen is generally not applicable. The ability to interact directly with a display typically indicates the presence of a touch screen. The touch screen has two main attributes. First, it enables one to interact with what is displayed directly on the screen, where it is displayed, rather than indirectly with a mouse or touchpad. Secondly, it lets one do so without requiring any intermediate device, again,
such as a stylus that needs to be held in the hand. Such displays can be attached to computers or, as terminals, to networks. They also play a prominent role in the design of digital appliances such as the personal digital assistant (PDA), satellite navigation devices, mobile phones, and video games. Building touch screens there are several principal ways to build a touch screen. The key goals are to recognize one or more fingers touching a display, to interpret the command that this represents, and to communicate the command to the appropriate application. In the most popular techniques called the capacitive or resistive approach, manufactures coat the screen with a thin, transparent metallic layer. When a user touches the surface, the system records the change in the electrical current that flows through the display.
Dispersive-signal technology which 3M created in 2002, measures the piezoelectric effect- the voltage generated when mechanical force is applied to a material- that occurs chemically when a strengthened glass substrate is touched. There are two infrared-based approaches. In one, any array of sensors detects finger touching or almost touching the display, there by interrupting light beams projected over the screen. In the other, bottom-mounted infrared cameras record screen touches. In each case, the system determines the intended command based on the controls showing on the screen at the time and the location of the touch.

USB flash drive:-

A USB flash drive consists of a NAND-type flash memory data storage device integrated with a USB (Universal Serial Bus) interface. USB flash drives are typically removable and rewritable, much smaller than a floppy disk, and most USB flash drives weigh less than an ounce (30 g). Storage capacities typically range from 64 MB to 128 GB with steady improvements in size and price per capacity. Some allow 1 million write or erase cycles and have 10-year data retention, connected by USB 1.1 or USB 2.0.
USB flash drives offer potential advantages over other portable storage devices, particularly the floppy disk. They have a more compact shape, operate faster, hold much more data, have a more durable design, and operate more reliably due to their lack of moving parts. Additionally, it has become increasingly common for computers to be sold without floppy disk drives. USB ports, on the other hand, appear on almost every current mainstream PC and laptop. These types of drives use the USB mass storage standard, supported natively by modern operating systems such as Windows, Mac OS X, Linux, and other Unix-like systems. USB drives with USB 2.0 support can also operate faster than an optical disc drive, while storing a larger amount of data in a much smaller space.
Nothing actually moves in a flash drive: the term drive persists because computers read and write flash-drive data using the same system commands as for a mechanical disk drive, with the storage appearing to the computer operating system and user interface as just another drive.
A flash drive consists of a small printed circuit board protected inside a plastic, metal, or rubberized case, robust enough for carrying with no additional protection—in a pocket or on a key chain, for example. The USB connector is protected by a removable cap or by retracting into the body of the drive, although it is not likely to be damaged if exposed (but it may damage other items, for example a bag it is placed in). Most flash drives use a standard type-A USB connection allowing plugging into a port on a personal computer, but drives for other interfaces also exist.

Designing a collection:-

A fashion collection is something that designer’s puts together each season to show their idea of new trends in both their high end couture range as well as their mass market range.

Fashion designers must take numerous matters into account when designing clothes for a collection, including consistency of theme and style. They will also take into account views of existing customers, previous fashions and styles of competitors, and anticipated fashion trends, as well as the season for the collection.
Designing a garment:
Fashion designers work in different ways. Some sketch their ideas on paper, while others drape fabric on a dress stand. When a designer is completely satisfied with the fit of the toile (or muslin), he or she will consult a professional pattern maker who then makes the finished, working version of the pattern out of card. The pattern maker's job is very precise and painstaking. The fit of the finished garment depends on their accuracy. Finally, a sample garment is made up in the proper fabric and tested on a fitting model.

Fashion design:-

Fashion design is the applied art dedicated to clothing and lifestyle accessories created within the cultural and social influences of a specific time. It differs from costume design which is considered to have a built in obsolescence usually of one to two seasons. A season is defined as either autumn/winter or spring/summer.
Structure
Fashion designers can work in a number of ways. Fashion designers may work full-time for one Fashion Company, known as in-house designers, which owns the designs. They may work alone or as part of a team. Freelance designer’s works for themselves, and sell their designs to fashion houses, directly to shops, or to clothing manufacturers. The garments bear the buyer's label. Some fashion designers set up their own labels, under which their designs are marketed.

Some fashion designers are self-employed and design for individual clients. Other high-fashion designers cater to specialty stores or high-fashion department stores. These designers create original garments, as well as those that follow established fashion trends. Most fashion designers, however, work for apparel manufacturers, creating designs of men’s, women’s, and children’s fashions for the mass market. Large designer brands which have a 'name' as their brand such as Calvin Klein, Ralph Lauren, or Chanel are likely to be designed by a team of individual designers under the direction of a designer director.

Object-oriented programming:

Object-oriented programming (OOP) is a programming paradigm that uses "objects" — data structures consisting of data fields and methods — and their interactions to design applications and computer programs. Programming techniques may include features such as information hiding, data abstraction, encapsulation, modularity, polymorphism, and inheritance. It was not commonly used in mainstream software application development until the early 1990s. Many modern programming languages now support OOP.
Object-oriented programming has roots that can be traced to the 1960s. As hardware and software became increasingly complex, quality was often compromised. Researchers studied ways to maintain software quality and developed object-oriented programming in part to address common problems by strongly emphasizing discrete, reusable units of programming logic. The methodology focuses on data rather than processes, with programs composed of self-sufficient modules (objects) each containing all the information needed to manipulate its own data structure.
This is in contrast to the existing modular programming which had been dominant for many years that focused on the function of a module, rather than specifically the data, but equally provided for code reuse, and self-sufficient reusable units of programming logic, enabling collaboration through the use of linked modules (subroutines). This more conventional approach, which still persists, tends to consider data and behavior separately.
An object-oriented program may thus be viewed as a collection of cooperating objects, as opposed to the conventional model, in which a program is seen as a list of tasks (subroutines) to perform. In OOP, each object is capable of receiving messages, processing data, and sending messages to other objects and can be viewed as an independent 'machine' with a distinct role or responsibility. The actions (or "operators") on these objects are closely associated with the object. For example, the data structures tend to carry their own operators around with them (or at least "inherit" them from a similar object or class).
The Similar programming language was the first to introduce the concepts underlying object-oriented programming (objects, classes, subclasses, virtual methods, co routines, and discrete event simulation) as a superset of Algol. Similar also used automatic garbage collection which had been invented earlier for the functional programming language Lisp. Similar was used for physical modeling, such as models to study and improve the movement of ships and their content through cargo ports. Smalltalk was the first programming language to be called "object-oriented".

Search engine optimization:

Search engine optimization (SEO) is the process of improving the volume or quality of traffic to a web site from search engines via "natural" ("organic" or "algorithmic") search results. Typically, the earlier a site appears in the search results list, the more visitors it will receive from the search engine. SEO may target different kinds of search, including image search, local search, and industry-specific vertical search engines. This gives a web site web presence.
As an Internet marketing strategy, SEO considers how search engines work and what people search for. Optimizing a website primarily involves editing its content and HTML coding to both increase its relevance to specific keywords and to remove barriers to the indexing activities of search engines.

The acronym "SEO" can also refer to "search engine optimizers," a term adopted by an industry of consultants who carry out optimization projects on behalf of clients, and by employees who perform SEO services in-house. Search engine optimizers may offer SEO as a stand-alone service or as a part of a broader marketing campaign. Because effective SEO may require changes to the HTML source code of a site, SEO tactics may be incorporated into web site development and design. The term "search engine friendly" may be used to describe web site designs, menus, content management systems and shopping carts that are easy to optimize.
Another class of techniques, known as black hat SEO or Spamdexing, use methods such as link farms and keyword stuffing that degrade both the relevance of search results and the user-experience of search engines. Search engines look for sites that employ these techniques in order to remove them from their indices.

Distributed computing:-

Distributed computing deals with hardware and software systems containing more than one processing element or storage element, concurrent processes, or multiple programs, running under a loosely or tightly controlled regime.
In distributed computing a program is split up into parts that run simultaneously on multiple computers communicating over a network. Distributed computing is a form of parallel computing, but parallel computing is most commonly used to describe program parts running simultaneously on multiple processors in the same computer. Both types of processing require dividing a program into parts that can run simultaneously, but distributed programs often must deal with heterogeneous environments, network links of varying latencies, and unpredictable failures in the network or the computers.
Organizing the interaction between the computers that execute distributed computations is of prime importance. In order to be able to use the widest possible variety of computers, the protocol or communication channel should not contain or use any information that may not be understood by certain machines. Special care must also be taken that messages are indeed delivered correctly and that invalid messages, which would otherwise bring down the system and perhaps the rest of the network, are rejected.
Another important factor is the ability to send software to another computer in a portable way so that it may execute and interact with the existing network. This may not always be practical when using differing hardware and resources, in which case other methods, such as cross-compiling or manually porting this software, must be used.
There are many different types of distributed computing systems and many challenges to overcome in successfully designing one. The main goal of a distributed computing system is to connect users and resources in a transparent, open, and scalable way. Ideally this arrangement is drastically more fault tolerant and more powerful than many combinations of stand-alone computer systems.

Computer architecture:-

Computer architecture in computer engineering is the conceptual design and fundamental operational structure of a computer system. It is a blueprint and functional description of requirements and design implementations for the various parts of a computer, focusing largely on the way by which the central processing unit (CPU) performs internally and accesses addresses in memory.
The term “architecture” in computer literature can be traced to the work of Lyle R. Johnson and Frederick P. Brooks, Jr., members in 1959 of the Machine Organization department in IBM’s main research center. Johnson had occasion to write a proprietary research communication about Stretch, an IBM-developed supercomputer for Los Alamos Scientific Laboratory; in attempting to characterize his chosen level of detail for discussing the luxuriously embellished computer, he noted that his description of formats, instruction types, hardware parameters, and speed enhancements aimed at the level of “system architecture” – a term that seemed more useful than “machine organization.” Subsequently Brooks, one of the Stretch designers, started Chapter 2 of a book by writing, “Computer architecture, like other architecture, is the art of determining the needs of the user of a structure and then designing to meet those needs as effectively as possible within economic and technological constraints.” Brooks went on to play a major role in the development of the IBM System/360 line of computers, where “architecture” gained currency as a noun with the definition “what the user needs to know.” Later the computer world would employ the term in many less-explicit ways.
The first mention of the term architecture in the referred computer literature is in a 1964 article describing the IBM System/360. The article defines architecture as the set of “attributes of a system as seen by the programmer, i.e., the conceptual structure and functional behavior, as distinct from the organization of the data flow and controls, the logical design, and the physical implementation.” In the definition, the programmer perspective of the computer’s functional behavior is key. The conceptual structure part of an architecture description makes the functional behavior comprehensible and extrapolatable to a range of Use cases. Only later on did ‘internals’ such as “the way by which the CPU performs internally and accesses addresses in memory,” mentioned above, slip into the definition of computer architecture.
There are two main types of speed, latency and throughput. Latency is the time between the start of a process and its completion. Throughput is the amount of work done per unit time. Interrupt latency is the guaranteed maximum response time of the system to an electronic event (e.g. when the disk drive finishes moving some data). Performance is affected by a very wide range of design choices — for example, pipelining a processor usually makes latency worse (slower) but makes throughput better. Computers that control machinery usually need low interrupt latencies. These computers operate in a real-time environment and fail if an operation is not completed in a specified amount of time. For example, computer-controlled anti-lock brakes must begin braking almost immediately after they have been instructed to brake.

Java (programming language):-

Java is a programming language originally developed by James Gosling at Sun Microsystems and released in 1995 as a core component of Sun Microsystems' Java platform. The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities. Java applications are typically compiled to byte code (class file) that can run on any Java virtual machine (JVM) regardless of computer architecture.

The original and reference implementation Java compilers, virtual machines, and class libraries were developed by Sun from 1995. As of May 2007, in compliance with the specifications of the Java Community Process, Sun made available most of their Java technologies as free software under the GNU General Public License. Others have also developed alternative implementations of these Sun technologies, such as the GNU Compiler for Java and GNU Class path
One characteristic of Java is portability, which means that computer programs written in the Java language must run similarly on any supported hardware/operating-system platform. One should be able to write a program once, compile it once, and run it anywhere.
This is achieved by compiling the Java language code, not to machine code but to Java byte code – instructions analogous to machine code but intended to be interpreted by a virtual machine (VM) written specifically for the host hardware. End-users commonly use a Java Runtime Environment (JRE) installed on their own machine for standalone Java applications, or in a Web browser for Java applets.

Standardized libraries provide a generic way to access host specific features such as graphics, threading and networking. In some JVM versions, byte code can be compiled to native code, either before or during program execution, resulting in faster execution. A major benefit of using byte code is porting. However, the overhead of interpretation means that interpreted programs almost always run more slowly than programs compiled to native executables would, and Java suffered a reputation for poor performance. This gap has been narrowed by a number of optimization techniques introduced in the more recent JVM implementations.

DVD - RAM

Dual-layer recording allows DVD-R and DVD+R discs to store significantly more data, up to 8.54 gigabytes per disc, compared with 4.7 gigabytes for single-layer discs. DVD-R DL was developed for the DVD Forum by Pioneer Corporation; DVD+R DL was developed for the DVD+RW Alliance by Philips and Mitsubishi Kagaku Media (MKM).
A dual-layer disc differs from its usual DVD counterpart by employing a second physical layer within the disc itself. The drive with dual-layer capability accesses the second layer by shining the laser through the first semitransparent layer. In some DVD players, the layer change can exhibit a noticeable pause, up to several seconds. This caused some viewers to worry that their dual-layer discs were damaged or defective, with the end result that studios began listing a standard message explaining the dual-layer pausing effect on all dual-layer disc packaging.
There are two modes for dual-layer orientation. With parallel track path (PTP), used on DVD-ROM, both layers start at the inside diameter (ID) and end at the outside diameter (OD) with the lead-out. With opposite track path (OTP), used on many DVD-Video discs, the lower layer starts at the ID and the upper layer starts at the OD, where the other layer ends; they share one lead-in and one lead-out. However, some DVD-Video discs also use a parallel track - such as those authored episodically, such as a disc with several separate episodes of a TV series, where more often than not, the layer change is in-between titles and therefore would not need to be authored in the opposite track path fashion.

DVD- VIDEO & AUDIO

DVD, also known as "Digital Versatile Disc" or "Digital Video Disc," is an optical disc storage media format. Its main uses are video and data storage. DVDs are of the same dimensions as compact discs (CDs) but store more than six times as much data. Variations of the term DVD often describe the way data is stored on the discs: DVD-ROM (Read Only Memory), has data that can only be read and not written, DVD-R and DVD+R can record data only once and then function as a DVD-ROM. DVD-RW, DVD+RW and DVD-RAM can both record and erase data multiple times. The wavelength used by standard DVD lasers is 650 nm,[1] and thus the light has a red color.
DVD-Video and DVD-Audio discs respectively refer to properly formatted and structured video and audio content. Other types of DVDs, including those with video content, may be referred to as DVD-Data discs. As next generation High Definition more advanced optical formats such as Blu-ray Disc also use a disc identical in some aspects, the original DVD is occasionally given the retronym SD DVD (for standard definition). However, the trademarked HD DVD discs have been discontinued since Blu-ray absorbed their market share.