<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>share it</title><description></description><managingEditor>noreply@blogger.com (SHARE IT)</managingEditor><pubDate>Thu, 5 Sep 2024 13:28:07 +0530</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">64</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://justviewssharing.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle/><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>Oracle Interview Questions And Answers </title><link>http://justviewssharing.blogspot.com/2012/10/oracle-interview-questions-and-answers_9.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Tue, 9 Oct 2012 08:06:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-4491977615861322912</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;What are the advantages of views?&lt;br /&gt;- Provide an additional level of table security, by restricting access to a predetermined set of rows and columns of a table.&lt;br /&gt;- Hide data complexity.&lt;br /&gt;- Simplify commands for the user.&lt;br /&gt;- Present the data in a different perspective from that of the base table.&lt;br /&gt;- Store complex queries.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Oracle sequence?&lt;br /&gt;A sequence generates a serial list of unique numbers for numerical columns of a database's tables.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a synonym?&lt;br /&gt;A synonym is an alias for a table, view, sequence or program unit.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the types of synonyms?&lt;br /&gt;There are two types of synonyms private and public.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a private synonym?&lt;br /&gt;Only its owner can access a private synonym.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a public synonym?&lt;br /&gt;Any database user can access a public synonym.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are synonyms used for?&lt;br /&gt;- Mask the real name and owner of an object.&lt;br /&gt;- Provide public access to an object&lt;br /&gt;- Provide location transparency for tables, views or program units of a remote database.&lt;br /&gt;- Simplify the SQL statements for database users.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Oracle index?&lt;br /&gt;An index is an optional structure associated with a table to have direct access to rows, which can be created to increase the performance of data retrieval. Index can be created on one or more columns of a table.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How are the index updates?&lt;br /&gt;Indexes are automatically maintained and used by Oracle. Changes to table data are automatically incorporated into all relevant indexes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a Tablespace?&lt;br /&gt;A database is divided into Logical Storage Unit called tablespace. A tablespace is used to grouped related logical structures together&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Rollback Segment ?&lt;br /&gt;A Database contains one or more Rollback Segments to temporarily store "undo" information.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the Characteristics of Data Files ?&lt;br /&gt;A data file can be associated with only one database. Once created a data file can't change size. One or more data files form a logical unit of database storage called a tablespace.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to define Data Block size ?&lt;br /&gt;A data block size is specified for each ORACLE database when the database is created. A database users and allocated free database space in ORACLE data blocks. Block size is specified in INIT.ORA file and can’t be changed latter.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What does a Control file Contain ?&lt;br /&gt;A Control file records the physical structure of the database. It contains the following information.&lt;br /&gt;Database Name&lt;br /&gt;Names and locations of a database's files and redolog files.&lt;br /&gt;Time stamp of database creation.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is difference between UNIQUE constraint and PRIMARY KEY constraint ?&lt;br /&gt;A column defined as UNIQUE can contain Nulls while a column defined as PRIMARY KEY can't contain Nulls.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Index Cluster ?&lt;br /&gt;A Cluster with an index on the Cluster Key&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;When does a Transaction end ?&lt;br /&gt;When it is committed or Rollbacked.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is the effect of setting the value "ALL_ROWS" for OPTIMIZER_GOAL parameter of the ALTER SESSION command ? What are the factors that affect OPTIMIZER in choosing an Optimization approach ?&lt;br /&gt;Answer The OPTIMIZER_MODE initialization parameter Statistics in the Data Dictionary the OPTIMIZER_GOAL parameter of the ALTER SESSION command hints in the statement.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is the effect of setting the value "CHOOSE" for OPTIMIZER_GOAL, parameter of the ALTER SESSION Command ?&lt;br /&gt;The Optimizer chooses Cost_based approach and optimizes with the goal of best throughput if statistics for atleast one of the tables accessed by the SQL statement exist in the data dictionary. Otherwise the OPTIMIZER chooses RULE_based approach.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How does one create a new database? (for DBA)&lt;br /&gt;One can create and modify Oracle databases using the Oracle "dbca" (Database Configuration Assistant) utility. The dbca utility is located in the $ORACLE_HOME/bin directory. The Oracle Universal Installer (oui) normally starts it after installing the database server software.&lt;br /&gt;One can also create databases manually using scripts. This option, however, is falling out of fashion, as it is quite involved and error prone. Look at this example for creating and Oracle 9i database:&lt;br /&gt;CONNECT SYS AS SYSDBA&lt;br /&gt;ALTER SYSTEM SET DB_CREATE_FILE_DEST='/u01/oradata/';&lt;br /&gt;ALTER SYSTEM SET DB_CREATE_ONLINE_LOG_DEST_1='/u02/oradata/';&lt;br /&gt;ALTER SYSTEM SET DB_CREATE_ONLINE_LOG_DEST_2='/u03/oradata/';&lt;br /&gt;CREATE DATABASE;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What database block size should I use? (for DBA)&lt;br /&gt;Oracle recommends that your database block size match, or be multiples of your operating system block size. One can use smaller block sizes, but the performance cost is significant. Your choice should depend on the type of application you are running. If you have many small transactions as with OLTP, use a smaller block size. With fewer but larger transactions, as with a DSS application, use a larger block size. If you are using a volume manager, consider your "operating system block size" to be 8K. This is because volume manager products use 8K blocks (and this is not configurable).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the different approaches used by Optimizer in choosing an execution plan ?&lt;br /&gt;Rule-based and Cost-based.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What does ROLLBACK do ?&lt;br /&gt;ROLLBACK retracts any of the changes resulting from the SQL statements in the transaction.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How does one coalesce free space ? (for DBA)&lt;br /&gt;SMON coalesces free space (extents) into larger, contiguous extents every 2 hours and even then, only for a short period of time.&lt;br /&gt;SMON will not coalesce free space if a tablespace's default storage parameter "pctincrease" is set to 0. With Oracle 7.3 one can manually coalesce a tablespace using the ALTER TABLESPACE ... COALESCE; command, until then use:&lt;br /&gt;SQL&amp;gt; alter session set events 'immediate trace name coalesce level n';&lt;br /&gt;Where 'n' is the tablespace number you get from SELECT TS#, NAME FROM SYS.TS$;&lt;br /&gt;You can get status information about this process by selecting from the SYS.DBA_FREE_SPACE_COALESCED dictionary view.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How does one prevent tablespace fragmentation? (for DBA)&lt;br /&gt;Always set PCTINCREASE to 0 or 100.&lt;br /&gt;Bizarre values for PCTINCREASE will contribute to fragmentation. For example if you set PCTINCREASE to 1 you will see that your extents are going to have weird and wacky sizes: 100K, 100K, 101K, 102K, etc. Such extents of bizarre size are rarely re-used in their entirety. PCTINCREASE of 0 or 100 gives you nice round extent sizes that can easily be reused. E.g.. 100K, 100K, 200K, 400K, etc.&lt;br /&gt;&lt;br /&gt;Use the same extent size for all the segments in a given tablespace. Locally Managed tablespaces (available from 8i onwards) with uniform extent sizes virtually eliminates any tablespace fragmentation. Note that the number of extents per segment does not cause any performance issue anymore, unless they run into thousands and thousands where additional I/O may be required to fetch the additional blocks where extent maps of the segment are stored.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Where can one find the high water mark for a table? (for DBA)&lt;br /&gt;There is no single system table, which contains the high water mark (HWM) for a table. A table's HWM can be calculated using the results from the following SQL statements:&lt;br /&gt;SELECT BLOCKS&lt;br /&gt;FROM DBA_SEGMENTS&lt;br /&gt;WHERE OWNER=UPPER(owner) AND SEGMENT_NAME = UPPER(table);&lt;br /&gt;ANALYZE TABLE owner.table ESTIMATE STATISTICS;&lt;br /&gt;SELECT EMPTY_BLOCKS&lt;br /&gt;FROM DBA_TABLES&lt;br /&gt;WHERE OWNER=UPPER(owner) AND SEGMENT_NAME = UPPER(table);&lt;br /&gt;Thus, the tables' HWM = (query result 1) - (query result 2) - 1&lt;br /&gt;NOTE: You can also use the DBMS_SPACE package and calculate the HWM = TOTAL_BLOCKS - UNUSED_BLOCKS - 1.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is COST-based approach to optimization ?&lt;br /&gt;Considering available access paths and determining the most efficient execution plan based on statistics in the data dictionary for the tables accessed by the statement and their associated clusters and indexes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What does COMMIT do ?&lt;br /&gt;COMMIT makes permanent the changes resulting from all SQL statements in the transaction. The changes made by the SQL statements of a transaction become visible to other user sessions transactions that start only after transaction is committed.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How are extents allocated to a segment? (for DBA)&lt;br /&gt;Oracle8 and above rounds off extents to a multiple of 5 blocks when more than 5 blocks are requested. If one requests 16K or 2 blocks (assuming a 8K block size), Oracle doesn't round it up to 5 blocks, but it allocates 2 blocks or 16K as requested. If one asks for 8 blocks, Oracle will round it up to 10 blocks.&lt;br /&gt;Space allocation also depends upon the size of contiguous free space available. If one asks for 8 blocks and Oracle finds a contiguous free space that is exactly 8 blocks, it would give it you. If it were 9 blocks, Oracle would also give it to you. Clearly Oracle doesn't always round extents to a multiple of 5 blocks.&lt;br /&gt;The exception to this rule is locally managed tablespaces. If a tablespace is created with local extent management and the extent size is 64K, then Oracle allocates 64K or 8 blocks assuming 8K-block size. Oracle doesn't round it up to the multiple of 5 when a tablespace is locally managed.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can one rename a database user (schema)? (for DBA)&lt;br /&gt;No, this is listed as Enhancement Request 158508. Workaround:&lt;br /&gt;Do a user-level export of user A&lt;br /&gt;create new user B&lt;br /&gt;Import system/manager fromuser=A touser=B&lt;br /&gt;Drop user A&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Oracle Interview Questions And Answers</title><link>http://justviewssharing.blogspot.com/2012/10/oracle-interview-questions-and-answers.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Tue, 9 Oct 2012 08:04:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-8601566353160985177</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
What are the components of physical database structure of Oracle database?&lt;br /&gt;Oracle database is comprised of three types of files. One or more datafiles, two are more redo log files, and one or more control files.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the components of logical database structure of Oracle database?&lt;br /&gt;There are tablespaces and database's schema objects.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a tablespace?&lt;br /&gt;A database is divided into Logical Storage Unit called tablespaces. A tablespace is used to grouped related logical structures together.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is SYSTEM tablespace and when is it created?&lt;br /&gt;Every Oracle database contains a tablespace named SYSTEM, which is automatically created when the database is created. The SYSTEM tablespace always contains the data dictionary tables for the entire database.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Explain the relationship among database, tablespace and data file ?&lt;br /&gt;Each databases logically divided into one or more tablespaces one or more data files are explicitly created for each tablespace.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is schema?&lt;br /&gt;A schema is collection of database objects of a user.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are Schema Objects?&lt;br /&gt;Schema objects are the logical structures that directly refer to the database's data. Schema objects include tables, views, sequences, synonyms, indexes, clusters, database triggers, procedures, functions packages and database links.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can objects of the same schema reside in different tablespaces?&lt;br /&gt;&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can a tablespace hold objects from different schemes?&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Oracle table?&lt;br /&gt;A table is the basic unit of data storage in an Oracle database. The tables of a database hold all of the user accessible data. Table data is stored in rows and columns.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Oracle view?&lt;br /&gt;A view is a virtual table. Every view has a query attached to it. (The query is a SELECT statement that identifies the columns and rows of the table(s) the view uses.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Partial Backup ?&lt;br /&gt;A Partial Backup is any operating system backup short of a full backup, taken while the database is open or shut down.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Mirrored on-line Redo Log ?&lt;br /&gt;A mirrored on-line redo log consists of copies of on-line redo log files physically located on separate disks, changes made to one member of the group are made to all members&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Full Backup ?&lt;br /&gt;A full backup is an operating system backup of all data files, on-line redo log files and control file that constitute ORACLE database and the parameter.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can a View based on another View ?&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can a Tablespace hold objects from different Schemes ?&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can objects of the same Schema reside in different tablespace ?&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is the use of Control File ?&lt;br /&gt;When an instance of an ORACLE database is started, its control file is used to identify the database and redo log files that must be opened for database operation to proceed. It is also used in database recovery.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Do View contain Data ?&lt;br /&gt;Views do not contain or store data.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the Referential actions supported by FOREIGN KEY integrity constraint ?&lt;br /&gt;UPDATE and DELETE Restrict - A referential integrity rule that disallows the update or deletion of referenced data. DELETE Cascade - When a referenced row is deleted all associated dependent rows are deleted.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the type of Synonyms?&lt;br /&gt;There are two types of Synonyms Private and Public.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a Redo Log ?&lt;br /&gt;The set of Redo Log files YSDATE,UID,USER or USERENV SQL functions, or the pseudo columns LEVEL or ROWNUM.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Index Segment ?&lt;br /&gt;Each Index has an Index segment that stores all of its data.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Explain the relationship among Database, Tablespace and Data file?&lt;br /&gt;Each databases logically divided into one or more tablespaces one or more data files are explicitly created for each tablespace&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are the different type of Segments ?&lt;br /&gt;Data Segment, Index Segment, Rollback Segment and Temporary Segment.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are Clusters ?&lt;br /&gt;Clusters are groups of one or more tables physically stores together to share common columns and are often used together.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Integrity Constrains ?&lt;br /&gt;An integrity constraint is a declarative way to define a business rule for a column of a table.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Index ?&lt;br /&gt;An Index is an optional structure associated with a table to have direct access to rows, which can be created to increase the performance of data retrieval. Index can be created on one or more columns of a table.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is an Extent ?&lt;br /&gt;An Extent is a specific number of contiguous data blocks, obtained in a single allocation, and used to store a specific type of information.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a View ?&lt;br /&gt;A view is a virtual table. Every view has a Query attached to it. (The Query is a SELECT statement that identifies the columns and rows of the table(s) the view uses.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Table ?&lt;br /&gt;A table is the basic unit of data storage in an ORACLE database. The tables of a database hold all of the user accessible data. Table data is stored in rows and columns.&lt;br /&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Dot Net Interview Questions</title><link>http://justviewssharing.blogspot.com/2012/10/dot-net-interview-questions.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Tue, 9 Oct 2012 08:01:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-8675045222178278446</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
What is .NET?&lt;br /&gt;.NET is essentially a framework for software development.It is similar in nature to any other software development framework (J2EE etc) in that it provides a set of runtime containers/capabilities, and a rich set of pre-built functionality in the form of class libraries and APIs &lt;br /&gt;&lt;br /&gt;The .NET Framework is an environment for building, deploying, and running Web Services and other applications. It consists of three main parts: the Common Language Runtime, the Framework classes, and ASP.NET. &lt;br /&gt;&lt;br /&gt;1. How many languages .NET is supporting now? &lt;br /&gt;When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. The site DotNetLanguages.Net says 44 languages are supported. &lt;br /&gt;&lt;br /&gt;2. How is .NET able to support multiple languages? &lt;br /&gt;A language should comply with the Common Language Runtime standard to become a .NET language. In .NET, code is compiled to Microsoft Intermediate Language (MSIL for short). This is called as Managed Code. This Managed code is run in .NET environment. So after compilation to this IL the language is not a barrier. A code can call or use a function written in another language. &lt;br /&gt;&lt;br /&gt;3. How ASP .NET different from ASP? &lt;br /&gt;Scripting is separated from the HTML, Code is compiled as a DLL, these DLLs can be executed on the server. &lt;br /&gt;&lt;br /&gt;4. What is smart navigation? &lt;br /&gt;The cursor position is maintained when the page gets refreshed due to the server side validation and the page gets refreshed. &lt;br /&gt;&lt;br /&gt;5. What is view state? &lt;br /&gt;The web is stateless. But in ASP.NET, the state of a page is maintained in the in the page itself automatically. How? The values are encrypted and saved in hidden controls. this is done automatically by the ASP.NET. This can be switched off / on for a single control &lt;br /&gt;&lt;br /&gt;6. How do you validate the controls in an ASP .NET page? &lt;br /&gt;Using special validation controls that are meant for this. We have Range Validator, Email Validator. &lt;br /&gt;&lt;br /&gt;7. Can the validation be done in the server side? Or this can be done only in the Client side? &lt;br /&gt;Client side is done by default. Server side validation is also possible. We can switch off the client side and server side can be done.&lt;br /&gt;&lt;br /&gt;8. How to manage pagination in a page? &lt;br /&gt;Using pagination option in DataGrid control. We have to set the number of records for a page, then it takes care of pagination by itself. &lt;br /&gt;&lt;br /&gt;9. What is ADO .NET and what is difference between ADO and ADO.NET? &lt;br /&gt;ADO.NET is stateless mechanism. I can treat the ADO.Net as a separate in-memory database where in I can use relationships between the tables and select insert and updates to the database. I can update the actual database as a batch. &lt;br /&gt;&lt;br /&gt;11. Observations between VB.NET and VC#.NET? &lt;br /&gt;Choosing a programming language depends on your language experience and the scope of the application you are building. While small applications are often created using only one language, it is not uncommon to develop large applications using multiple languages. &lt;br /&gt;&lt;br /&gt;For example, if you are extending an application with existing XML Web services, you might use a scripting language with little or no programming effort. For client-server applications, you would probably choose the single language you are most comfortable with for the entire application. For new enterprise applications, where large teams of developers create components and services for deployment across multiple remote sites, the best choice might be to use several languages depending on developer skills and long-term maintenance expectations. &lt;br /&gt;&lt;br /&gt;The .NET Platform programming languages - including Visual Basic .NET, Visual C#, and Visual C++ with managed extensions, and many other programming languages from various vendors - use .NET Framework services and features through a common set of unified classes. The .NET unified classes provide a consistent method of accessing the platform's functionality. If you learn to use the class library, you will find that all tasks follow the same uniform architecture. You no longer need to learn and master different API architectures to write your applications. &lt;br /&gt;&lt;br /&gt;In most situations, you can effectively use all of the Microsoft programming languages. Nevertheless, each programming language has its relative strengths and you will want to understand the features unique to each language. The following sections will help you choose the right programming language for your application. &lt;br /&gt;&lt;br /&gt;Visual Basic .NET&lt;br /&gt;&lt;br /&gt;Visual Basic .NET is the next generation of the Visual Basic language from Microsoft. With Visual Basic you can build .NET applications, including Web services and ASP.NET Web applications, quickly and easily. Applications made with Visual Basic are built on the services of the common language runtime and take advantage of the .NET Framework. &lt;br /&gt;&lt;br /&gt;Visual Basic has many new and improved features such as inheritance, interfaces, and overloading that make it a powerful object-oriented programming language. Other new language features include free threading and structured exception handling. Visual Basic fully integrates the .NET Framework and the common language runtime, which together provide language interoperability, garbage collection, enhanced security, and improved versioning support. A Visual Basic support single inheritance and creates Microsoft intermediate language (MSIL) as input to native code compilers. &lt;br /&gt;&lt;br /&gt;Visual Basic is comparatively easy to learn and use, and Visual Basic has become the programming language of choice for hundreds of thousands of developers over the past decade. An understanding of Visual Basic can be leveraged in a variety of ways, such as writing macros in Visual Studio and providing programmability in applications such as Microsoft Excel, Access, and Word. &lt;br /&gt;&lt;br /&gt;Visual Basic provides prototypes of some common project types, including:&lt;br /&gt;&lt;br /&gt;• Windows Application.&lt;br /&gt;• Class Library.&lt;br /&gt;• Windows Control Library.&lt;br /&gt;• ASP.NET Web Application.&lt;br /&gt;• ASP.NET Web Service.&lt;br /&gt;• Web Control Library.&lt;br /&gt;• Console Application.&lt;br /&gt;• Windows Service.&lt;br /&gt;• Windows Service.&lt;br /&gt;&lt;br /&gt;Visual C# .NET&lt;br /&gt;&lt;br /&gt;Visual C# (pronounced C sharp) is designed to be a fast and easy way to create .NET applications, including Web services and ASP.NET Web applications. Applications written in Visual C# are built on the services of the common language runtime and take full advantage of the .NET Framework. &lt;br /&gt;&lt;br /&gt;C# is a simple, elegant, type-safe, object-oriented language recently developed by Microsoft for building a wide range of applications. Anyone familiar with C and similar languages will find few problems in adapting to C#. C# is designed to bring rapid development to the C++ programmer without sacrificing the power and control that are a hallmark of C and C++. Because of this heritage, C# has a high degree of fidelity with C and C++, and developers familiar with these languages can quickly become productive in C#. C# provides intrinsic code trust mechanisms for a high level of security, garbage collection, and type safety. C# supports single inheritance and creates Microsoft intermediate language (MSIL) as input to native code compilers. &lt;br /&gt;&lt;br /&gt;C# is fully integrated with the .NET Framework and the common language runtime, which together provide language interoperability, garbage collection, enhanced security, and improved versioning support. C# simplifies and modernizes some of the more complex aspects of C and C++, notably namespaces, classes, enumerations, overloading, and structured exception handling. C# also eliminates C and C++ features such as macros, multiple inheritance, and virtual base classes. For current C++ developers, C# provides a powerful, high-productivity language alternative. &lt;br /&gt;&lt;br /&gt;Visual C# provides prototypes of some common project types, including:&lt;br /&gt;&lt;br /&gt;• Windows Application.&lt;br /&gt;• Class Library.&lt;br /&gt;• Windows Control Library.&lt;br /&gt;• ASP.NET Web Application.&lt;br /&gt;• ASP.NET Web Service.&lt;br /&gt;• Web Control Library.&lt;br /&gt;• Console Application.&lt;br /&gt;• Windows Service.&lt;br /&gt;&lt;br /&gt;12. Advantages of migrating to VB.NET ? &lt;br /&gt;Visual Basic .NET has many new and improved language features — such as inheritance, interfaces, and overloading that make it a powerful object-oriented programming language. As a Visual Basic developer, you can now create multithreaded, scalable applications using explicit multithreading. Other new language features in Visual Basic .NET include structured exception handling, custom attributes, and common language specification (CLS) compliance. &lt;br /&gt;&lt;br /&gt;The CLS is a set of rules that standardizes such things as data types and how objects are exposed and interoperate. Visual Basic .NET adds several features that take advantage of the CLS. Any CLS-compliant language can use the classes, objects, and components you create in Visual Basic .NET. And you, as a Visual Basic user, can access classes, components, and objects from other CLS-compliant programming languages without worrying about language-specific differences such as data types. &lt;br /&gt;&lt;br /&gt;CLS features used by Visual Basic .NET programs include assemblies, namespaces, and attributes. &lt;br /&gt;&lt;br /&gt;These are the new features to be stated briefly:&lt;br /&gt;&lt;br /&gt;Inheritance&lt;br /&gt;Visual Basic .NET supports inheritance by allowing you to define classes that serve as the basis for derived classes. Derived classes inherit and can extend the properties and methods of the base class. They can also override inherited methods with new implementations. All classes created with Visual Basic .NET are inheritable by default. Because the forms you design are really classes, you can use inheritance to define new forms based on existing ones. &lt;br /&gt;&lt;br /&gt;Exception Handling&lt;br /&gt;Visual Basic .NET supports structured exception handling, using an enhanced version of the Try...Catch...Finally syntax supported by other languages such as C++. &lt;br /&gt;&lt;br /&gt;Structured exception handling combines a modern control structure (similar to Select Case or While) with exceptions, protected blocks of code, and filters. Structured exception handling makes it easy to create and maintain programs with robust, comprehensive error handlers. &lt;br /&gt;&lt;br /&gt;Overloading&lt;br /&gt;Overloading is the ability to define properties, methods, or procedures that have the same name but use different data types. Overloaded procedures allow you to provide as many implementations as necessary to handle different kinds of data, while giving the appearance of a single, versatile procedure. Overriding Properties and Methods The Overrides keyword allows derived objects to override characteristics inherited from parent objects. Overridden members have the same arguments as the members inherited from the base class, but different implementations. A member's new implementation can call the original implementation in the parent class by preceding the member name with MyBase. &lt;br /&gt;&lt;br /&gt;Constructors and Destructors&lt;br /&gt;Constructors are procedures that control initialization of new instances of a class. Conversely, destructors are methods that free system resources when a class leaves scope or is set to Nothing. Visual Basic .NET supports constructors and destructors using the Sub New and Sub Finalize procedures. &lt;br /&gt;&lt;br /&gt;Data Types&lt;br /&gt;Visual Basic .NET introduces three new data types. The Char data type is an unsigned 16-bit quantity used to store Unicode characters. It is equivalent to the .NET Framework System. Char data type. The Short data type, a signed 16-bit integer, was named Integer in earlier versions of Visual Basic. The Decimal data type is a 96-bit signed integer scaled by a variable power of 10. In earlier versions of Visual Basic, it was available only within a Variant. &lt;br /&gt;&lt;br /&gt;Interfaces&lt;br /&gt;Interfaces describe the properties and methods of classes, but unlike classes, do not provide implementations. The Interface statement allows you to declare interfaces, while the Implements statement lets you write code that puts the items described in the interface into practice. &lt;br /&gt;&lt;br /&gt;Delegates&lt;br /&gt;Delegates objects that can call the methods of objects on your behalf are sometimes described as type-safe, object-oriented function pointers. You can use delegates to let procedures specify an event handler method that runs when an event occurs. You can also use delegates with multithreaded applications. For details, see Delegates and the AddressOf Operator. &lt;br /&gt;&lt;br /&gt;Shared Members&lt;br /&gt;Shared members are properties, procedures, and fields that are shared by all instances of a class. Shared data members are useful when multiple objects need to use information that is common to all. Shared class methods can be used without first creating an object from a class. &lt;br /&gt;&lt;br /&gt;References&lt;br /&gt;References allow you to use objects defined in other assemblies. In Visual Basic .NET, references point to assemblies instead of type libraries. For details, see References and the Imports Statement. Namespaces Namespaces prevent naming conflicts by organizing classes, interfaces, and methods into hierarchies. &lt;br /&gt;&lt;br /&gt;Assemblies&lt;br /&gt;Assemblies replace and extend the capabilities of type libraries by, describing all the required files for a particular component or application. An assembly can contain one or more namespaces. &lt;br /&gt;&lt;br /&gt;Attributes&lt;br /&gt;Attributes enable you to provide additional information about program elements. For example, you can use an attribute to specify which methods in a class should be exposed when the class is used as a XML Web service. &lt;br /&gt;&lt;br /&gt;Multithreading&lt;br /&gt;Visual Basic .NET allows you to write applications that can perform multiple tasks independently. A task that has the potential of holding up other tasks can execute on a separate thread, a process known as multithreading. By causing complicated tasks to run on threads that are separate from your user interface, multithreading makes your applications more responsive to user input.&lt;br /&gt;&lt;br /&gt;13. Advantages of VB.NET &lt;br /&gt;&lt;br /&gt;First of all, VB.NET provides managed code execution that runs under the Common Language Runtime (CLR), resulting in robust, stable and secure applications. All features of the .NET framework are readily available in VB.NET. &lt;br /&gt;&lt;br /&gt;VB.NET is totally object oriented. This is a major addition that VB6 and other earlier releases didn't have. &lt;br /&gt;&lt;br /&gt;The .NET framework comes with ADO.NET, which follows the disconnected paradigm, i.e. once the required records are fetched the connection no longer exists. It also retrieves the records that are expected to be accessed in the immediate future. This enhances Scalability of the application to a great extent. &lt;br /&gt;&lt;br /&gt;VB.NET uses XML to transfer data between the various layers in the DNA Architecture i.e. data are passed as simple text strings. &lt;br /&gt;&lt;br /&gt;Error handling has changed in VB.NET. A new Try-Catch-Finally block has been introduced to handle errors and exceptions as a unit, allowing appropriate action to be taken at the place the error occurred thus discouraging the use of ON ERROR GOTO statement. This again credits to the maintainability of the code. &lt;br /&gt;&lt;br /&gt;Another great feature added to VB.NET is free threading against the VB single-threaded apartment feature. In many situations developers need spawning of a new thread to run as a background process and increase the usability of the application. VB.NET allows developers to spawn threads wherever they feel like, hence giving freedom and better control on the application. &lt;br /&gt;&lt;br /&gt;Security has become more robust in VB.NET. In addition to the role-based security in VB6, VB.NET comes with a new security model, Code Access security. This security controls on what the code can access. For example you can set the security to a component such that the component cannot access the database. This type of security is important because it allows building components that can be trusted to various degrees. &lt;br /&gt;&lt;br /&gt;The CLR takes care of garbage collection i.e. the CLR releases resources as soon as an object is no more in use. This relieves the developer from thinking of ways to manage memory. CLR does this for them. &lt;br /&gt;&lt;br /&gt;14. Using ActiveX Control in .Net&lt;br /&gt;ActiveX control is a special type of COM component that supports a User Interface. Using ActiveX Control in your .Net Project is even easier than using COM component. They are bundled usually in .ocx files. Again a proxy assembly is made by .Net utility AxImp.exe (which we will see shortly) which your application (or client) uses as if it is a .Net control or assembly. &lt;br /&gt;&lt;br /&gt;Making Proxy Assembly For ActiveX Control: First, a proxy assembly is made using AxImp.exe (acronym for ActiveX Import) by writing following command on Command Prompt: &lt;br /&gt;&lt;br /&gt;C:&amp;gt; AxImp C:MyProjectsMyControl.ocx&lt;br /&gt;&lt;br /&gt;This command will make two dlls, e.g., in case of above command &lt;br /&gt;&lt;br /&gt;MyControl.dll&lt;br /&gt;AxMyControl.dll&lt;br /&gt;&lt;br /&gt;The first file MyControl.dll is a .Net assembly proxy, which allows you to reference the ActiveX as if it were non-graphical object. &lt;br /&gt;The second file AxMyControl.dll is the Windows Control, which allows u to use the graphical aspects of activex control and use it in the Windows Form Project. &lt;br /&gt;&lt;br /&gt;Adding Reference of ActiveX Proxy Assembly in your Project Settings: To add a reference of ActiveX Proxy Assembly in our Project, do this: &lt;br /&gt;&lt;br /&gt;o Select ProjectàAdd Reference (Select Add Reference from Project Menu).&lt;br /&gt;o This will show you a dialog box, select .Net tab from the top of window.&lt;br /&gt;o Click Browse button on the top right of window.&lt;br /&gt;o Select the dll file for your ActiveX Proxy Assembly (which is MyControl.dll) and click OK o Your selected component is now shown in the ‘Selected Component’ List Box. Click OK again Some More On Using COM or ActiveX in .Net&lt;br /&gt;&lt;br /&gt;.Net only provides wrapper class or proxy assembly (Runtime Callable Wrapper or RCW) for COM or activeX control. In the background, it is actually delegating the tasks to the original COM, so it does not convert your COM/activeX but just imports them. &lt;br /&gt;&lt;br /&gt;A good thing about .Net is that when it imports a component, it also imports the components that are publically referenced by that component. So, if your component, say MyDataAcsess.dll references ADODB.dll then .Net will automatically import that COM component too! &lt;br /&gt;&lt;br /&gt;The Visual Studio.NET does surprise you in a great deal when u see that it is applying its intellisense (showing methods, classes, interfaces, properties when placing dot) even on your imported COM components!!!! Isn’t it a magic or what? &lt;br /&gt;&lt;br /&gt;When accessing thru RCW, .Net client has no knowledge that it is using COM component, it is presented just as another C# assembly. &lt;br /&gt;&lt;br /&gt;U can also import COM component thru command prompt (for reference see Professional C# by Wrox) &lt;br /&gt;&lt;br /&gt;U can also use your .Net components in COM, i.e., export your .net components (for reference see Professional C# by Wrox)&lt;br /&gt;&lt;br /&gt;15. What is Machine.config?&lt;br /&gt;Machine configuration file: The machine.config file contains settings that apply to the entire computer. This file is located in the %runtime install path%Config directory. There is only one machine.config file on a computer. The Machine.Config file found in the "CONFIG" subfolder of your .NET Framework install directory (c:WINNTMicrosoft.NETFramework{Version Number}CONFIG on Windows 2000 installations). The machine.config, which can be found in the directory $WINDIR$Microsoft.NETFrameworkv1.0.3705CONFIG, is an XML-formatted configuration file that specifies configuration options for the machine. This file contains, among many other XML elements, a browserCaps element. Inside this element are a number of other elements that specify parse rules for the various User-Agents, and what properties each of these parsings supports. &lt;br /&gt;&lt;br /&gt;For example, to determine what platform is used, a filter element is used that specifies how to set the platform property based on what platform name is found in the User-Agent string. Specifically, the machine.config file contains: &lt;br /&gt;&lt;br /&gt;platform=Win95&lt;br /&gt;platform=Win98&lt;br /&gt;platform=WinNT&lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;That is, if in the User-Agent string the string "Windows 95" or "Win95" is found, the platform property is set to Win95. There are a number of filter elements in the browserCaps element in the machine.config file that define the various properties for various User-Agent strings. &lt;br /&gt;&lt;br /&gt;Hence, when using the Request.Browser property to determine a user's browser features, the user's agent string is matched up to particular properties in the machine.config file. The ability for being able to detect a user's browser's capabilities, then, is based upon the honesty in the browser's sent User-Agent string. For example, Opera can be easily configured to send a User-Agent string that makes it appear as if it's IE 5.5. In this case from the Web server's perspective (and, hence, from your ASP.NET Web page's perspective), the user is visiting using IE 5.5, even though, in actuality, he is using Opera. &lt;br /&gt;&lt;br /&gt;16. What is Web.config?&lt;br /&gt;In classic ASP all Web site related information was stored in the metadata of IIS. This had the disadvantage that remote Web developers couldn't easily make Web-site configuration changes. For example, if you want to add a custom 404 error page, a setting needs to be made through the IIS admin tool, and you're Web host will likely charge you a flat fee to do this for you. With ASP.NET, however, these settings are moved into an XML-formatted text file (Web.config) that resides in the Web site's root directory. Through Web.config you can specify settings like custom 404 error pages, authentication and authorization settings for the Web sitempilation options for the ASP.NET Web pages, if tracing should be enabled, etc.&lt;br /&gt;&lt;br /&gt;The Web.config file is an XML-formatted file. At the root level is the tag. Inside this tag you can add a number of other tags, the most common and useful one being the system.web tag, where you will specify most of the Web site configuration parameters. However, to specify application-wide settings you use the tag.&lt;br /&gt;For example, if we wanted to add a database connection string parameter we could have a Web.config file like so.&lt;br /&gt;&lt;br /&gt;17. What is the difference between ADO and ADO.NET?&lt;br /&gt;ADO uses Recordsets and cursors to access and modify data. Because of its inherent design, Recordset can impact performance on the server side by tying up valuable resources. In addition, COM marshalling - an expensive data conversion process - is needed to transmit a Recordset. ADO.NET addresses three important needs that ADO doesn't address: &lt;br /&gt;1. Providing a comprehensive disconnected data-access model, which is crucial to the Web environment&lt;br /&gt;2. Providing tight integration with XML, and&lt;br /&gt;3. Providing seamless integration with the .NET Framework (e.g., compatibility with the base class library's type system). From an ADO.NET implementation perspective, the Recordset object in ADO is eliminated in the .NET architecture. In its place, ADO.NET has several dedicated objects led by the DataSet object and including the DataAdapter, and DataReader objects to perform specific tasks. In addition, ADO.NET DataSets operate in disconnected state whereas the ADO RecordSet objects operated in a fully connected state.&lt;br /&gt;&lt;br /&gt;In ADO, the in-memory representation of data is the recordset. In ADO.NET, it is the dataset. A recordset looks like a single table. If a recordset is to contain data from multiple database tables, it must use a JOIN query, which assembles the data from the various database tables into a single result table. In contrast, a dataset is a collection of one or more tables. The tables within a dataset are called data tables; specifically, they are DataTable objects. If a dataset contains data from multiple database tables, it will typically contain multiple DataTable objects. That is, each DataTable object typically corresponds to a single database table or view. In this way, a dataset can mimic the structure of the underlying database. &lt;br /&gt;In ADO you scan sequentially through the rows of the recordset using the ADO MoveNext method. In ADO.NET, rows are represented as collections, so you can loop through a table as you would through any collection, or access particular rows via ordinal or primary key index. A cursor is a database element that controls record navigation, the ability to update data, and the visibility of changes made to the database by other users. ADO.NET does not have an inherent cursor object, but instead includes data classes that provide the functionality of a traditional cursor. For example, the functionality of a forward-only, read-only cursor is available in the ADO.NET DataReader object. &lt;br /&gt;There is one significant difference between disconnected processing in ADO and ADO.NET. In ADO you communicate with the database by making calls to an OLE DB provider. In ADO.NET you communicate with the database through a data adapter (an OleDbDataAdapter, SqlDataAdapter, OdbcDataAdapter, or OracleDataAdapter object), which makes calls to an OLE DB provider or the APIs provided by the underlying data source.&lt;br /&gt;&lt;br /&gt;17. What is the difference between VB and VB.NET? &lt;br /&gt;Now VB.NET is object-oriented language. The following are some of the differences: &lt;br /&gt;Data Type Changes &lt;br /&gt;The .NET platform provides Common Type System to all the supported languages. This means that all the languages must support the same data types as enforced by common language runtime. This eliminates data type incompatibilities between various languages. For example on the 32-bit Windows platform, the integer data type takes 4 bytes in languages like C++ whereas in VB it takes 2 bytes. Following are the main changes related to data types in VB.NET: &lt;br /&gt;&lt;br /&gt;. Under .NET the integer data type in VB.NET is also 4 bytes in size.&lt;br /&gt;. VB.NET has no currency data type. Instead it provides decimal as a replacement.&lt;br /&gt;. VB.NET introduces a new data type called Char. The char data type takes 2 bytes and can store Unicode characters.&lt;br /&gt;. VB.NET do not have Variant data type. To achieve a result similar to variant type you can use Object data type. (Since every thing in .NET including primitive data types is an object, a variable of object type can point to any data type).&lt;br /&gt;. In VB.NET there is no concept of fixed length strings.&lt;br /&gt;. In VB6 we used the Type keyword to declare our user-defined structures. VB.NET introduces the structure keyword for the same purpose.&lt;br /&gt;Declaring Variables&lt;br /&gt;Consider this simple example in VB6:&lt;br /&gt;Dim x,y as integer&lt;br /&gt;&lt;br /&gt;In this example VB6 will consider x as variant and y as integer, which is somewhat odd behavior. VB.NET corrects this problem, creating both x and y as integers. &lt;br /&gt;Furthermore, VB.NET allows you to assign initial values to the variables in the declaration statement itself: &lt;br /&gt;br&amp;gt; Dim str1 as string = Hello &lt;br /&gt;&lt;br /&gt;VB.NET also introduces Read-Only variables. Unlike constants Read-Only variables can be declared without initialization but once you assign a value to it, it cannot be changes. &lt;br /&gt;&lt;br /&gt;Initialization here&lt;br /&gt;Dim readonly x as integer&lt;br /&gt;In later code&lt;br /&gt;X=100&lt;br /&gt;Now x can’t be changed&lt;br /&gt;X=200 *********** Error **********&lt;br /&gt;Property Syntax&lt;br /&gt;In VB.NET, we anymore don't have separate declarations for Get and Set/Let. Now, everything is done in a single property declaration. This can be better explained by the following example.&lt;br /&gt;Public [ReadOnly | WriteOnly] Property PropertyName as Datatype&lt;br /&gt;Get&lt;br /&gt;Return m_var&lt;br /&gt;End Get&lt;br /&gt;Set&lt;br /&gt;M_var = value&lt;br /&gt;End Set&lt;br /&gt;End Property&lt;br /&gt;Example:&lt;br /&gt;Private _message as String&lt;br /&gt;Public Property Message As String&lt;br /&gt;Get&lt;br /&gt;Return _message&lt;br /&gt;End Get&lt;br /&gt;Set&lt;br /&gt;_message = Value&lt;br /&gt;End Set&lt;br /&gt;End Property&lt;br /&gt;&lt;br /&gt;ByVal is the default - This is a crucial difference betwen VB 6.0 and VB.NET, where the default in VB 6.0 was by reference. But objects are still passed by reference. &lt;br /&gt;&lt;br /&gt;Invoking Subroutines In previous versions of VB, only functions required the use of parentheses around the parameter list. But in VB.NET all function or subroutine calls require parentheses around the parameter list. This also applies, even though the parameter list is empty. &lt;br /&gt;&lt;br /&gt;User-Defined Types - VB.NET does away with the keyword Type and replaces it with the keyword Structure&lt;br /&gt;Public Structure Student&lt;br /&gt;Dim strName as String&lt;br /&gt;Dim strAge as Short&lt;br /&gt;End Structure&lt;br /&gt;Procedures and Functions&lt;br /&gt;&lt;br /&gt;In VB6 all the procedure parameters are passed by reference (ByRef) by default. In VB.NET they are passed by value (ByVal) by default. Parantheses are required for calling procedures and functions whether they accept any parameters or not. In VB6 functions returned values using syntax like: FuntionName = return_value. In VB.NET you can use the Return keyword (Return return_value) to return values or you can continue to use the older syntax, which is still valid. &lt;br /&gt;&lt;br /&gt;Scoping VB.NET now supports block-level scoping of variables. If your programs declare all of the variables at the beginning of the function or subroutine, this will not be a problem. However, the following VB 6.0 will cause an issue while upgrading to VB .NET &lt;br /&gt;&lt;br /&gt;Do While objRs.Eof&lt;br /&gt;Dim J as Integer&lt;br /&gt;J=0&lt;br /&gt;If objRs("flag")="Y" then&lt;br /&gt;J=1&lt;br /&gt;End If&lt;br /&gt;objRs.MoveNext&lt;br /&gt;Wend&lt;br /&gt;If J Then&lt;br /&gt;Msgbox "Flag is Y"&lt;br /&gt;End If&lt;br /&gt;&lt;br /&gt;In the above example the variable J will become out of scope just after the loop, since J was declared inside the While loop. &lt;br /&gt;&lt;br /&gt;Exception Handling &lt;br /&gt;&lt;br /&gt;The most wanted feature in earlier versions of VB was its error handling mechanism. The older versions relied on error handlers such as "On Error GoTo and On Error Resume Next. VB.NET provides us with a more stuructured approach. The new block structure allows us to track the exact error at the right time. The new error handling mechanism is refered to as Try...Throw...Catch...Finally. The following example will explain this new feature. &lt;br /&gt;&lt;br /&gt;Sub myOpenFile()&lt;br /&gt;Try&lt;br /&gt;Open "myFile" For Output As #1&lt;br /&gt;Write #1, myOutput&lt;br /&gt;Catch&lt;br /&gt;Kill "myFile"&lt;br /&gt;Finally&lt;br /&gt;Close #1&lt;br /&gt;End try&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;The keyword SET is gone - Since everything in VB.NET is an object. So the keyword SET is not at all used to differentiate between a simple variable assignment and an object assignment. So, if you have the following statement in VB 6.0 &lt;br /&gt;&lt;br /&gt;Set ObjConn = Nothing&lt;br /&gt;Should be replaced as&lt;br /&gt;ObjConn = Nothing.&lt;br /&gt;Constructor and Destructor&lt;br /&gt;&lt;br /&gt;The constructor procedure is one of the many new object-oriented features of VB.NET. The constructor in VB.NET replaces the Class_Initialize in VB 6.0. All occurance of Class_Initialize in previous versions of VB should now be placed in a class constructor. In VB.NET, a constructor is added to a class by adding a procedure called New. We can also create a class destructor, which is equivalent to Class_Terminate event in VB 6.0, by adding a sub-procedure called Finalize to our class. Usage of Return In VB.NET, we can use the keyword return to return a value from any function. In previous versions, we used to assign the value back with the help of the function name itself. The following example explains this: &lt;br /&gt;&lt;br /&gt;Public Function Sum (intNum1 as Integer, intNum2 as Integer) as Integer&lt;br /&gt;Dim intSum as Integer&lt;br /&gt;intSum = intNum1 + intNum2&lt;br /&gt;Return intSum&lt;br /&gt;End Function&lt;br /&gt;Static Methods&lt;br /&gt;&lt;br /&gt;VB.NET now allows you to create static methods in your classes. Static methods are methods that can be called without requiring the developer to create instance of the class. For example, if you had a class named Foo with the non-static method NonStatic() and the static method Static(), you could call the Static() method like so: &lt;br /&gt;&lt;br /&gt;Foo.Static()&lt;br /&gt;&lt;br /&gt;However, non-static methods require than an instance of the class be created, like so: &lt;br /&gt;&lt;br /&gt;Create an instance of the Foo class&lt;br /&gt;Dim objFoo as New Foo()&lt;br /&gt;Execute the NonStatic() method&lt;br /&gt;ObjFoo.NonStatic()&lt;br /&gt;
&lt;br /&gt;
To create a static method in a VB.NET, simply prefix the method definition with the keyword Shared.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Most Common HR Interview Questions</title><link>http://justviewssharing.blogspot.com/2012/10/most-common-hr-interview-questions.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Tue, 9 Oct 2012 07:57:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-7355927727333626032</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
Tell me about yourself: - The most often asked question in interviews. You need to have a short statement prepared in your mind. Be careful that it does not sound rehearsed. Limit it to work-related items unless instructed otherwise. Talk about things you have done and jobs you have held that relate to the position you are interviewing for. Start with the item farthest back and work up to the present.&lt;br /&gt;
&lt;br /&gt;Why did you leave your last job? - Stay positive regardless of the circumstances. Never refer to a major problem with management and never speak ill of supervisors, co-workers or the organization. If you do, you will be the one looking bad. Keep smiling and talk about leaving for a positive reason such as an opportunity, a chance to do something special or other forward-looking reasons.&lt;br /&gt;
&lt;br /&gt;What experience do you have in this field? - Speak about specifics that relate to the position you are applying for. If you do not have specific experience, get as close as you can.&lt;br /&gt;
&lt;br /&gt;Do you consider yourself successful? - You should always answer yes and briefly explain why. A good explanation is that you have set goals, and you have met some and are on track to achieve the others.&lt;br /&gt;
&lt;br /&gt;What do co-workers say about you? - Be prepared with a quote or two from co-workers. Either a specific statement or a paraphrase will work. Jill Clark, a co-worker at Smith Company, always said I was the hardest workers she had ever known. It is as powerful as Jill having said it at the interview herself.&lt;br /&gt;
&lt;br /&gt;What do you know about this organization? - This question is one reason to do some research on the organization before the interview. Find out where they have been and where they are going. What are the current issues and who are the major players?&lt;br /&gt;What have you done to improve your knowledge in the last year? - Try to include improvement activities that relate to the job. A wide variety of activities can be mentioned as positive self-improvement. Have some good ones handy to mention.&lt;br /&gt;
&lt;br /&gt;Are you applying for other jobs? - Be honest but do not spend a lot of time in this area. Keep the focus on this job and what you can do for this organization. Anything else is a distraction.&lt;br /&gt;
&lt;br /&gt;Why do you want to work for this organization? - This may take some thought and certainly, should be based on the research you have done on the organization. Sincerity is extremely important here and will easily be sensed. Relate it to your long-term career goals.&lt;br /&gt;
&lt;br /&gt;Do you know anyone who works for us? - Be aware of the policy on relatives working for the organization. This can affect your answer even though they asked about friends not relatives. Be careful to mention a friend only if they are well thought of.&lt;br /&gt;
&lt;br /&gt;What kind of salary do you need? - A loaded question. A nasty little game that you will probably lose if you answer first. So, do not answer it. Instead, say something like, That’s a tough question. Can you tell me the range for this position? In most cases, the interviewer, taken off guard, will tell you. If not, say that it can depend on the details of the job. Then give a wide range.&lt;br /&gt;
&lt;br /&gt;Are you a team player? - You are, of course, a team player. Be sure to have examples ready. Specifics that show you often perform for the good of the team rather than for yourself are good evidence of your team attitude. Do not brag, just say it in a matter-of-fact tone. This is a key point.&lt;br /&gt;
&lt;br /&gt;How long would you expect to work for us if hired? - Specifics here are not good. Something like this should work: I’d like it to be a long time. Or As long as we both feel I’m doing a good job.&lt;br /&gt;
&lt;br /&gt;Have you ever had to fire anyone? How did you feel about that? - This is serious. Do not make light of it or in any way seem like you like to fire people. At the same time, you will do it when it is the right thing to do. When it comes to the organization versus the individual who has created a harmful situation, you will protect the organization. Remember firing is not the same as layoff or reduction in force.&lt;br /&gt;
&lt;br /&gt;What is your philosophy towards work? - The interviewer is not looking for a long or flowery dissertation here. Do you have strong feelings that the job gets done? Yes. That’s the type of answer that works best here. Short and positive, showing a benefit to the organization.&lt;br /&gt;
&lt;br /&gt;If you had enough money to retire right now, would you? - Answer yes if you would. But since you need to work, this is the type of work you prefer. Do not say yes if you do not mean it.&lt;br /&gt;
&lt;br /&gt;Have you ever been asked to leave a position? - If you have not, say no. If you have, be honest, brief and avoid saying negative things about the people or organization involved.&lt;br /&gt;
&lt;br /&gt;Explain how you would be an asset to this organization - You should be anxious for this question. It gives you a chance to highlight your best points as they relate to the position being discussed. Give a little advance thought to this relationship.&lt;br /&gt;
&lt;br /&gt;Why should we hire you? - Point out how your assets meet what the organization needs. Do not mention any other candidates to make a comparison.&lt;br /&gt;
&lt;br /&gt;Tell me about a suggestion you have made - Have a good one ready. Be sure and use a suggestion that was accepted and was then considered successful. One related to the type of work applied for is a real plus.&lt;br /&gt;
&lt;br /&gt;What irritates you about co-workers? - This is a trap question. Think real hard but fail to come up with anything that irritates you. A short statement that you seem to get along with folks is great.&lt;br /&gt;
&lt;br /&gt;What is your greatest strength? - Numerous answers are good, just stay positive. A few good examples: Your ability to prioritize, Your problem-solving skills, Your ability to work under pressure, Your ability to focus on projects, Your professional expertise, Your leadership skills, Your positive attitude .&lt;br /&gt;
&lt;br /&gt;Tell me about your dream job. - Stay away from a specific job. You cannot win. If you say the job you are contending for is it, you strain credibility. If you say another job is it, you plant the suspicion that you will be dissatisfied with this position if hired. The best is to stay genetic and say something like: A job where I love the work, like the people, can contribute and can’t wait to get to work.&lt;br /&gt;
&lt;br /&gt;Why do you think you would do well at this job? - Give several reasons and include skills, experience and interest.&lt;br /&gt;
&lt;br /&gt;What kind of person would you refuse to work with? - Do not be trivial. It would take disloyalty to the organization, violence or lawbreaking to get you to object. Minor objections will label you as a whiner.&lt;br /&gt;
&lt;br /&gt;What is more important to you: the money or the work? - Money is always important, but the work is the most important. There is no better answer.&lt;br /&gt;
&lt;br /&gt;What would your previous supervisor say your strongest point is? - There are numerous good possibilities: Loyalty, Energy, Positive attitude, Leadership, Team player, Expertise, Initiative, Patience, Hard work, Creativity, Problem solver.&lt;br /&gt;
&lt;br /&gt;Tell me about a problem you had with a supervisor - Biggest trap of all. This is a test to see if you will speak ill of your boss. If you fall for it and tell about a problem with a former boss, you may well below the interview right there. Stay positive and develop a poor memory about any trouble with a supervisor.&lt;br /&gt;What has disappointed you about a job? - Don’t get trivial or negative. Safe areas are few but can include: Not enough of a challenge. You were laid off in a reduction Company did not win a contract, which would have given you more responsibility.&lt;br /&gt;
&lt;br /&gt;Tell me about your ability to work under pressure. - You may say that you thrive under certain types of pressure. Give an example that relates to the type of position applied for.&lt;br /&gt;Do your skills match this job or another job more closely? - Probably this one. Do not give fuel to the suspicion that you may want another job more than this one.&lt;br /&gt;
&lt;br /&gt;What motivates you to do your best on the job? - This is a personal trait that only you can say, but good examples are: Challenge, Achievement, Recognition&lt;br /&gt;Are you willing to work overtime? Nights? Weekends? - This is up to you. Be totally honest.&lt;br /&gt;How would you know you were successful on this job? - Several ways are good measures: You set high standards for yourself and meet them. Your outcomes are a success.Your boss tell you that you are successful&lt;br /&gt;Would you be willing to relocate if required? - You should be clear on this with your family prior to the interview if you think there is a chance it may come up. Do not say yes just to get the job if the real answer is no. This can create a lot of problems later on in your career. Be honest at this point and save yourself future grief.&lt;br /&gt;Are you willing to put the interests of the organization ahead of your own? - This is a straight loyalty and dedication question. Do not worry about the deep ethical and philosophical implications. Just say yes.&lt;br /&gt;Describe your management style. - Try to avoid labels. Some of the more common labels, like progressive, salesman or consensus, can have several meanings or descriptions depending on which management expert you listen to. The situational style is safe, because it says you will manage according to the situation, instead of one size fits all.&lt;br /&gt;What have you learned from mistakes on the job? - Here you have to come up with something or you strain credibility. Make it small, well intentioned mistake with a positive lesson learned. An example would be working too far ahead of colleagues on a project and thus throwing coordination off.&lt;br /&gt;Do you have any blind spots? - Trick question. If you know about blind spots, they are no longer blind spots. Do not reveal any personal areas of concern here. Let them do their own discovery on your bad points. Do not hand it to them.&lt;br /&gt;If you were hiring a person for this job, what would you look for? - Be careful to mention traits that are needed and that you have.&lt;br /&gt;Do you think you are overqualified for this position? - Regardless of your qualifications, state that you are very well qualified for the position.&lt;br /&gt;How do you propose to compensate for your lack of experience? - First, if you have experience that the interviewer does not know about, bring that up: Then, point out (if true) that you are a hard working quick learner.&lt;br /&gt;What qualities do you look for in a boss? - Be generic and positive. Safe qualities are knowledgeable, a sense of humor, fair, loyal to subordinates and holder of high standards. All bosses think they have these traits.&lt;br /&gt;Tell me about a time when you helped resolve a dispute between others. - Pick a specific incident. Concentrate on your problem solving technique and not the dispute you settled.&lt;br /&gt;What position do you prefer on a team working on a project? - Be honest. If you are comfortable in different roles, point that out.&lt;br /&gt;Describe your work ethic. - Emphasize benefits to the organization. Things like, determination to get the job done and work hard but enjoy your work are good.&lt;br /&gt;What has been your biggest professional disappointment? - Be sure that you refer to something that was beyond your control. Show acceptance and no negative feelings.&lt;br /&gt;Tell me about the most fun you have had on the job. - Talk about having fun by accomplishing something for the organization.&lt;br /&gt;Do you have any questions for me? - Always have some questions prepared. Questions prepared where you will be an asset to the organization are good. How soon will I be able to be productive? and What type of projects will I be able to assist on? are examples.&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Software Engineering Interview Question and Answers</title><link>http://justviewssharing.blogspot.com/2012/10/software-engineering-interview-question.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:42:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-6924195306875979245</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
1.&amp;nbsp;&amp;nbsp;&amp;nbsp; Define software engineering?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;According to IEEE, Software engineering is the application of a systematic, disciplined, quantifiable approach to the development, operation and maintenance of sofware.&lt;br /&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp; What are the categories of software?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;System software&lt;br /&gt;Application software&lt;br /&gt;Embedded software&lt;br /&gt;Web Applications&lt;br /&gt;Artificial Intelligence software&lt;br /&gt;Scientific software.&lt;br /&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp; Define testing?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Testing is a process of executing a program with the intent of finding of an error.&lt;br /&gt;4.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is white box testing?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;White box testing is a test case design method that uses the control structure of the procedural design to derive test cases. It is otherwise called as structural testing.&lt;br /&gt;5.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is Black box testing?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Black box testing is a test case design method that focuses on the functional requirements of the software. It is otherwise called as functional testing.&lt;br /&gt;
&lt;br /&gt;
6.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is verification and validation?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Verification refers to the set of activities that ensure that software correctly implements a specific function.&lt;br /&gt;&lt;br /&gt;Validation refers to the set of activities that ensure that the software that has been built is traceable to customer requirements.&lt;br /&gt;7.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is debugging?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Debugging is the process that results in the removal of error. It occurs as a consequence of successful testing.&lt;br /&gt;8.&amp;nbsp;&amp;nbsp;&amp;nbsp; Define cyclomatic complexity?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Cyclomatic complexity is a software metric that provides a quantitative measuer of the logical complexity of a program.&lt;br /&gt;9.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is error tracking?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Error tracking is an activity that provides a means for assessing the status of a current project.&lt;br /&gt;10.&amp;nbsp;&amp;nbsp;&amp;nbsp; What are case tools?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Computer Aided Software Engineering - CASE tools assist software engineering managers and practitioners in evey activity associated with the software process. They automate project management activities manage all work products produced throughout the process and assist the engineers in their analysis, design, coding and test work.&lt;br /&gt;
&lt;br /&gt;
11.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is data design?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Data design transforms the information domain model created during analysis into the data structures that will be required to implement the software.&lt;br /&gt;12.&amp;nbsp;&amp;nbsp;&amp;nbsp; Define cohension and coupling?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Cohension is a measure of the relative functional strength of a module.&lt;br /&gt;&lt;br /&gt;Coupling is a measure of the relative interdependence among modules.&lt;br /&gt;13.&amp;nbsp;&amp;nbsp;&amp;nbsp; What are the different types of cohension?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;There are different types of cohension are&lt;br /&gt;Coincidental cohension&lt;br /&gt;Logical cohension&lt;br /&gt;Temporal cohension&lt;br /&gt;Procedural cohension&lt;br /&gt;Communicational cohension&lt;br /&gt;14.&amp;nbsp;&amp;nbsp;&amp;nbsp; What are the different types of coupling?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;There are different types of coupling are&lt;br /&gt;Data coupling&lt;br /&gt;Stamp coupling&lt;br /&gt;Control coupling&lt;br /&gt;External coupling&lt;br /&gt;Common coupling&lt;br /&gt;Content coupling&lt;br /&gt;15.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is user interface design?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;User interface design creates an effective communication medium between a human and a computer.&lt;br /&gt;
&lt;br /&gt;
16.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is meant by specification?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;A specification can be a written document, a graphical model, a formal mathematical model, a collection of usage scenarios, a prototype or any combination of these.&lt;br /&gt;17.&amp;nbsp;&amp;nbsp;&amp;nbsp; Define process?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;A series of steps involving activities, constraints, and resources that produce an intended output of some kind is known as process.&lt;br /&gt;18.&amp;nbsp;&amp;nbsp;&amp;nbsp; How spiral model works?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;The spiral model is an evolutionary software process model that couples the iterative nature of prototyping with the controlled and systematic aspects of the waterfall lifecycle model. It also has an emphasis on the use of risk management techniques.&lt;br /&gt;19.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is winwin spiral model?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;Winwin spiral model defines a set of negotiation activities at the beginning of each pass around the spiral. The best negotiations strive for a win-win result.&lt;br /&gt;20.&amp;nbsp;&amp;nbsp;&amp;nbsp; Mention the various views in system engineering hierarchy?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;The various views in system engineering hierarchy from top to bottom in order are&lt;br /&gt;World view&lt;br /&gt;Domain view&lt;br /&gt;Element view&lt;br /&gt;Detailed view&lt;br /&gt;
&lt;br /&gt;
21.&amp;nbsp;&amp;nbsp;&amp;nbsp; What is software requirements definition?&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;A software requirements definition is an abstract description of the services which the system should provide and the constraints under which the system must operate.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>UNIX Commands Interview Questions And Answers</title><link>http://justviewssharing.blogspot.com/2012/10/unix-commands-interview-questions-and.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:36:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-8285620972738050387</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Construct pipes to execute the following jobs.&lt;br /&gt;1. Output of who should be displayed on the screen with value of total number of users who have logged in displayed at the bottom of the list.&lt;br /&gt;&lt;br /&gt;2. Output of ls should be displayed on the screen and from this output the lines containing the word ‘poem’ should be counted and the count should be stored in a file.&lt;br /&gt;&lt;br /&gt;3. Contents of file1 and file2 should be displayed on the screen and this output should be appended in a file. From output of ls the lines containing ‘poem’ should be displayed on the screen along with the count.&lt;br /&gt;&lt;br /&gt;4. Name of cities should be accepted from the keyboard . This list should be combined with the list present in a file. This combined list should be sorted and the sorted list&lt;br /&gt;should be stored in a file ‘newcity’.&lt;br /&gt;&lt;br /&gt;5. All files present in a directory dir1 should be deleted any error while deleting should be stored in a file ‘errorlog’.&lt;br /&gt;&lt;br /&gt;2. Explain the following commands.&lt;br /&gt;$ ls &amp;gt; file1&lt;br /&gt;$ banner hi-fi &amp;gt; message&lt;br /&gt;$ cat par.3 par.4 par.5 &amp;gt;&amp;gt; report&lt;br /&gt;$ cat file1&amp;gt;file1&lt;br /&gt;$ date ; who&lt;br /&gt;$ date ; who &amp;gt; logfile&lt;br /&gt;$ (date ; who) &amp;gt; logfile&lt;br /&gt;&lt;br /&gt;3. What is the significance of the “tee” command?&lt;br /&gt;It reads the standard input and sends it to the standard output while redirecting a copy of what it has read to the file specified by the user.&lt;br /&gt;&lt;br /&gt;4. What does the command “ $who | sort –logfile &amp;gt; newfile” do?&lt;br /&gt;The input from a pipe can be combined with the input from a file . The trick is to use the special symbol “-“ (a hyphen) for those commands that recognize the hyphen as std input.&lt;br /&gt;In the above command the output from who becomes the std input to sort , meanwhile sort opens the file logfile, the contents of this file is sorted together with the output of who (rep by the hyphen) and the sorted output is redirected to the file newfile.&lt;br /&gt;&lt;br /&gt;5. What does the command “$ls | wc –l &amp;gt; file1” do?&lt;br /&gt;ls becomes the input to wc which counts the number of lines it receives as input and instead of displaying this count , the value is stored in file1.&lt;br /&gt;&lt;br /&gt;6. Which of the following commands is not a filter man , (b) cat , (c) pg , (d) head&lt;br /&gt;Ans: man&lt;br /&gt;A filter is a program which can receive a flow of data from std input, process (or filter) it and send the result to the std output.&lt;br /&gt;&lt;br /&gt;7. How is the command “$cat file2 “ different from “$cat &amp;gt;file2 and &amp;gt;&amp;gt; redirection operators ?&lt;br /&gt;is the output redirection operator when used it overwrites while &amp;gt;&amp;gt; operator appends into the file.&lt;br /&gt;&lt;br /&gt;9. Explain the steps that a shell follows while processing a command.&lt;br /&gt;After the command line is terminated by the key, the shel goes ahead with processing the command line in one or more passes. The sequence is well defined and assumes the following order.&lt;br /&gt;Parsing: The shell first breaks up the command line into words, using spaces and the delimiters, unless quoted. All consecutive occurrences of a space or tab are replaced here with a single space.&lt;br /&gt;Variable evaluation: All words preceded by a $ are avaluated as variables, unless quoted or escaped.&lt;br /&gt;Command substitution: Any command surrounded by backquotes is executed by the shell which t hen replaces the standard output of the command into the command line.&lt;br /&gt;Wild-card interpretation: The shell finally scans the command line for wild-cards (the characters *, ?, [, ]).&lt;br /&gt;Any word containing a wild-card is replaced by a sorted list of filenames that match the pattern. The list of these filenames then forms the arguments to the command.&lt;br /&gt;PATH evaluation: It finally looks for the PATH variable to determine the sequence of directories it has to search in order to hunt for the command.&lt;br /&gt;&lt;br /&gt;10. What difference between cmp and diff commands?&lt;br /&gt;cmp - Compares two files byte by byte and displays the first mismatch&lt;br /&gt;diff - tells the changes to be made to make the files identical&lt;br /&gt;&lt;br /&gt;11. What is the use of ‘grep’ command?&lt;br /&gt;‘grep’ is a pattern search command. It searches for the pattern, specified in the command line with appropriate option, in a file(s).&lt;br /&gt;Syntax : grep&lt;br /&gt;Example : grep 99mx mcafile&lt;br /&gt;&lt;br /&gt;12. What is the difference between cat and more command?&lt;br /&gt;Cat displays file contents. If the file is large the contents scroll off the screen before we view it. So&lt;br /&gt;command 'more' is like a pager which displays the contents page by page.&lt;br /&gt;&lt;br /&gt;13. Write a command to kill the last background job?&lt;br /&gt;Kill $!&lt;br /&gt;&lt;br /&gt;14. Which command is used to delete all files in the current directory and all its sub-directories?&lt;br /&gt;rm -r *&lt;br /&gt;&lt;br /&gt;15. Write a command to display a file’s contents in various formats?&lt;br /&gt;$od -cbd file_name&lt;br /&gt;c - character, b - binary (octal), d-decimal, od=Octal Dump.&lt;br /&gt;&lt;br /&gt;16. What will the following command do?&lt;br /&gt;$ echo *&lt;br /&gt;It is similar to 'ls' command and displays all the files in the current directory.&lt;br /&gt;&lt;br /&gt;17. Is it possible to create new a file system in UNIX?&lt;br /&gt;Yes, ‘mkfs’ is used to create a new file system.&lt;br /&gt;18. Is it possible to restrict incoming message?&lt;br /&gt;Yes, using the ‘mesg’ command.&lt;br /&gt;&lt;br /&gt;19. What is the use of the command "ls -x chapter[1-5]"&lt;br /&gt;ls stands for list; so it displays the list of the files that starts with 'chapter' with suffix '1' to '5', chapter1,&lt;br /&gt;chapter2, and so on.&lt;br /&gt;&lt;br /&gt;20. Is ‘du’ a command? If so, what is its use?&lt;br /&gt;Yes, it stands for ‘disk usage’. With the help of this command you can find the disk capacity and free space of the disk.&lt;br /&gt;&lt;br /&gt;21. Is it possible to count number char, line in a file; if so, How?&lt;br /&gt;Yes, wc-stands for word count.&lt;br /&gt;wc -c for counting number of characters in a file.&lt;br /&gt;wc -l for counting lines in a file.&lt;br /&gt;&lt;br /&gt;22. Name the data structure used to maintain file identification?&lt;br /&gt;‘inode’, each file has a separate inode and a unique inode number.&lt;br /&gt;&lt;br /&gt;23. How many prompts are available in a UNIX system?&lt;br /&gt;Two prompts, PS1 (Primary Prompt), PS2 (Secondary Prompt).&lt;br /&gt;&lt;br /&gt;24. How does the kernel differentiate device files and ordinary files?&lt;br /&gt;&lt;br /&gt;Kernel checks 'type' field in the file's inode structure.&lt;br /&gt;&lt;br /&gt;25. How to switch to a super user status to gain privileges?&lt;br /&gt;Use ‘su’ command. The system asks for password and when valid entry is made the user gains super user (admin) privileges.&lt;br /&gt;&lt;br /&gt;26. What are shell variables?&lt;br /&gt;Shell variables are special variables, a name-value pair created and maintained by the shell.&lt;br /&gt;Example: PATH, HOME, MAIL and TERM&lt;br /&gt;&lt;br /&gt;27. What is redirection?&lt;br /&gt;Directing the flow of data to the file or from the file for input or output.&lt;br /&gt;Example : ls &amp;gt; wc&lt;br /&gt;&lt;br /&gt;28. How to terminate a process which is running and the specialty on command kill 0?&lt;br /&gt;With the help of kill command we can terminate the process.&lt;br /&gt;Syntax: kill pid&lt;br /&gt;Kill 0 - kills all processes in your system except the login shell.&lt;br /&gt;&lt;br /&gt;29. What is a pipe and give an example?&lt;br /&gt;A pipe is two or more commands separated by pipe char '|'. That tells the shell to arrange for the output of the preceding command to be passed as input to the following command.&lt;br /&gt;Example : ls -l | pr&lt;br /&gt;The output for a command ls is the standard input of pr. When a sequence of commands are combined using pipe, then it is called pipeline.&lt;br /&gt;&lt;br /&gt;30. Explain kill() and its possible return values.&lt;br /&gt;There are four possible results from this call:&lt;br /&gt;‘kill()’ returns 0. This implies that a process exists with the given PID, and the system would allow you to send signals to it. It is system-dependent whether the process could be a zombie.&lt;br /&gt;‘kill()’ returns -1, ‘errno == ESRCH’ either no process exists with the given PID, or security enhancements are causing the system to deny its existence. (On some systems, the process could be a zombie.) ‘kill()’ returns -1, ‘errno == EPERM’ the system would not allow you to kill the specified process. This means that either the process exists (again, it could be a zombie) or draconian security enhancements are present (e.g. your process is not allowed to send signals to *anybody*). ‘kill()’ returns -1, with some other value of ‘errno’ you are in trouble! The most-used technique is to assume that success or failure with ‘EPERM’ implies that the process exists, and any other error implies that it doesn't.&lt;br /&gt;An alternative exists, if you are writing specifically for a system (or all those systems) that provide a ‘/proc’ filesystem: checking for the existence of ‘/proc/PID’ may work.&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Networking Interview Questions </title><link>http://justviewssharing.blogspot.com/2012/10/networking-interview-questions.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:34:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-7513554799065326322</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
Network engineer interview questions&lt;br /&gt;OSPF&lt;br /&gt;Describe OSPF in your own words.&lt;br /&gt;OSPF areas, the purpose of having each of them&lt;br /&gt;Types of OSPF LSA, the purpose of each LSA type&lt;br /&gt;What exact LSA type you can see in different areas&lt;br /&gt;How OSPF establishes neighboor relation, what the stages are&lt;br /&gt;If OSPF router is stucked in each stage what the problem is and how to troubleshoot it&lt;br /&gt;OSPF hierarchy in the single or multi areas. Cool OSPF behavior in broadcast and nonbroadcast&lt;br /&gt;Draw the diagram of typical OSPF network and explain generally how it works, DR, BDR, election, ASBR, ABR, route redistribution and summarization&lt;br /&gt;STP&lt;br /&gt;How it works and the purpose&lt;br /&gt;Diff types (SSTP, MSTP, RSTP) Cisco - PVST/PVST+&lt;br /&gt;root election&lt;br /&gt;Diff. port stages and timing for convergence&lt;br /&gt;Draw the typical diagram and explain how diff types of STP work&lt;br /&gt;What ports are blocking or forwarding&lt;br /&gt;How it works if there are topology changes&lt;br /&gt;ACLs&lt;br /&gt;What are they&lt;br /&gt;Diff types&lt;br /&gt;Write an example if you want to allow and to deny…&lt;br /&gt;Well-known port numbers (DNS - 53 and etc…)&lt;br /&gt;QOS&lt;br /&gt;What is that&lt;br /&gt;What is the diff b/w L2 and L3 QoS&lt;br /&gt;How it works&lt;br /&gt;Network:&lt;br /&gt;Draw the typical network diagram you have to deal with&lt;br /&gt;explain how it works&lt;br /&gt;What part of it you are responsible&lt;br /&gt;firewall, what is that, how it works, how it is diff from ACLs&lt;br /&gt;What problems with the network you had had and how you solved it.&lt;br /&gt;What are the ways to troubleshoot the network, techniques, commands&lt;br /&gt;network security, ways to achieve it&lt;br /&gt;Switching:&lt;br /&gt;VLANs&lt;br /&gt;STP&lt;br /&gt;How a L2 switch works with broadcast, unicast, multicast, known/unknown traffic&lt;br /&gt;VRRP, GLBP&lt;br /&gt;port monitoring and mirroring&lt;br /&gt;L3 switch, how it works&lt;br /&gt;PIM sparse and dense modes&lt;br /&gt;&lt;br /&gt;^Back to Top&lt;br /&gt;&lt;br /&gt;Windows admin interview questions&lt;br /&gt;Describe how the DHCP lease is obtained. It’s a four-step process consisting of (a) IP request, (b) IP offer, © IP selection and (d) acknowledgement.&lt;br /&gt;I can’t seem to access the Internet, don’t have any access to the corporate network and on ipconfig my address is 169.254.*.*. What happened? The 169.254.*.* netmask is assigned to Windows machines running 98/2000/XP if the DHCP server is not available. The name for the technology is APIPA (Automatic Private Internet Protocol Addressing).&lt;br /&gt;We’ve installed a new Windows-based DHCP server, however, the users do not seem to be getting DHCP leases off of it. The server must be authorized first with the Active Directory.&lt;br /&gt;How can you force the client to give up the dhcp lease if you have access to the client PC? ipconfig /release&lt;br /&gt;What authentication options do Windows 2000 Servers have for remote clients? PAP, SPAP, CHAP, MS-CHAP and EAP.&lt;br /&gt;What are the networking protocol options for the Windows clients if for some reason you do not want to use TCP/IP? NWLink (Novell), NetBEUI, AppleTalk (Apple).&lt;br /&gt;What is data link layer in the OSI reference model responsible for? Data link layer is located above the physical layer, but below the network layer. Taking raw data bits and packaging them into frames. The network layer will be responsible for addressing the frames, while the physical layer is reponsible for retrieving and sending raw data bits.&lt;br /&gt;What is binding order? The order by which the network protocols are used for client-server communications. The most frequently used protocols should be at the top.&lt;br /&gt;How do cryptography-based keys ensure the validity of data transferred across the network? Each IP packet is assigned a checksum, so if the checksums do not match on both receiving and transmitting ends, the data was modified or corrupted.&lt;br /&gt;Should we deploy IPSEC-based security or certificate-based security? They are really two different technologies. IPSec secures the TCP/IP communication and protects the integrity of the packets. Certificate-based security ensures the validity of authenticated clients and servers.&lt;br /&gt;What is LMHOSTS file? It’s a file stored on a host machine that is used to resolve NetBIOS to specific IP addresses.&lt;br /&gt;What’s the difference between forward lookup and reverse lookup in DNS? Forward lookup is name-to-address, the reverse lookup is address-to-name.&lt;br /&gt;How can you recover a file encrypted using EFS? Use the domain recovery agent.&lt;br /&gt;&lt;br /&gt;^Back to Top&lt;br /&gt;&lt;br /&gt;Network engineer/architect interview questions&lt;br /&gt;Explain how traceroute, ping, and tcpdump work and what they are used for?&lt;br /&gt;Describe a case where you have used these tools to troubleshoot.&lt;br /&gt;What is the last major networking problem you troubleshot and solved on your own in the last year?&lt;br /&gt;What LAN analyzer tools are you familiar with and describe how you use them to troubleshoot and on what media and network types.&lt;br /&gt;Explain the contents of a routing table (default route, next hop, etc.)&lt;br /&gt;What routing protocols have you configured?&lt;br /&gt;Describe the commands to set up a route.&lt;br /&gt;What routing problems have you troubleshot?&lt;br /&gt;How do you display a routing table on a Cisco? On a host?&lt;br /&gt;How do you use a routing table and for what?&lt;br /&gt;What is a route flap?&lt;br /&gt;What is a metric?&lt;br /&gt;When do you use BGP, IGRP, OSPF, Static Routes?&lt;br /&gt;What do you see as current networking security issues (e.g. NFS mounting, spoofing, one time passwords, etc.)?&lt;br /&gt;Describe a routing filter and what it does.&lt;br /&gt;Describe an access list and what it does.&lt;br /&gt;What is a network management system?&lt;br /&gt;Describe how SNMP works.&lt;br /&gt;Describe the working environment you are currently in, e.g. frequent interruptions, frequent priority shifting, team or individual.&lt;br /&gt;What do you use to write documentation? Editor? Mail reader?&lt;br /&gt;What platform (s) do you currently work on at your desk?&lt;br /&gt;How do you manage multiple concurrent high level projects?&lt;br /&gt;Describe a recent short term stressful situation and how you managed it.&lt;br /&gt;How do you manage a long term demanding stressful work environment?&lt;br /&gt;Have you worked in an assignment based environment, e.g. work request/trouble ticket system, and if so, describe that environment.&lt;br /&gt;Describe what network statistics or measurement tools you are familiar with and how you have used them.&lt;br /&gt;Describe what a VPN is and how it works.&lt;br /&gt;Describe how VoIP works.&lt;br /&gt;Describe methods of QoS.&lt;br /&gt;How does ToS bit work?&lt;br /&gt;&lt;br /&gt;^Back to Top&lt;br /&gt;&lt;br /&gt;CCNA/Cisco admin interview questions&lt;br /&gt;You need to retrieve a file from the file server for your word processing application, which layer of the OSI model is responsible for this function?&lt;br /&gt;Presentation layer&lt;br /&gt;Application layer&lt;br /&gt;Session layer&lt;br /&gt;Transport layer&lt;br /&gt;Datalink layer&lt;br /&gt;You are working in a word processing program, which is run from the file server. Your data comes back to you in an unintelligible manner. Which layer of the OSI model would you investigate?&lt;br /&gt;Application layer&lt;br /&gt;Presentation layer&lt;br /&gt;Session layer&lt;br /&gt;Network layer&lt;br /&gt;Datalink layer&lt;br /&gt;The IEEE subdivided the datalink layer to provide for environments that need connectionless or connection-oriented services. What are the two layers called?&lt;br /&gt;Physical&lt;br /&gt;MAC&lt;br /&gt;LLC&lt;br /&gt;Session&lt;br /&gt;IP&lt;br /&gt;You are working with graphic translations. Which layer of the OSI model is responsible for code formatting and conversion and graphic standards.&lt;br /&gt;Network layer&lt;br /&gt;Session layer&lt;br /&gt;Transport layer&lt;br /&gt;Presentation layer&lt;br /&gt;Which is the best definition of encapsulation?&lt;br /&gt;Each layer of the OSI model uses encryption to put the PDU from the upper layer into its data field. It adds header and trailer information that is available to its counterpart on the system that will receive it.&lt;br /&gt;Data always needs to be tunneled to its destination so encapsulation must be used.&lt;br /&gt;Each layer of the OSI model uses compression to put the PDU from the upper layer into its data field. It adds header and trailer information that is available to its counterpart on the system that will receive it.&lt;br /&gt;Each layer of the OSI model uses encapsulation to put the PDU from the upper layer into its data field. It adds header and trailer information that is available to its counterpart on the system that will receive it.&lt;br /&gt;Routers can be configured using several sources. Select which of the following sources can be used.&lt;br /&gt;Console Port&lt;br /&gt;Virtual Terminals&lt;br /&gt;TFTP Server&lt;br /&gt;Floppy disk&lt;br /&gt;Removable media&lt;br /&gt;Which memory component on a Cisco router contains the dynamic system configuration?&lt;br /&gt;ROM&lt;br /&gt;NVRAM&lt;br /&gt;Flash&lt;br /&gt;RAM/DRAM&lt;br /&gt;Which combination of keys will allow you to view the previous commands that you typed at the router?&lt;br /&gt;ESC-P&lt;br /&gt;Ctrl-P&lt;br /&gt;Shift-P&lt;br /&gt;Alt-P&lt;br /&gt;Which commands will display the active configuration parameters?&lt;br /&gt;show running-config&lt;br /&gt;write term&lt;br /&gt;show version&lt;br /&gt;display term&lt;br /&gt;You are configuring a router, which prompt tells you that you are in the privileged EXEC mode?&lt;br /&gt;@&lt;br /&gt;&amp;gt;&lt;br /&gt;!&lt;br /&gt;:&lt;br /&gt;#&lt;br /&gt;What does the command “IP name-server 255.255.255.255? accomplish?&lt;br /&gt;It disables domain name lookup.&lt;br /&gt;It sets the domain name lookup to be a local broadcast.&lt;br /&gt;This is an illegal command.&lt;br /&gt;The command is now defunct and has been replaced by “IP server-name ip any”&lt;br /&gt;The following selections show the command prompt and the configuration of the IP network mask. Which two are correct?&lt;br /&gt;Router(config-if)#netmask-format { bitcount | decimal | hexadecimal }&lt;br /&gt;Router#term IP netmask-format { bitcount | decimal | hexadecimal }&lt;br /&gt;Router(config-if)#IP netmask-format { bitcount | decimal | hexadecimal }&lt;br /&gt;Router#ip netmask-format { bitcount | decimal | hexadecimal }&lt;br /&gt;Which layer is responsible for flow control with sliding windows and reliability with sequence numbers and acknowledgments?&lt;br /&gt;Transport&lt;br /&gt;Application&lt;br /&gt;Internet&lt;br /&gt;Network Interface&lt;br /&gt;Which processes does TCP, but not UDP, use?&lt;br /&gt;Windowing&lt;br /&gt;Acknowledgements&lt;br /&gt;Source Port&lt;br /&gt;Destination Port&lt;br /&gt;Select which protocols use distance vector routing?&lt;br /&gt;OSPF&lt;br /&gt;RIP&lt;br /&gt;IGRP&lt;br /&gt;PPP&lt;br /&gt;&lt;br /&gt;^Back to Top&lt;br /&gt;&lt;br /&gt;Networking and Unix interview questions&lt;br /&gt;What is UTP?&lt;br /&gt;&lt;br /&gt;UTP — Unshielded twisted pair 10BASE-T is the preferred Ethernet medium of the 90s. It is based on a star topology and provides a number of advantages over coaxial media:&lt;br /&gt;&lt;br /&gt;It uses inexpensive, readily available copper phone wire. UTP wire is much easier to install and debug than coax. UTP uses RG-45 connectors, which are cheap and reliable.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is a router? What is a gateway?&lt;br /&gt;&lt;br /&gt;Routers are machines that direct a packet through the maze of networks that stand between its source and destination. Normally a router is used for internal networks while a gateway acts a door for the packet to reach the ‘outside’ of the internal network&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Semaphore? What is deadlock?&lt;br /&gt;&lt;br /&gt;Semaphore is a synchronization tool to solve critical-section problem, can be used to control access to the critical section for a process or thread. The main disadvantage (same of mutual-exclusion) is require busy waiting. It will create problems in a multiprogramming system, where a single CPU is shared among many processes.&lt;br /&gt;&lt;br /&gt;Busy waiting wastes CPU cycles.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Deadlock is a situation when two or more processes are waiting indefinitely for an event that can be caused by only one of the waiting processes. The implementation of a semaphore with a waiting queue may result in this situation.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What is Virtual Memory?&lt;br /&gt;&lt;br /&gt;Virtual memory is a technique that allows the execution of processes that may not be completely in memory. A separation of user logical memory from physical memory allows an extremely large virtual memory to be provided for programmers when only a smaller physical memory is available. It is commonly implemented by demand paging. A demand paging system is similar to a paging system with swapping. Processes reside on secondary memory (which is usually a disk). When we want to execute a process, we swap it into memory.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Explain the layered aspect of a UNIX system. What are the layers? What does it mean to say they are layers?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A UNIX system has essentially three main layers:&lt;br /&gt;&lt;br /&gt;. The hardware&lt;br /&gt;&lt;br /&gt;. The operating system kernel&lt;br /&gt;&lt;br /&gt;. The user-level programs&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The kernel hides the system’s hardware underneath an abstract, high-level programming interface. It is responsible for implementing many of the facilities that users and user-level programs take for granted.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The kernel assembles all of the following UNIX concepts from lower-level hardware features:&lt;br /&gt;&lt;br /&gt;. Processes (time-sharing, protected address space)&lt;br /&gt;&lt;br /&gt;. Signals and semaphores&lt;br /&gt;&lt;br /&gt;. Virtual Memory (swapping, paging, and mapping)&lt;br /&gt;&lt;br /&gt;. The filesystem (files, directories, namespace)&lt;br /&gt;&lt;br /&gt;. Pipes and network connections (inter-process communication)&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>HR Interview Questions and Answers</title><link>http://justviewssharing.blogspot.com/2012/10/hr-interview-questions-and-answers.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:31:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-1203761569777442062</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
What Are Your Strenght and Weaknesses?&lt;br /&gt;"My strength is my flexibility to handle change. As far as weaknesses, I feel that my management skills could be stronger, and I am constantly working to improve them."&lt;br /&gt;&lt;br /&gt;Why Should We Hire You?&lt;br /&gt;"I have a unique combination of strong technical skills, and the ability to build strong customer relationships. This allows me to use my knowledge and break down information to be more user-friendly." "With five years' experience working in the financial industry and my proven record of saving the company money, I could make a big difference in your company. I'm confident I would be a great addition to your team."&lt;br /&gt;Why Do You Want to Work Here?&lt;br /&gt;This is the company I've been looking for, a place where my background, experience and skills can be put to use and make things happen."&lt;br /&gt;or&lt;br /&gt;"I've selected key companies whose mission statements are in line with my values, and this company is very high on my list of desirable choices."&lt;br /&gt;WHAT is ur goal&lt;br /&gt;"My immediate goal is to get a job in a growth-oriented company. My long-term goal will depend on where the company goes. I hope to eventually grow into a position of responsibility."&lt;br /&gt;&lt;br /&gt;If you are employed, focus on what you want in your next job: "After two years, I made the decision to look for a company that is team-focused, where I can add my experience."&lt;br /&gt;When Were You Most Satisfied in Your Job?&lt;br /&gt;"I was very satisfied in my last job, because I worked directly with the customers and their problems; that is an important part of the job for me."&lt;br /&gt;What Are Three Positive Things Your Last Boss Would Say About You?&lt;br /&gt;It's time to pull out your old performance appraisals and boss's quotes. This is a great way to brag about yourself through someone else's words: "My boss has told me that I am the best designer he has ever had. He knows he can rely on me, and he likes my sense of humor&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I have been in the customer service industry for the past five years. My most recent experience has been handling incoming calls in the high tech industry. One reason I particularly enjoy this business, and the challenges that go along with it, is the opportunity to connect with people. In my last job,."&lt;br /&gt;Next, mention your strengths and abilities:&lt;br /&gt;"My real strength is my attention to detail. I pride myself on my reputation for following through and meeting deadlines. When I commit to doing something, I make sure it gets done, and on time."&lt;br /&gt;Continued...&lt;br /&gt;Conclude with a statement about your current situation:&lt;br /&gt;"What I am looking for now is a company that values customer relations, where I can join a strong team and have a positive impact on customer retention and sales."&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>computer networks interview questions</title><link>http://justviewssharing.blogspot.com/2012/10/computer-networks-interview-questions.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:29:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-5392445718311908186</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
1. What are 10Base2, 10Base5 and 10BaseT Ethernet LANs&lt;br /&gt;10Base2—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband signaling, with a contiguous cable segment length of 100&lt;br /&gt;meters and a maximum of 2 segments.&lt;br /&gt;10Base5—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband signaling, with 5 continuous segments not exceeding 100&lt;br /&gt;meters per segment.&lt;br /&gt;10BaseT—An Ethernet term meaning a maximum transfer rate of 10 Megabits per second that uses baseband signaling and twisted pair cabling.&lt;br /&gt;&lt;br /&gt;2. What is the difference between an unspecified passive open and a fully specified passive open&lt;br /&gt;An unspecified passive open has the server waiting for a connection request from a client. A fully specified passive open has the server waiting for a connection from a&lt;br /&gt;specific client.&lt;br /&gt;&lt;br /&gt;3. Explain the function of Transmission Control Block&lt;br /&gt;A TCB is a complex data structure that contains a considerable amount of information about each connection.&lt;br /&gt;&lt;br /&gt;4. What is a Management Information Base (MIB)&lt;br /&gt;A Management Information Base is part of every SNMP-managed device. Each SNMP agent has the MIB database that contains information about the device's status, its&lt;br /&gt;performance, connections, and configuration. The MIB is queried by SNMP.&lt;br /&gt;&lt;br /&gt;5. What is anonymous FTP and why would you use it&lt;br /&gt;Anonymous FTP enables users to connect to a host without using a valid login and password. Usually, anonymous FTP uses a login called anonymous or guest, with the&lt;br /&gt;password usually requesting the user's ID for tracking purposes only. Anonymous FTP is used to enable a large number of users to access files on the host without having&lt;br /&gt;to go to the trouble of setting up logins for them all. Anonymous FTP systems usually have strict controls over the areas an anonymous user can access.&lt;br /&gt;&lt;br /&gt;6. What is a pseudo tty A pseudo tty or false terminal enables external machines to connect through Telnet or rlogin. Without a pseudo tty, no connection can take place.&lt;br /&gt;&lt;br /&gt;7. What is REX&lt;br /&gt;What advantage does REX offer other similar utilities&lt;br /&gt;&lt;br /&gt;8. What does the Mount protocol do&lt;br /&gt;The Mount protocol returns a file handle and the name of the file system in which a requested file resides. The message is sent to the client from the server after reception of a client's request.&lt;br /&gt;&lt;br /&gt;9. What is External Data Representation&lt;br /&gt;External Data Representation is a method of encoding data within an RPC message, used to ensure that the data is not system-dependent.&lt;br /&gt;&lt;br /&gt;10. What is the Network Time Protocol ?&lt;br /&gt;&lt;br /&gt;11. BOOTP helps a diskless workstation boot. How does it get a message to the network looking&lt;br /&gt;for its IP address and the location of its operating system boot files BOOTP sends a UDP message with a subnetwork broadcast address and waits for a reply from a server that gives it the IP address. The same message might contain the name of the machine that has the boot files on it. If the boot image location is not specified, the workstation sends another UDP message to query the server.&lt;br /&gt;&lt;br /&gt;12. What is a DNS resource record&lt;br /&gt;A resource record is an entry in a name server's database. There are several types of resource records used, including name-to-address resolution information. Resource&lt;br /&gt;records are maintained as ASCII files.&lt;br /&gt;&lt;br /&gt;13. What protocol is used by DNS name servers&lt;br /&gt;DNS uses UDP for communication between servers. It is a better choice than TCP because of the improved speed a connectionless protocol offers. Of course,&lt;br /&gt;transmission reliability suffers with UDP.&lt;br /&gt;14. What is the difference between interior and exterior neighbor gateways&lt;br /&gt;Interior gateways connect LANs of one organization, whereas exterior gateways connect the organization to the outside world.&lt;br /&gt;&lt;br /&gt;15. What is the HELLO protocol used for&lt;br /&gt;The HELLO protocol uses time instead of distance to determine optimal routing. It is an alternative to the Routing&lt;br /&gt;Information Protocol.&lt;br /&gt;&lt;br /&gt;16. What are the advantages and disadvantages of the three types of routing tables&lt;br /&gt;The three types of routing tables are fixed, dynamic, and fixed central. The fixed table must be manually modified every time there is a change. A dynamic table changes its&lt;br /&gt;information based on network traffic, reducing the amount of manual maintenance. A fixed central table lets a manager modify only one table, which is then read by other&lt;br /&gt;devices. The fixed central table reduces the need to update each machine's table, as with the fixed table. Usually a dynamic table causes the fewest problems for a network&lt;br /&gt;administrator, although the table's contents can change without the administrator being aware of the change.&lt;br /&gt;&lt;br /&gt;17. What is a TCP connection table&lt;br /&gt;18. What is source route&lt;br /&gt;It is a sequence of IP addresses identifying the route a datagram must follow. A source route may optionally be included in an IP datagram header.&lt;br /&gt;&lt;br /&gt;19. What is RIP (Routing Information Protocol)&lt;br /&gt;It is a simple protocol used to exchange information between the routers.&lt;br /&gt;&lt;br /&gt;20. What is SLIP (Serial Line Interface Protocol)&lt;br /&gt;It is a very simple protocol used for transmission of IP datagrams across a serial line.&lt;br /&gt;&lt;br /&gt;21. What is Proxy ARP&lt;br /&gt;It is using a router to answer ARP requests. This will be done when the originating host believes that a destination is local, when in fact is lies beyond router.&lt;br /&gt;22. What is OSPF&lt;br /&gt;It is an Internet routing protocol that scales well, can route traffic along multiple paths, and uses knowledge of an Internet's topology to make accurate routing decisions.&lt;br /&gt;&lt;br /&gt;23. What is Kerberos&lt;br /&gt;It is an authentication service developed at the Massachusetts Institute of Technology. Kerberos uses encryption to prevent intruders from discovering passwords and gaining unauthorized access to files.&lt;br /&gt;24. What is a Multi-homed Host&lt;br /&gt;It is a host that has a multiple network interfaces and that requires m ultiple IP addresses is called as a Multi-homed Host.&lt;br /&gt;&lt;br /&gt;25. What is NVT (Network Virtual Terminal)&lt;br /&gt;It is a set of rules defining a very simple virtual terminal interaction. The NVT is used in the start of a Telnet session.&lt;br /&gt;26. What is Gateway-to-Gateway protocol&lt;br /&gt;It is a protocol formerly used to exchange routing information between Internet core routers.&lt;br /&gt;&lt;br /&gt;27. What is BGP (Border Gateway Protocol)&lt;br /&gt;It is a protocol used to advertise the set of networks that can be reached with in an autonomous system. BGP enables this information to be shared with the autonomous&lt;br /&gt;system. This is newer than EGP (Exterior Gateway Protocol).&lt;br /&gt;&lt;br /&gt;28. What is autonomous system&lt;br /&gt;It is a collection of routers under the control of a single administrative authority and that uses a common Interior Gateway Protocol.&lt;br /&gt;&lt;br /&gt;29. What is EGP (Exterior Gateway Protocol)&lt;br /&gt;It is the protocol the routers in neighboring autonomous systems use to identify the set of networks that can be reached&lt;br /&gt;within or via each autonomous system.&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;30. What is IGP (Interior Gateway Protocol)&lt;br /&gt;It is any routing protocol used within an autonomous system.&lt;br /&gt;31. What is Mail Gateway&lt;br /&gt;It is a system that performs a protocol translation between different electronic mail delivery protocols.&lt;br /&gt;32. What is wide-mouth frog&lt;br /&gt;Wide-mouth frog is the simplest known key distribution center (KDC) authentication protocol.&lt;br /&gt;33. What are Digrams and Trigrams&lt;br /&gt;The most common two letter combinations are called as digrams. e.g. th, in, er, re and an. The most common three letter combinations are called as trigrams. e.g. the, ing,&lt;br /&gt;and, and ion.&lt;br /&gt;34. What is silly window syndrome&lt;br /&gt;It is a problem that can ruin TCP performance. This problem occurs when data are passed to the sending TCP entity in large blocks, but an interactive application on the&lt;br /&gt;receiving side reads 1 byte at a time.&lt;br /&gt;35. What is region&lt;br /&gt;When hierarchical routing is used, the routers are divided into what we call regions, with each router knowing all the details about how to route packets to destinations&lt;br /&gt;within its own region, but knowing nothing about the internal structure of other regions.&lt;br /&gt;36. What is multicast routing&lt;br /&gt;Sending a message to a group is called multicasting, and its routing algorithm is called multicast routing.&lt;br /&gt;37. What is traffic shaping&lt;br /&gt;One of the main causes of congestion is that traffic is often busy. If hosts could be made to transmit at a uniform rate,&lt;br /&gt;congestion would be less common. Another open loop&lt;br /&gt;method to help manage congestion is forcing the packet to be transmitted at a more predictable rate. This is called&lt;br /&gt;traffic shaping.&lt;br /&gt;38. What is packet filter&lt;br /&gt;Packet filter is a standard router equipped with some extra functionality. The extra functionality allows every incoming or&lt;br /&gt;outgoing packet to be inspected. Packets meeting&lt;br /&gt;some criterion are forwarded normally. Those that fail the test are dropped.&lt;br /&gt;39. What is virtual path&lt;br /&gt;Along any transmission path from a given source to a given destination, a group of virtual circuits can be grouped&lt;br /&gt;together into what is called path.&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;40. What is virtual channel&lt;br /&gt;Virtual channel is normally a connection from one source to one destination, although multicast connections are also&lt;br /&gt;permitted. The other name for virtual channel is virtual&lt;br /&gt;circuit.&lt;br /&gt;41. What is logical link control&lt;br /&gt;One of two sublayers of the data link layer of OSI reference model, as defined by the IEEE 802 standard. This sublayer&lt;br /&gt;is responsible for maintaining the link between&lt;br /&gt;computers when they are sending data across the physical network connection.&lt;br /&gt;42. Why should you care about the OSI Reference Model&lt;br /&gt;It provides a framework for discussing network operations and design.&lt;br /&gt;43. What is the difference between routable and non- routable protocols&lt;br /&gt;Routable protocols can work with a router and can be used to build large networks. Non-Routable protocols are&lt;br /&gt;designed to work on small, local networks and cannot be&lt;br /&gt;used with a router&lt;br /&gt;44. What is MAU&lt;br /&gt;In token Ring , hub is called Multistation Access Unit(MAU).&lt;br /&gt;45. Explain 5-4-3 rule&lt;br /&gt;In a Ethernet network, between any two points on the network, there can be no more than five network segments or four&lt;br /&gt;repeaters, and of those five segments only three of&lt;br /&gt;segments can be populated.&lt;br /&gt;46. What is the difference between TFTP and FTP application layer protocols&lt;br /&gt;The Trivial File Transfer Protocol (TFTP) allows a local host to obtain files from a remote host but does not provide&lt;br /&gt;reliability or security. It uses the fundamental packet&lt;br /&gt;delivery services offered by UDP.&lt;br /&gt;The File Transfer Protocol (FTP) is the standard mechanism provided by TCP / IP for copying a file from one host to&lt;br /&gt;another. It uses the services offered by TCP and so is&lt;br /&gt;reliable and secure. It establishes two connections (virtual circuits) between the hosts, one for data transfer and another&lt;br /&gt;for control information.&lt;br /&gt;47. What is the range of addresses in the classes of internet addresses&lt;br /&gt;Class A 0.0.0.0 - 127.255.255.255&lt;br /&gt;Class B 128.0.0.0 - 191.255.255.255&lt;br /&gt;Class C 192.0.0.0 - 223.255.255.255&lt;br /&gt;Class D 224.0.0.0 - 239.255.255.255&lt;br /&gt;Class E 240.0.0.0 - 247.255.255.255&lt;br /&gt;48. What is the minimum and maximum length of the header in the TCP segment and IP datagram&lt;br /&gt;The header should have a minimum length of 20 bytes and can have a maximum length of 60 bytes.&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;49. What is difference between ARP and RARP&lt;br /&gt;The address resolution protocol (ARP) is used to associate the 32 bit IP address with the 48 bit physical address, used&lt;br /&gt;by a host or a router to find the physical address of&lt;br /&gt;another host on its network by sending a ARP query packet that includes the IP address of the receiver.&lt;br /&gt;The reverse address resolution protocol (RARP) allows a host to discover its Internet address when it knows only its&lt;br /&gt;physical address.&lt;br /&gt;50. What is ICMP&lt;br /&gt;ICMP is Internet Control Message Protocol, a network layer protocol of the TCP/IP suite used by hosts and gateways to&lt;br /&gt;send notification of datagram problems back to the&lt;br /&gt;sender. It uses the echo test / reply to test whether a destination is reachable and responding. It also handles both&lt;br /&gt;control and error messages.&lt;br /&gt;51. What are the data units at different layers of the TCP / IP protocol suite&lt;br /&gt;The data unit created at the application layer is called a message, at the transport layer the data unit created is called&lt;br /&gt;either a segment or an user datagram, at the network&lt;br /&gt;layer the data unit created is called the datagram, at the data link layer the datagram is encapsulated in to a frame and&lt;br /&gt;finally transmitted as signals along the transmission&lt;br /&gt;media.&lt;br /&gt;52. What is Project 802&lt;br /&gt;It is a project started by IEEE to set standards that enable intercommunication between equipment from a variety of&lt;br /&gt;manufacturers. It is a way for specifying functions of the&lt;br /&gt;physical layer, the data link layer and to some extent the network layer to allow for interconnectivity of major LAN&lt;br /&gt;protocols.&lt;br /&gt;It consists of the following:&lt;br /&gt;802.1 is an internetworking standard for compatibility of different LANs and MANs across protocols.&lt;br /&gt;802.2 Logical link control (LLC) is the upper sublayer of the data link layer which is non-architecture-specific, that is&lt;br /&gt;remains the same for all IEEE-defined LANs.&lt;br /&gt;Media access control (MAC) is the lower sublayer of the data link layer that contains some distinct modules each&lt;br /&gt;carrying proprietary information specific to the LAN product&lt;br /&gt;being used. The modules are Ethernet LAN (802.3), Token ring LAN (802.4), Token bus LAN (802.5).&lt;br /&gt;802.6 is distributed queue dual bus (DQDB) designed to be used in MANs.&lt;br /&gt;53. What is Bandwidth&lt;br /&gt;Every line has an upper limit and a lower limit on the frequency of signals it can carry. This limited range is called the&lt;br /&gt;bandwidth.&lt;br /&gt;54. Difference between bit rate and baud rate.&lt;br /&gt;Bit rate is the number of bits transmitted during one second whereas baud rate refers to the number of signal units per&lt;br /&gt;second that are required to represent&lt;br /&gt;those bits.&lt;br /&gt;baud rate = bit rate / N&lt;br /&gt;where N is no-of-bits represented by each signal shift.&lt;br /&gt;55. What is MAC address&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;The address for a device as it is identified at the Media Access Control (MAC) layer in the network architecture. MAC&lt;br /&gt;address is usually stored in ROM on the network&lt;br /&gt;adapter card and is unique.&lt;br /&gt;56. What is attenuation&lt;br /&gt;The degeneration of a signal over distance on a network cable is called attenuation.&lt;br /&gt;57. What is cladding&lt;br /&gt;A layer of a glass surrounding the center fiber of glass inside a fiber-optic cable.&lt;br /&gt;58. What is RAID&lt;br /&gt;A method for providing fault tolerance by using multiple hard disk drives.&lt;br /&gt;59. What is NETBIOS and NETBEUI&lt;br /&gt;NETBIOS is a programming interface that allows I/O requests to be sent to and received from a remote computer and it&lt;br /&gt;hides the networking hardware from applications.&lt;br /&gt;NETBEUI is NetBIOS extended user interface. A transport protocol designed by microsoft and IBM for the use on small&lt;br /&gt;subnets.&lt;br /&gt;60. What is redirector&lt;br /&gt;Redirector is software that intercepts file or prints I/O requests and translates them into network requests. This comes&lt;br /&gt;under presentation layer.&lt;br /&gt;61. What is Beaconing&lt;br /&gt;The process that allows a network to self-repair networks problems. The stations on the network notify the other&lt;br /&gt;stations on the ring when they are not receiving the&lt;br /&gt;transmissions. Beaconing is used in Token ring and FDDI networks.&lt;br /&gt;62. What is terminal emulation, in which layer it comes&lt;br /&gt;Telnet is also called as terminal emulation. It belongs to application layer.&lt;br /&gt;63. What is frame relay, in which layer it comes&lt;br /&gt;Frame relay is a packet switching technology. It will operate in the data link layer.&lt;br /&gt;64. What do you meant by "triple X" in Networks&lt;br /&gt;The function of PAD (Packet Assembler Disassembler) is described in a document known as X.3. The standard protocol&lt;br /&gt;has been defined between the terminal and the&lt;br /&gt;PAD, called X.28; another standard protocol exists between hte PAD and the network, called X.29. Together, these&lt;br /&gt;three recommendations are often called "triple X"&lt;br /&gt;65. What is SAP&lt;br /&gt;Series of interface points that allow other computers to communicate with the other layers of network protocol stack.&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;66. What is subnet&lt;br /&gt;A generic term for section of a large networks usually separated by a bridge or router.&lt;br /&gt;67. What is Brouter&lt;br /&gt;Hybrid devices that combine the features of both bridges and routers.&lt;br /&gt;68. How Gateway is different from Routers&lt;br /&gt;A gateway operates at the upper levels of the OSI model and translates information between two completely different&lt;br /&gt;network architectures or data formats.&lt;br /&gt;69. What are the different type of networking / internetworking devices&lt;br /&gt;Repeater:&lt;br /&gt;Also called a regenerator, it is an electronic device that operates only at physical layer. It receives the signal in the&lt;br /&gt;network before it becomes weak, regenerates the original&lt;br /&gt;bit pattern and puts the refreshed copy back in to the link.&lt;br /&gt;Bridges:&lt;br /&gt;These operate both in the physical and data link layers of LANs of same type. They divide a larger network in to smaller&lt;br /&gt;segments. They contain logic that allow them to&lt;br /&gt;keep the traffic for each segment separate and thus are repeaters that relay a frame only the side of the segment&lt;br /&gt;containing the intended recipent and control congestion.&lt;br /&gt;Routers:&lt;br /&gt;They relay packets among multiple interconnected networks (i.e. LANs of different type). They operate in the physical,&lt;br /&gt;data link and network layers. They contain software&lt;br /&gt;that enable them to determine which of the several possible paths is the best for a particular transmission.&lt;br /&gt;Gateways:&lt;br /&gt;They relay packets among networks that have different protocols (e.g. between a LAN and a WAN). They accept a&lt;br /&gt;packet formatted for one protocol and convert it to a&lt;br /&gt;packet formatted for another protocol before forwarding it. They operate in all seven layers of the OSI model.&lt;br /&gt;70. What is mesh network&lt;br /&gt;A network in which there are multiple network links between computers to provide multiple paths for data to travel.&lt;br /&gt;71. What is passive topology&lt;br /&gt;When the computers on the network simply listen and receive the signal, they are referred to as passive because they&lt;br /&gt;don’t amplify the signal in any way. Example for&lt;br /&gt;passive topology - linear bus.&lt;br /&gt;72. What are the important topologies for networks&lt;br /&gt;BUS topology:&lt;br /&gt;In this each computer is directly connected to primary network cable in a single line.&lt;br /&gt;Advantages:&lt;br /&gt;Inexpensive, easy to install, simple to understand, easy to extend.&lt;br /&gt;STAR topology:&lt;br /&gt;In this all computers are connected using a central hub.&lt;br /&gt;Advantages:&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;Can be inexpensive, easy to install and reconfigure and easy to trouble shoot physical problems.&lt;br /&gt;RING topology:&lt;br /&gt;In this all computers are connected in loop.&lt;br /&gt;Advantages:&lt;br /&gt;All computers have equal access to network media, installation can be simple, and signal does not degrade as much as&lt;br /&gt;in other topologies because each computer&lt;br /&gt;regenerates it.&lt;br /&gt;73. What are major types of networks and explain&lt;br /&gt;Server-based network&lt;br /&gt;Peer-to-peer network&lt;br /&gt;Peer-to-peer network, computers can act as both servers sharing resources and as clients using the resources.&lt;br /&gt;Server-based networks provide centralized control of network resources and rely on server computers to provide&lt;br /&gt;security and network administration&lt;br /&gt;74. What is Protocol Data Unit&lt;br /&gt;The data unit in the LLC level is called the protocol data unit (PDU). The PDU contains of four fields a destination&lt;br /&gt;service access point (DSAP), a source service access&lt;br /&gt;point (SSAP), a control field and an information field. DSAP, SSAP are addresses used by the LLC to identify the&lt;br /&gt;protocol stacks on the receiving and sending machines&lt;br /&gt;that are generating and using the data. The control field specifies whether the PDU frame is a information frame (I -&lt;br /&gt;frame) or a supervisory frame (S - frame) or a&lt;br /&gt;unnumbered frame (U - frame).&lt;br /&gt;75. What is difference between baseband and broadband transmission&lt;br /&gt;In a baseband transmission, the entire bandwidth of the cable is consumed by a single signal. In broadband&lt;br /&gt;transmission, signals are sent on multiple frequencies, allowing&lt;br /&gt;multiple signals to be sent simultaneously.&lt;br /&gt;76. What are the possible ways of data exchange&lt;br /&gt;(i) Simplex (ii) Half-duplex (iii) Full-duplex.&lt;br /&gt;77. What are the types of Transmission media&lt;br /&gt;Signals are usually transmitted over some transmission media that are broadly classified in to two categories.&lt;br /&gt;Guided Media:&lt;br /&gt;These are those that provide a conduit from one device to another that include twisted-pair, coaxial cable and fiber-optic&lt;br /&gt;cable. A signal traveling along any of these media&lt;br /&gt;is directed and is contained by the physical limits of the medium. Twisted-pair and coaxial cable use metallic that accept&lt;br /&gt;and transport signals in the form of electrical&lt;br /&gt;current. Optical fiber is a glass or plastic cable that accepts and transports signals in the form of light.&lt;br /&gt;Unguided Media:&lt;br /&gt;This is the wireless media that transport electromagnetic waves without using a physical conductor. Signals are&lt;br /&gt;broadcast either through air. This is done through radio&lt;br /&gt;communication, satellite communication and cellular telephony.&lt;br /&gt;78. What is point-to-point protocol&lt;br /&gt;Computer Networks Interview Questions&lt;br /&gt;A communications protocol used to connect computers to remote networking services including Internet service&lt;br /&gt;providers.&lt;br /&gt;79. What are the two types of transmission technology available&lt;br /&gt;(i) Broadcast and (ii) point-to-point&lt;br /&gt;80. Difference between the communication and transmission.&lt;br /&gt;Transmission is a physical movement of information and concern issues like bit polarity, synchronization, clock etc.&lt;br /&gt;Communication means the meaning full exchange of information between two communication media.&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Database Interview Questions and answers</title><link>http://justviewssharing.blogspot.com/2012/10/database-interview-questions-and-answers.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:26:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-6149990921721840147</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
Differentiate between TRUNCATE and DELETE&lt;br /&gt;What is the maximum buffer size that can be specified using the DBMS_OUTPUT.ENABLE function?&lt;br /&gt;Can you use a commit statement within a database trigger?&lt;br /&gt;What is an UTL_FILE.What are different procedures and functions associated with it?&lt;br /&gt;Difference between database triggers and form triggers?&lt;br /&gt;What is OCI. What are its uses?&lt;br /&gt;What are ORACLE PRECOMPILERS?&lt;br /&gt;What is syntax for dropping a procedure and a function? Are these operations possible?&lt;br /&gt;Can a function take OUT parameters. If not why?&lt;br /&gt;Can the default values be assigned to actual parameters?&lt;br /&gt;What is difference between a formal and an actual parameter?&lt;br /&gt;What are different modes of parameters used in functions and procedures?&lt;br /&gt;Difference between procedure and function.&lt;br /&gt;Can cursor variables be stored in PL/SQL tables.If yes how. If not why?&lt;br /&gt;How do you pass cursor variables in PL/SQL?&lt;br /&gt;How do you open and close a cursor variable.Why it is required?&lt;br /&gt;What should be the return type for a cursor variable.Can we use a scalar data type as return type?&lt;br /&gt;What is use of a cursor variable? How it is defined?&lt;br /&gt;What WHERE CURRENT OF clause does in a cursor?&lt;br /&gt;Difference between NO DATA FOUND and %NOTFOUND&lt;br /&gt;What is a cursor for loop?&lt;br /&gt;What are cursor attributes?&lt;br /&gt;Difference between an implicit &amp;amp; an explicit cursor.&lt;br /&gt;What is a cursor?&lt;br /&gt;What is the purpose of a cluster?&lt;br /&gt;How do you find the numbert of rows in a Table ?&lt;br /&gt;Display the number value in Words?&lt;br /&gt;What is a pseudo column. Give some examples?&lt;br /&gt;How you will avoid your query from using indexes?&lt;br /&gt;What is a OUTER JOIN?&lt;br /&gt;Which is more faster - IN or EXISTS?&lt;br /&gt;When do you use WHERE clause and when do you use HAVING clause?&lt;br /&gt;There is a % sign in one field of a column. What will be the query to find it?&lt;br /&gt;What is difference between SUBSTR and INSTR?&lt;br /&gt;Which datatype is used for storing graphics and images?&lt;br /&gt;What is difference between SQL and SQL*PLUS?&lt;br /&gt;What is difference between UNIQUE and PRIMARY KEY constraints?&lt;br /&gt;What is difference between Rename and Alias?&lt;br /&gt;What are various joins used while writing SUBQUERIES?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;MS SQL Server interview questions :&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;This one always gets asked. For a while the database interview questions were limited to Oracle and generic database design questions. This is a set of more than a hundred Microsoft SQL Server interview questions. Some questions are open-ended, and some do not have answers.&lt;br /&gt;&lt;br /&gt;What is normalization? - Well a relational database is basically composed of tables that contain related data. So the Process of organizing this data into tables is actually referred to as normalization.&lt;br /&gt;What is a Stored Procedure? - Its nothing but a set of T-SQL statements combined to perform a single task of several tasks. Its basically like a Macro so when you invoke the Stored procedure, you actually run a set of statements.&lt;br /&gt;Can you give an example of Stored Procedure? - sp_helpdb , sp_who2, sp_renamedb are a set of system defined stored procedures. We can also have user defined stored procedures which can be called in similar way.&lt;br /&gt;What is a trigger? - Triggers are basically used to implement business rules. Triggers is also similar to stored procedures. The difference is that it can be activated when data is added or edited or deleted from a table in a database.&lt;br /&gt;What is a view? - If we have several tables in a db and we want to view only specific columns from specific tables we can go for views. It would also suffice the needs of security some times allowing specfic users to see only specific columns based on the permission that we can configure on the view. Views also reduce the effort that is required for writing queries to access specific columns every time.&lt;br /&gt;What is an Index? - When queries are run against a db, an index on that db basically helps in the way the data is sorted to process the query for faster and data retrievals are much faster when we have an index.&lt;br /&gt;What are the types of indexes available with SQL Server? - There are basically two types of indexes that we use with the SQL Server. Clustered and the Non-Clustered.&lt;br /&gt;What is the basic difference between clustered and a non-clustered index? - The difference is that, Clustered index is unique for any given table and we can have only one clustered index on a table. The leaf level of a clustered index is the actual data and the data is resorted in case of clustered index. Whereas in case of non-clustered index the leaf level is actually a pointer to the data in rows so we can have as many non-clustered indexes as we can on the db.&lt;br /&gt;What are cursors? - Well cursors help us to do an operation on a set of data that we retreive by commands such as Select columns from table. For example : If we have duplicate records in a table we can remove it by declaring a cursor which would check the records during retreival one by one and remove rows which have duplicate values.&lt;br /&gt;When do we use the UPDATE_STATISTICS command? - This command is basically used when we do a large processing of data. If we do a large amount of deletions any modification or Bulk Copy into the tables, we need to basically update the indexes to take these changes into account. UPDATE_STATISTICS updates the indexes on these tables accordingly.&lt;br /&gt;Which TCP/IP port does SQL Server run on? - SQL Server runs on port 1433 but we can also change it for better security.&lt;br /&gt;From where can you change the default port? - From the Network Utility TCP/IP properties –&amp;gt; Port number.both on client and the server.&lt;br /&gt;Can you tell me the difference between DELETE &amp;amp; TRUNCATE commands? - Delete command removes the rows from a table based on the condition that we provide with a WHERE clause. Truncate will actually remove all the rows from a table and there will be no data in the table after we run the truncate command.&lt;br /&gt;Can we use Truncate command on a table which is referenced by FOREIGN KEY? - No. We cannot use Truncate command on a table with Foreign Key because of referential integrity.&lt;br /&gt;What is the use of DBCC commands? - DBCC stands for database consistency checker. We use these commands to check the consistency of the databases, i.e., maintenance, validation task and status checks.&lt;br /&gt;Can you give me some DBCC command options?(Database consistency check) - DBCC CHECKDB - Ensures that tables in the db and the indexes are correctly linked.and DBCC CHECKALLOC - To check that all pages in a db are correctly allocated. DBCC SQLPERF - It gives report on current usage of transaction log in percentage. DBCC CHECKFILEGROUP - Checks all tables file group for any damage.&lt;br /&gt;What command do we use to rename a db? - sp_renamedb ‘oldname’ , ‘newname’&lt;br /&gt;Well sometimes sp_reanmedb may not work you know because if some one is using the db it will not accept this command so what do you think you can do in such cases? - In such cases we can first bring to db to single user using sp_dboptions and then we can rename that db and then we can rerun the sp_dboptions command to remove the single user mode.&lt;br /&gt;What is the difference between a HAVING CLAUSE and a WHERE CLAUSE? - Having Clause is basically used only with the GROUP BY function in a query. WHERE Clause is applied to each row before they are part of the GROUP BY function in a query.&lt;br /&gt;What do you mean by COLLATION? - Collation is basically the sort order. There are three types of sort order Dictionary case sensitive, Dictonary - case insensitive and Binary.&lt;br /&gt;What is a Join in SQL Server? - Join actually puts data from two or more tables into a single result set.&lt;br /&gt;Can you explain the types of Joins that we can have with Sql Server? - There are three types of joins: Inner Join, Outer Join, Cross Join&lt;br /&gt;When do you use SQL Profiler? - SQL Profiler utility allows us to basically track connections to the SQL Server and also determine activities such as which SQL Scripts are running, failed jobs etc..&lt;br /&gt;What is a Linked Server? - Linked Servers is a concept in SQL Server by which we can add other SQL Server to a Group and query both the SQL Server dbs using T-SQL Statements.&lt;br /&gt;Can you link only other SQL Servers or any database servers such as Oracle? - We can link any server provided we have the OLE-DB provider from Microsoft to allow a link. For Oracle we have a OLE-DB provider for oracle that microsoft provides to add it as a linked server to the sql server group.&lt;br /&gt;Which stored procedure will you be running to add a linked server? - sp_addlinkedserver, sp_addlinkedsrvlogin&lt;br /&gt;What are the OS services that the SQL Server installation adds? - MS SQL SERVER SERVICE, SQL AGENT SERVICE, DTC (Distribution transac co-ordinator)&lt;br /&gt;Can you explain the role of each service? - SQL SERVER - is for running the databases SQL AGENT - is for automation such as Jobs, DB Maintanance, Backups DTC - Is for linking and connecting to other SQL Servers&lt;br /&gt;How do you troubleshoot SQL Server if its running very slow? - First check the processor and memory usage to see that processor is not above 80% utilization and memory not above 40-45% utilization then check the disk utilization using Performance Monitor, Secondly, use SQL Profiler to check for the users and current SQL activities and jobs running which might be a problem. Third would be to run UPDATE_STATISTICS command to update the indexes&lt;br /&gt;Lets say due to N/W or Security issues client is not able to connect to server or vice versa. How do you troubleshoot? - First I will look to ensure that port settings are proper on server and client Network utility for connections. ODBC is properly configured at client end for connection ——Makepipe &amp;amp; readpipe are utilities to check for connection. Makepipe is run on Server and readpipe on client to check for any connection issues.&lt;br /&gt;What are the authentication modes in SQL Server? - Windows mode and mixed mode (SQL &amp;amp; Windows).&lt;br /&gt;Where do you think the users names and passwords will be stored in sql server? - They get stored in master db in the sysxlogins table.&lt;br /&gt;What is log shipping? Can we do logshipping with SQL Server 7.0 - Logshipping is a new feature of SQL Server 2000. We should have two SQL Server - Enterprise Editions. From Enterprise Manager we can configure the logshipping. In logshipping the transactional log file from one server is automatically updated into the backup database on the other server. If one server fails, the other server will have the same db and we can use this as the DR (disaster recovery) plan.&lt;br /&gt;Let us say the SQL Server crashed and you are rebuilding the databases including the master database what procedure to you follow? - For restoring the master db we have to stop the SQL Server first and then from command line we can type SQLSERVER .m which will basically bring it into the maintenance mode after which we can restore the master db.&lt;br /&gt;Let us say master db itself has no backup. Now you have to rebuild the db so what kind of action do you take? - (I am not sure- but I think we have a command to do it).&lt;br /&gt;What is BCP? When do we use it? - BulkCopy is a tool used to copy huge amount of data from tables and views. But it won’t copy the structures of the same.&lt;br /&gt;What should we do to copy the tables, schema and views from one SQL Server to another? - We have to write some DTS packages for it.&lt;br /&gt;What are the different types of joins and what dies each do?&lt;br /&gt;What are the four main query statements?&lt;br /&gt;What is a sub-query? When would you use one?&lt;br /&gt;What is a NOLOCK?&lt;br /&gt;What are three SQL keywords used to change or set someone’s permissions?&lt;br /&gt;What is the difference between HAVING clause and the WHERE clause?&lt;br /&gt;What is referential integrity? What are the advantages of it?&lt;br /&gt;What is database normalization?&lt;br /&gt;Which command using Query Analyzer will give you the version of SQL server and operating system?&lt;br /&gt;Using query analyzer, name 3 ways you can get an accurate count of the number of records in a table?&lt;br /&gt;What is the purpose of using COLLATE in a query?&lt;br /&gt;What is a trigger?&lt;br /&gt;What is one of the first things you would do to increase performance of a query? For example, a boss tells you that “a query that ran yesterday took 30 seconds, but today it takes 6 minutes”&lt;br /&gt;What is an execution plan? When would you use it? How would you view the execution plan?&lt;br /&gt;What is the STUFF function and how does it differ from the REPLACE function?&lt;br /&gt;What does it mean to have quoted_identifier on? What are the implications of having it off?&lt;br /&gt;What are the different types of replication? How are they used?&lt;br /&gt;What is the difference between a local and a global variable?&lt;br /&gt;What is the difference between a Local temporary table and a Global temporary table? How is each one used?&lt;br /&gt;What are cursors? Name four types of cursors and when each one would be applied?&lt;br /&gt;What is the purpose of UPDATE STATISTICS?&lt;br /&gt;How do you use DBCC statements to monitor various aspects of a SQL server installation?&lt;br /&gt;How do you load large data to the SQL server database?&lt;br /&gt;How do you check the performance of a query and how do you optimize it?&lt;br /&gt;How do SQL server 2000 and XML linked? Can XML be used to access data?&lt;br /&gt;What is SQL server agent?&lt;br /&gt;What is referential integrity and how is it achieved?&lt;br /&gt;What is indexing?&lt;br /&gt;What is normalization and what are the different forms of normalizations?&lt;br /&gt;Difference between server.transfer and server.execute method?&lt;br /&gt;What id de-normalization and when do you do it?&lt;br /&gt;What is better - 2nd Normal form or 3rd normal form? Why?&lt;br /&gt;Can we rewrite subqueries into simple select statements or with joins? Example?&lt;br /&gt;What is a function? Give some example?&lt;br /&gt;What is a stored procedure?&lt;br /&gt;Difference between Function and Procedure-in general?&lt;br /&gt;Difference between Function and Stored Procedure?&lt;br /&gt;Can a stored procedure call another stored procedure. If yes what level and can it be controlled?&lt;br /&gt;Can a stored procedure call itself(recursive). If yes what level and can it be controlled.?&lt;br /&gt;How do you find the number of rows in a table?&lt;br /&gt;Difference between Cluster and Non-cluster index?&lt;br /&gt;What is a table called, if it does not have neither Cluster nor Non-cluster Index?&lt;br /&gt;Explain DBMS, RDBMS?&lt;br /&gt;Explain basic SQL queries with SELECT from where Order By, Group By-Having?&lt;br /&gt;Explain the basic concepts of SQL server architecture?&lt;br /&gt;Explain couple pf features of SQL server&lt;br /&gt;Scalability, Availability, Integration with internet, etc.)?&lt;br /&gt;Explain fundamentals of Data ware housing &amp;amp; OLAP?&lt;br /&gt;Explain the new features of SQL server 2000?&lt;br /&gt;How do we upgrade from SQL Server 6.5 to 7.0 and 7.0 to 2000?&lt;br /&gt;What is data integrity? Explain constraints?&lt;br /&gt;Explain some DBCC commands?&lt;br /&gt;Explain sp_configure commands, set commands?&lt;br /&gt;Explain what are db_options used for?&lt;br /&gt;What is the basic functions for master, msdb, tempdb databases?&lt;br /&gt;What is a job?&lt;br /&gt;What are tasks?&lt;br /&gt;What are primary keys and foreign keys?&lt;br /&gt;How would you Update the rows which are divisible by 10, given a set of numbers in column?&lt;br /&gt;If a stored procedure is taking a table data type, how it looks?&lt;br /&gt;How m-m relationships are implemented?&lt;br /&gt;How do you know which index a table is using?&lt;br /&gt;How will oyu test the stored procedure taking two parameters namely first name and last name returning full name?&lt;br /&gt;How do you find the error, how can you know the number of rows effected by last SQL statement?&lt;br /&gt;How can you get @@error and @@rowcount at the same time?&lt;br /&gt;What are sub-queries? Give example? In which case sub-queries are not feasible?&lt;br /&gt;What are the type of joins? When do we use Outer and Self joins?&lt;br /&gt;Which virtual table does a trigger use?&lt;br /&gt;How do you measure the performance of a stored procedure?&lt;br /&gt;Questions regarding Raiseerror?&lt;br /&gt;Questions on identity?&lt;br /&gt;If there is failure during updation of certain rows, what will be the state?&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>sd-interview-questions-and-answers</title><link>http://justviewssharing.blogspot.com/2012/10/sd-interview-questions-and-answers.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:21:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-3882579172911860696</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Name two ways to start a transaction.&lt;br /&gt;&lt;br /&gt;Dynamic Menu&lt;br /&gt;Command Field&lt;br /&gt;&lt;br /&gt;Why do you create user-specific parameters?&lt;br /&gt;&lt;br /&gt;They supply defaults to R/3 fields. If a field is indicated, the system automatically fills in default value. Depending on the field definition, the entry can also be replaced with a value entered by the user. (Concept of PARAMETER ID)&lt;br /&gt;&lt;br /&gt;Name the three different kinds of messages in the R/3 system. What is the difference between them?&lt;br /&gt;&lt;br /&gt;A message can have five different types. These message types have the following effects during list processing:&lt;br /&gt;A (=Abend):&lt;br /&gt;&lt;br /&gt;The system displays a message of this message type in a dialog window. After the user confirms the message using ENTER, the system terminates the entire transaction (for example SE38).&lt;br /&gt;E (=Error) or W (=Warning):&lt;br /&gt;&lt;br /&gt;The system displays a message of this message type in the status line. After the user chooses ENTER, the system acts as follows:&lt;br /&gt;While creating the basic list, the system terminates the report.&lt;br /&gt;While creating a secondary list, the system terminates the corresponding processing block and keeps displaying the previous list level.&lt;br /&gt;I (=Information):&lt;br /&gt;&lt;br /&gt;The system displays a message of this message type in a dialog window. After the user chooses ENTER , the system resumes processing at the current program position.&lt;br /&gt;S (=Success):&lt;br /&gt;&lt;br /&gt;The system displays a message of this message type on the output screen in the status line of the currently created list.&lt;br /&gt;&lt;br /&gt;What is a data dictionary or repository?&lt;br /&gt;&lt;br /&gt;Central catalog that contains the descriptions of an organization's data and provides information about the relationships between the data and its use in programs and screens.&lt;br /&gt;The data descriptions in a Data Dictionary is also called metadata, i.e., data that describes other data.&lt;br /&gt;The ABAP/4 Dictionary stores system-wide data definitions. When you create a new data definition, the Dictionary tool does all the processing necessary to create the definition. You can use the Dictionary tool to look up the "definition" of objects in your R/3 System.&lt;br /&gt;&lt;br /&gt;What is a matchcode?&lt;br /&gt;&lt;br /&gt;Comparsion key. A matchcode allows you to locate the key of a particular database record (e.g. account number) by entering any field value contained in the record. The system then displays a list of records matching the specifications.&lt;br /&gt;If you want an end user to see a specific menu after logging on the R/3 system, how could you do that?&lt;br /&gt;User maintenance transactions allow the system administrator to create and maintain user master records. This includes the generation and assignment of authorizations and authorization profiles.&lt;br /&gt;&lt;br /&gt;II CORPORATE STRUCTURE&lt;br /&gt;&lt;br /&gt;In R/3 you can represent a company's structure by defining and assigning corporate structure elements. What is the purpose of doing that?&lt;br /&gt;&lt;br /&gt;Enterprise organization diagram. Chart showing the organizational structure of an enterprise, its organization units and how they are related. A combined structure can be created from the point of view of accounting, MM, SD. This structure forms a framework in which all business transactions can be processed.&lt;br /&gt;&lt;br /&gt;Which three organizational elements make up a sales area and briefly explain their function?&lt;br /&gt;&lt;br /&gt;Sales organization: An organizational unit that sells and distributes products, negotiates terms of sale, and is responsible for these transactions.&lt;br /&gt;&lt;br /&gt;Distribution channel: Channel through which salable materials or services reach customers. Typical distribution channels include wholesale, retail and direct sales. You can assign a distribution channel to one or more sales organizations.&lt;br /&gt;&lt;br /&gt;Division: Product groups can be defined for a wide-ranging spectrum of products. For every division you can make customer-specific agreements on, for example, partial deliveries, pricing and terms of payment. Within a division you can carry out statistical analyses or set up separate marketing.&lt;br /&gt;&lt;br /&gt;Name the three internal organizational elements within a sales organization and briefly explain their function.&lt;br /&gt;&lt;br /&gt;Sales Office. Geographical aspects of the organization in business development and sales are defined using the term sales office. A sales office can be considered as a subsidiary.&lt;br /&gt;&lt;br /&gt;Sales offices are assigned to sales areas. If you enter a sales order for a sales office within a certain sales area, the sales office must be assigned to that area.&lt;br /&gt;&lt;br /&gt;Sales Group. The staff of a sales office may be subdivided into sales groups. For example, sales groups can be defined for individual divisions.&lt;br /&gt;&lt;br /&gt;Salespersons. Individual personnel master records are used to manage data about salespersons. You can assign a sales person to a sales group in the personnel master record.&lt;br /&gt;&lt;br /&gt;What does the term "business area" refer to and how can it be used?&lt;br /&gt;&lt;br /&gt;Business Area. The system posts costs and revenue according to the business area. The business area can be equivalent to the:&lt;br /&gt;&lt;br /&gt;sales area (if the accounts are to be posted according to sales)&lt;br /&gt;&lt;br /&gt;plant/division (if the accounts are to be posted according to products)&lt;br /&gt;&lt;br /&gt;The business area is defined in Customizing for Sales.&lt;br /&gt;&lt;br /&gt;o Business area. A unit in an enterprise, grouping product and market combinations as homogeneously as possible for the purpose of developing unified business policy.&lt;br /&gt;o Financial Accounting (FI). A business area is an organizational unit within financial accounting which represents a separate area of operations or responsibilities within an organization. Financial accounting transactions can be allocated to a specific business area.&lt;br /&gt;&lt;br /&gt;Briefly explain the relationship between sales organizations and company codes.&lt;br /&gt;&lt;br /&gt;Many to One.&lt;br /&gt;&lt;br /&gt;What is the central organizational element in purchasing?&lt;br /&gt;&lt;br /&gt;Purchasing Organization.&lt;br /&gt;&lt;br /&gt;Explain the relationship between sales organizations and plants.&lt;br /&gt;&lt;br /&gt;Many to Many.&lt;br /&gt;&lt;br /&gt;Explain the relationship between sales organizations, plants and company codes.&lt;br /&gt;&lt;br /&gt;Many to Many to One.&lt;br /&gt;&lt;br /&gt;Can one business area be assigned to several company codes? Which (sub) module of SAP could make business areas obsolete?&lt;br /&gt;&lt;br /&gt;Yes in CO .&lt;br /&gt;&lt;br /&gt;What is a credit control area? What relationship exists between credit control areas and company codes?&lt;br /&gt;&lt;br /&gt;Credit control area. Organizational unit in an organization that specifies and checks credit limits for customers. A credit control area can include one or more company codes. It is not possible to assign a company code to more than one credit control areas.&lt;br /&gt;&lt;br /&gt;Which organizational element is central in shipping? Give a definition of it.&lt;br /&gt;&lt;br /&gt;Shipping Point: Organizational unit at a fixed location that carries out shipping activities. A shipping point could, for example, be a company's mail department or a plant's rail depot. Each delivery is processed by only one shipping point.&lt;br /&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>SAP basis interview questions and answers</title><link>http://justviewssharing.blogspot.com/2012/10/sap-basis-interview-questions-and.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:17:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-8944809291246985826</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
Q. What is the difference between a support package and a kernel replacement?&lt;br /&gt;&lt;br /&gt;A. A support package contains fixes to the ABAP code within a SAP instance. It must be applied using the SPAM transaction in the SAP instance. A kernel replacement is the replacement of the SAP executables on the OS level&lt;br /&gt;&lt;br /&gt;Q. A user rings you up and says they have made a huge error and need the database restored to the previous afternoon. How do you go about the restore?&lt;br /&gt;&lt;br /&gt;A. You do not restore the database. You liaise with the user to correct the error or refer to management to make a decision on the effect on the business.&lt;br /&gt;&lt;br /&gt;Question : When creating a logon group for logon load balancing.&lt;br /&gt;which of the following cannot be specified?&lt;br /&gt;&lt;br /&gt;Maximum Allowable response time.&lt;br /&gt;Max number of users who may be logged on to the instance.&lt;br /&gt;Name of the instance defined for the logon group.&lt;br /&gt;Max number of session per user. ( Correct )&lt;br /&gt;Name of logon group.&lt;br /&gt;&lt;br /&gt;Question : Which of the following is authorized to maintain R/3 user id&lt;br /&gt;Parameters?&lt;br /&gt;&lt;br /&gt;Only R/3 system administrator&lt;br /&gt;All R/3 users having an account in same client.&lt;br /&gt;Only the user himself&lt;br /&gt;only the R/3 system admin and User. (Correct)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q. What would you do with a heavy program which blocks the system resources?&lt;br /&gt;A. Run it in background&lt;br /&gt;&lt;br /&gt;Q. What is a background processing batch scheduler?&lt;br /&gt;A. It is a process which runs as defined by the parameter rdisp/btctime to check the scheduled background jobs and to execute them.&lt;br /&gt;The parameter defines the delay between two runs which means that a job start can delay at the most for that much time.&lt;br /&gt;&lt;br /&gt;Q. What would you do to test the background processing consistencies and options in the server?&lt;br /&gt;A. Run Tcode SM65 - Analysis Tool and select the relevant options.&lt;br /&gt;&lt;br /&gt;Q.What are the two files that are created (at os level)when you create a Request&lt;br /&gt;&lt;br /&gt;Data and cofile&lt;br /&gt;&lt;br /&gt;Q.your network Admin did a mistake a assigned the database instance and&lt;br /&gt;central instance the same IP Address ,so what will happen when you start&lt;br /&gt;SAP instance .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q.what are the two memory areas in Live Cache&lt;br /&gt;&lt;br /&gt;Global (I/O buffer cache)and local memory ( live cache Heap memory)&lt;br /&gt;&lt;br /&gt;Q.how do you restart a live cache server&lt;br /&gt;&lt;br /&gt;LC10&lt;br /&gt;&lt;br /&gt;Q.what happens if you restart a live cache server through a Database manager GUI&lt;br /&gt;&lt;br /&gt;You will get a Dump when you login in to SAP APO live cache (not sure about the answer)&lt;br /&gt;&lt;br /&gt;Q.how to determine the max number of UKT(user kernell threads) in APO&lt;br /&gt;&lt;br /&gt;Number of dialog work process * 2&lt;br /&gt;&lt;br /&gt;Q.how do you automate the STMS&lt;br /&gt;&lt;br /&gt;Schedule the abap program TMS_BCI_START_SERVICE in required interval&lt;br /&gt;&lt;br /&gt;Q. you go to su01 and you do not see create user option what does it mean&lt;br /&gt;&lt;br /&gt;the system you logged on is child system&lt;br /&gt;&lt;br /&gt;Q.All the users in J2EE are locked what will you do&lt;br /&gt;&lt;br /&gt;unlock user sap* through config tool and then login in to visual admin and unlock the users .&lt;br /&gt;&lt;br /&gt;Q.How do you create a reporting Authorization object in BW&lt;br /&gt;&lt;br /&gt;t-code RSSM&lt;br /&gt;&lt;br /&gt;Q.difference between license_Admin and usmm&lt;br /&gt;&lt;br /&gt;usmm has to be done in each and every system in you landscape ,where as license_admin can be done from one central system ,consolidate the users and then send to sap&lt;br /&gt;&lt;br /&gt;Q.how do you open up remote conenctions&lt;br /&gt;&lt;br /&gt;http://service.sap.com&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q.what is a object and class in Live cache?&lt;br /&gt;&lt;br /&gt;the easiet answer to understand is object is a record and class is a table&lt;br /&gt;Not sure if this is the answer recenlty started working on APO&lt;br /&gt;&lt;br /&gt;Q.How do you restart J2EE engine From SAP&lt;br /&gt;&lt;br /&gt;SMICM--&amp;gt;ADMINISTRATION--&amp;gt;j2ee server&lt;br /&gt;&lt;br /&gt;15)A user complains saying that all the BGD work process are hung&lt;br /&gt;&lt;br /&gt;never restart the system , go to sm50 and restart the work process&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q. Why locking used at DB and SAP application server level?&lt;br /&gt;&lt;br /&gt;Q. How do you backout a support package?&lt;br /&gt;&lt;br /&gt;Q. How do you access SAP's quick sizer?&lt;br /&gt;&lt;br /&gt;Q. What's quick sizer used for?&lt;br /&gt;&lt;br /&gt;Q.What kind of sizing execises are possible in SAP?&lt;br /&gt;&lt;br /&gt;Q. What are the steps for kernal upgrade? and name of Kernal file?&lt;br /&gt;&lt;br /&gt;Q. What are phases of ASAP? Methodology&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q. Why locking used at DB and SAP application server level?&lt;br /&gt;&lt;br /&gt;this way, SAP can lock the way it wants without any problems with the differents ways that DB software may react.&lt;br /&gt;&lt;br /&gt;Q. How do you backout a support package?&lt;br /&gt;&lt;br /&gt;Restore from last backup&lt;br /&gt;&lt;br /&gt;Q. How do you access SAP's quick sizer?&lt;br /&gt;&lt;br /&gt;http://service.sap.com/sizing&lt;br /&gt;&lt;br /&gt;Q.What's quick sizer used for?&lt;br /&gt;&lt;br /&gt;to make sure that hardware will be powerful enough to run SAP&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Q.What are the steps for kernal upgrade? and name of Kernal file?&lt;br /&gt;&lt;br /&gt;stop SAP, copy exe/run, extract SAR files, check file permissions, start SAP&lt;br /&gt;disp+work.exe&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>SAP Basic interview questions for freshers</title><link>http://justviewssharing.blogspot.com/2012/10/sap-basic-interview-questions-for.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:14:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-8187445332942055718</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
What is your system landscape?&lt;br /&gt;What are you roles and responsibilities in your company?&lt;br /&gt;What are versions of SAP &amp;amp; R/3, Oracle you are using?&lt;br /&gt;Patch numbers of SAP kernel &amp;amp; Oracle you are using&lt;br /&gt;If a user wants to execute a background job immediately but there is no Background work process available. How u will do?&lt;br /&gt;What is common House keeping background jobs that run in your system?&lt;br /&gt;What are common transport errors u faced while transporting?&lt;br /&gt;How you will do client copy? If SAP * user is not available at all in your system then how u will do client copy?&lt;br /&gt;How u will apply OCS patches?&lt;br /&gt;What is the database backup strategy in your company?&lt;br /&gt;What is upgrade process? And how u will do that?&lt;br /&gt;How u will give new authorizations?&lt;br /&gt;How to adjust user master records? If user master record doesn’t adjust what will you do?&lt;br /&gt;How to check Kernel, tp versions?&lt;br /&gt;Briefly explain a recent problem you faced, which u felt proud by solving that? And ho u solved?&lt;br /&gt;How you will rate your self in SAP, Oracle from a scale 1 – 10?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are your daily activities in your company?&lt;br /&gt;What are you roles and responsibilities in your company?&lt;br /&gt;What are common background jobs that will run in your system?&lt;br /&gt;If a background job runs more than the time it should be completed normally then what actions will u take?&lt;br /&gt;How to schedule background jobs at OS level?&lt;br /&gt;How to add authorizations, how you will maintain profiles?&lt;br /&gt;What are common transport errors and their codes?&lt;br /&gt;Transport request types and its syntax&lt;br /&gt;Where will u find transport error logs?&lt;br /&gt;How to do transport at OS level?&lt;br /&gt;How to transport objects from Production to Development?&lt;br /&gt;How to define instances and operation modes?&lt;br /&gt;What are Homogenous system copy and Heterogeneous system copy and how you will do that?&lt;br /&gt;What is oracle Architecture?&lt;br /&gt;At OS level in which directory oracle alerts are stored?&lt;br /&gt;If a lock entry is holding more than 24 hours then what will you do? If another user wants to share that lock but the user using that lock haven’t released lock he went for holiday what will u do? This user wants lock ASAP then what will u do?&lt;br /&gt;What will you do if u got Update failure?&lt;br /&gt;What will you observe in System log (SM21)?&lt;br /&gt;How to increase tables space, resizing, backups and when will you do?&lt;br /&gt;Various client copy methods and how you will do them?&lt;br /&gt;How you will get help from OSS notes?&lt;br /&gt;What is the need of having Development system?&lt;br /&gt;Difference between Application server and Central Instance?&lt;br /&gt;How you will check whether database is active or not from OS level?&lt;br /&gt;What is Transport domain and Domain controller?&lt;br /&gt;What is Consolidation route and delivery routes?&lt;br /&gt;How to lock a client? How to delete a client?&lt;br /&gt;How to login in to SAP from command level?&lt;br /&gt;How to define Logon groups? And what is Logon load balancing?&lt;br /&gt;How you will rate your self in SAP, Oracle from a scale 1 – 10?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are you roles and responsibilities in your company?&lt;br /&gt;How you will do client copy?&lt;br /&gt;If SAP* is not available then how u will do?&lt;br /&gt;After client copy is table space and database sizes will be increased or not?&lt;br /&gt;How to do client copy fast?&lt;br /&gt;What are various profiles available for client copy?&lt;br /&gt;How to do transport’s between Production and Development?&lt;br /&gt;How to apply OCS Patches?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What are you roles and responsibilities in your company?&lt;br /&gt;How to do client copy?&lt;br /&gt;How to do transports from OS level?&lt;br /&gt;Where the transport data files will be placed?&lt;br /&gt;How to make security authorization reports?&lt;br /&gt;In which table failed user login attempts will be there?&lt;br /&gt;How to see the t able entry values?&lt;br /&gt;How you will give new authorizations?&lt;br /&gt;Have you participated in Kernel upgrading and OCS Patches?&lt;br /&gt;Have you done any up gradations?&lt;br /&gt;How to configure TMS?&lt;br /&gt;What is transport domain?&lt;br /&gt;What is Consolidation route and delivery routes? How you will identify them?&lt;br /&gt;Transport error codes and their description?&lt;br /&gt;The transaction should not be displayed in User Easy access menu but he must execute that transaction how to do that?&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>SQL Basics for interviews </title><link>http://justviewssharing.blogspot.com/2012/10/sql-basics-for-interviews.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 3 Oct 2012 00:04:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-2658092516528106074</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
What is SQL?&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL stands for Structured Query Language&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL lets you access and manipulate databases&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL is an ANSI (American National Standards Institute) standard&lt;br /&gt;What Can SQL do?&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can execute queries against a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can retrieve data from a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can insert records in a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can update records in a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can delete records from a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can create new databases&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can create new tables in a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can create stored procedures in a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can create views in a database&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL can set permissions on tables, procedures, and views&lt;br /&gt;________________________________________&lt;br /&gt;SQL is a Standard - BUT....&lt;br /&gt;Although SQL is an ANSI (American National Standards Institute) standard, there are many different versions of the SQL language.&lt;br /&gt;However, to be compliant with the ANSI standard, they all support at least the major commands (such as SELECT, UPDATE, DELETE, INSERT, WHERE) in a similar manner.&lt;br /&gt;Note: Most of the SQL database programs also have their own proprietary extensions in addition to the SQL standard!&lt;br /&gt;________________________________________&lt;br /&gt;Using SQL in Your Web Site&lt;br /&gt;To build a web site that shows some data from a database, you will need the following:&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; An RDBMS database program (i.e. MS Access, SQL Server, MySQL)&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; A server-side scripting language, like PHP or ASP&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; HTML / CSS&lt;br /&gt;________________________________________&lt;br /&gt;RDBMS&lt;br /&gt;RDBMS stands for Relational Database Management System.&lt;br /&gt;RDBMS is the basis for SQL, and for all modern database systems like MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access.&lt;br /&gt;The data in RDBMS is stored in database objects called tables.&lt;br /&gt;A table is a collections of related data entries and it consists of columns and rows.&lt;br /&gt;Database Tables&lt;br /&gt;A database most often contains one or more tables. Each table is identified by a name (e.g. "Customers" or "Orders"). Tables contain records (rows) with data.&lt;br /&gt;Below is an example of a table called "Persons":&lt;br /&gt;P_Id&amp;nbsp;&amp;nbsp;&amp;nbsp; LastName&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstName&amp;nbsp;&amp;nbsp;&amp;nbsp; Address&amp;nbsp;&amp;nbsp;&amp;nbsp; City&lt;br /&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp; Hansen&amp;nbsp;&amp;nbsp;&amp;nbsp; Ola&amp;nbsp;&amp;nbsp;&amp;nbsp; Timoteivn 10&amp;nbsp;&amp;nbsp;&amp;nbsp; Sandnes&lt;br /&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp; Svendson&amp;nbsp;&amp;nbsp;&amp;nbsp; Tove&amp;nbsp;&amp;nbsp;&amp;nbsp; Borgvn 23&amp;nbsp;&amp;nbsp;&amp;nbsp; Sandnes&lt;br /&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp; Pettersen&amp;nbsp;&amp;nbsp;&amp;nbsp; Kari&amp;nbsp;&amp;nbsp;&amp;nbsp; Storgt 20&amp;nbsp;&amp;nbsp;&amp;nbsp; Stavanger&lt;br /&gt;The table above contains three records (one for each person) and five columns (P_Id, LastName, FirstName, Address, and City).&lt;br /&gt;________________________________________&lt;br /&gt;SQL Statements&lt;br /&gt;Most of the actions you need to perform on a database are done with SQL statements.&lt;br /&gt;The following SQL statement will select all the records in the "Persons" table:&lt;br /&gt;SELECT * FROM Persons&lt;br /&gt;In this tutorial we will teach you all about the different SQL statements.&lt;br /&gt;________________________________________&lt;br /&gt;Keep in Mind That...&lt;br /&gt;•&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL is not case sensitive&lt;br /&gt;________________________________________&lt;br /&gt;Semicolon after SQL Statements?&lt;br /&gt;Some database systems require a semicolon at the end of each SQL statement.&lt;br /&gt;Semicolon is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server.&lt;br /&gt;We are using MS Access and SQL Server 2000 and we do not have to put a semicolon after each SQL statement, but some database programs force you to use it.&lt;br /&gt;&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Sony launches  Xperia tipo dual with Android 4.0</title><link>http://justviewssharing.blogspot.com/2012/10/sony-launches-xperia-tipo-dual-with.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 19:38:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-7933593126134323369</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
Sony launches Xperia tipo smartphone @ Rs 9,999&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgE5tezLFy4xIf39tN5CX1iQT0qrtL7R1NMfUtiGvWOrt73rMS0ebPViZ5_T0VQGyhBjRc9UWPAWeScU52r5KphltDCjLPRD-4gThls1PKFSOUNr7-3bAFPbOkaMjaLnL8AYOnDrCGcsL7M/s1600/Xperia_tipo_dual_Black_Front.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="214" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgE5tezLFy4xIf39tN5CX1iQT0qrtL7R1NMfUtiGvWOrt73rMS0ebPViZ5_T0VQGyhBjRc9UWPAWeScU52r5KphltDCjLPRD-4gThls1PKFSOUNr7-3bAFPbOkaMjaLnL8AYOnDrCGcsL7M/s320/Xperia_tipo_dual_Black_Front.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
Sony Mobile India today officially launched its first sub-Rs 10,000 smartphone, Xperia tipo. The company also unveiled the dual-SIM version of Xperia tipo, Xperia tipo dual, at the event.&lt;br /&gt;&lt;br /&gt;Xperia tipo is powered by Android 4.0 (Ice Cream Sandwich) and will contend against the likes of Samsung Galaxy Ace and HTC Desire C.&lt;br /&gt;&lt;br /&gt;Sony Xperia tipo features a 3.2-inch touchscreen and is powered by an 800MHz Qualcomm Snapdragon processor with 512MB RAM. The internal storage of the device is 2.5GB, though the memory can be increased up to 32GB via microSD. The Japanese manufacturer is offering 50GB of cloud storage via Box with the Xperia tipo.&lt;br /&gt;&lt;br /&gt;The phone maker is eyeing the youth segment with Xperia tipo and is banking upon the music capabilities of the device to lure buyers. Sony has also tied up with Vodafone to offer 500MB of data free for three months for Xperia tipo buyers.&lt;br /&gt;&lt;br /&gt;The Sony Xperia tipo is priced at Rs 9,999, while its dual-SIM (GSM+GSM) version Xperia tipo dual is priced at Rs 10,449.&lt;br /&gt;&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgE5tezLFy4xIf39tN5CX1iQT0qrtL7R1NMfUtiGvWOrt73rMS0ebPViZ5_T0VQGyhBjRc9UWPAWeScU52r5KphltDCjLPRD-4gThls1PKFSOUNr7-3bAFPbOkaMjaLnL8AYOnDrCGcsL7M/s72-c/Xperia_tipo_dual_Black_Front.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Celkon to launch Android 4.0-based tablet Celtab</title><link>http://justviewssharing.blogspot.com/2012/10/celkon-to-launch-android-40-based.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 19:34:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-7552048877716093004</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Celkon Mobiles is all set to launch the 7-inch SIM-based tablet Celtab (CT2), priced at Rs. 7499, based on Android Ice Cream Sandwich Operating System, a month after it forayed into the segment with e-tab CT1.&lt;br /&gt;"Celkon got huge appreciation for CT1 and currently have orders for 50,000 units from market for CT1 and CT2. The product will be available in two days," Celkon Mobiles Managing Director Y Guru told reporters.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgASdHIwc8l_a7Xr70_ThDAcFsD8T19bfH97FulzUuVJzuyxkoLqthsd79KhTn6u3p0buOk4ckqZeX49xktqGN68UYPLS1O2CTqWRCxf3KxuF2H5KdrOXY3uo7fL7d2gp15i9w8NHGEoZug/s1600/celkon_635.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="205" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgASdHIwc8l_a7Xr70_ThDAcFsD8T19bfH97FulzUuVJzuyxkoLqthsd79KhTn6u3p0buOk4ckqZeX49xktqGN68UYPLS1O2CTqWRCxf3KxuF2H5KdrOXY3uo7fL7d2gp15i9w8NHGEoZug/s320/celkon_635.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;Celtab comes with 1 GHz processor, 512 RAM and a provision for 3G dongle to access the Internet, he said.&lt;br /&gt;&lt;br /&gt;Celkon Executive Director R Murali said the company plans to expand the business abroad and aiming to reach the Rs. 1000-crore mark turnover in FY13.&lt;br /&gt;&lt;br /&gt;"The company's revenue was at Rs. 326 crore last year and as the market has been expanded to some states in north India this year sales are expected to jump threefold. As on date we have 11 active states in the country selling half a million mobile phones a year. We aim to sell one million sets next year," says Murali.&lt;br /&gt;&lt;br /&gt;He said the city-based company will launch aggressive marketing campaign with film actress Tamanna Bhatia and cricketer Virat Kohli next month to cash in on the festival season.&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgASdHIwc8l_a7Xr70_ThDAcFsD8T19bfH97FulzUuVJzuyxkoLqthsd79KhTn6u3p0buOk4ckqZeX49xktqGN68UYPLS1O2CTqWRCxf3KxuF2H5KdrOXY3uo7fL7d2gp15i9w8NHGEoZug/s72-c/celkon_635.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title> SONY VAIO DUO 11 HYBRID ULTRA BOOK WITH WINDOWS 8</title><link>http://justviewssharing.blogspot.com/2012/10/sony-vaio-duo-11-hybrid-ultra-book-with.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 19:06:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-449138125597214818</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
Sony at the pre -IFA today is rocking the stage previously it came out with the Xperia S tab and few Android smarties, now Sony unveils its new ultrabook The Sony VAIO Duo 11 Hybrid Ultra Book.&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggzTYQ6XM0-uLOz2xWtu3goIi7X_4rDRDtp3l9ebeU5-Oc2T08YIQrNmpk0l9XEFxO65hKR60rVpq5QILugUYB1rIxJ4cgQn6X7-HlinBW7KfQ-_pJaMEfyAj_08zTU8jD2l_U4drC5TAd/s1600/300003.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="213" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggzTYQ6XM0-uLOz2xWtu3goIi7X_4rDRDtp3l9ebeU5-Oc2T08YIQrNmpk0l9XEFxO65hKR60rVpq5QILugUYB1rIxJ4cgQn6X7-HlinBW7KfQ-_pJaMEfyAj_08zTU8jD2l_U4drC5TAd/s320/300003.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
The VAIO Duo 11 it runs on Windows 8 pro and has a good looking has a slide up backlit QWERTY keyboard.This keyboard slides up at 35 degrees angle.Also equipped with 11.6″ OptiContrast FullHD 1920 x 1080 capacitive touchscreen and is powered by the Intel Ivy Bridge i3,i5,i7 processors and has Intel Hd graphics 4000.The Sony VAIO Duo 11 has a RAM capacity of either 4 GB or 8 GB DDR3, Wi-Fi a/b/g/n, Bluetooth 4, USB 3.0, a SD card slot, two FullHD 2 MP cameras at the front and back, NFC and also has a digitalised stlus same as the samsung S-pen technology.This Ultra Book is stunnigly 18mm thick and weighs 1.3Kgs and will be available from october in selected countries.&lt;br /&gt;&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggzTYQ6XM0-uLOz2xWtu3goIi7X_4rDRDtp3l9ebeU5-Oc2T08YIQrNmpk0l9XEFxO65hKR60rVpq5QILugUYB1rIxJ4cgQn6X7-HlinBW7KfQ-_pJaMEfyAj_08zTU8jD2l_U4drC5TAd/s72-c/300003.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title> APPLE IPOD TOUCH : FIFTH GENERATION</title><link>http://justviewssharing.blogspot.com/2012/10/this-latest-ipod-touch-boasts-screen-of.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 19:02:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-3579753617320133440</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAr2rENv7ReKiWQpbX_fMh_JBdJOw5gGYNxKTYVpejrVPB3xKO000wZljUa7pk5ICaGCO0BENa-kBnoHlAGgSRR0iMEkCt9jOLX9lDUEStvwGFJMaNX6_aVSF75KSUE9q8wRnE7rUln8sy/s1600/overview_hero.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="187" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAr2rENv7ReKiWQpbX_fMh_JBdJOw5gGYNxKTYVpejrVPB3xKO000wZljUa7pk5ICaGCO0BENa-kBnoHlAGgSRR0iMEkCt9jOLX9lDUEStvwGFJMaNX6_aVSF75KSUE9q8wRnE7rUln8sy/s320/overview_hero.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
This latest iPod touch boasts a screen of 4" and strikingly slim at 6.1 mm . This fifth generation buddy has Siri included in it the same 326 ppi panel used on the new iPhone 5.Devastatingly slimmer than its previous model iPod touch looks really sharp at edges.&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6TFlKNwHTdi6JTszNlehYhLklB7eFElCAjgTUhavFU7P0ymrvluEJDM9LKo_aXbnhWpcAfU2mAQCfWf4V1_HH-abZDzV6DGFKwYzF0egcEetFT_lPZK-17EDhS9sHpQ2lMpF2RUgDzv5I/s1600/iPhone5-2969.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="212" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6TFlKNwHTdi6JTszNlehYhLklB7eFElCAjgTUhavFU7P0ymrvluEJDM9LKo_aXbnhWpcAfU2mAQCfWf4V1_HH-abZDzV6DGFKwYzF0egcEetFT_lPZK-17EDhS9sHpQ2lMpF2RUgDzv5I/s320/iPhone5-2969.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBuUNtGkV3dlaWaNpRpedKo0tidas_99SjMY_5REmP_bHxRAnvh6PNyF1rX-GKv84T3UHEjUQdSz4sqj8nlVIgQDC6s8QOO88EShidi0ODjTR5naDEiTNHr0XR5Wr1z-RR_IRlUmi1Kqlj/s1600/images.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBuUNtGkV3dlaWaNpRpedKo0tidas_99SjMY_5REmP_bHxRAnvh6PNyF1rX-GKv84T3UHEjUQdSz4sqj8nlVIgQDC6s8QOO88EShidi0ODjTR5naDEiTNHr0XR5Wr1z-RR_IRlUmi1Kqlj/s1600/images.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&amp;nbsp;packs in a A5 chip and also Apple promises seven times of performance to that of the previous model. The battery is rated for 40 hours of music playback, or eight hours of video.The primary camera&amp;nbsp; 5-megapixel shooter with a backside-illuminated f/2.4 lens. The primary camera shoots videos upto 1080 p. And yes, it supports the same panorama shooting feature as the iPhone 5. The secondary camera,is 720p and supports FaceTime.&lt;/div&gt;
&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAr2rENv7ReKiWQpbX_fMh_JBdJOw5gGYNxKTYVpejrVPB3xKO000wZljUa7pk5ICaGCO0BENa-kBnoHlAGgSRR0iMEkCt9jOLX9lDUEStvwGFJMaNX6_aVSF75KSUE9q8wRnE7rUln8sy/s72-c/overview_hero.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>SAMSUNG ANNOUNCES GALAXY CAMERA WITH 4G WIRELESS CAPABILITIES</title><link>http://justviewssharing.blogspot.com/2012/10/samsung-announces-galaxy-camera-with-4g.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 18:56:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-9115834105412713741</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&amp;nbsp;The first ever camera with 4G or 3G capabilities. It is announced officially in IFA with some extraordinary and amazing features. This is just awesome&amp;nbsp; then the recently launched Nikon's android camera...&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0iNonOJeALTdLPx_-rR1hJoAuCod0w8XJTh88AEgVdj4Rh0aK95NRBSkpFcSHKdlVw0pDTtj-C4q3H8e8z1k3U3wlaDLgt-V0Tje_s6Q_fmA4N5b1bmc3N6YommOds9nAu_CcrhHri7u/s1600/galcam.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="225" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0iNonOJeALTdLPx_-rR1hJoAuCod0w8XJTh88AEgVdj4Rh0aK95NRBSkpFcSHKdlVw0pDTtj-C4q3H8e8z1k3U3wlaDLgt-V0Tje_s6Q_fmA4N5b1bmc3N6YommOds9nAu_CcrhHri7u/s320/galcam.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The main features you should know about Samsung Galaxy Camera is its 16 mega pixel BSI CMOS 1/2.3" sensor, 23mm aperture lens, optical image stabilization and optics that allow you to make 21x super long zoom to capture the action as if they are close to you. You need not be a photographer when you are using Galaxy camera because the the "Smart Pro" technology will help you to take superb shots with its various shooting modes. Samsung is also providing you an photo editing tool. The video can be recorded with 1080p at 30 frames per second or in slow motion it records with 720p at 120 frames per second.&lt;br /&gt;&lt;br /&gt;The screen of the Samsung Galaxy Camera is very impressive with its 4.8-inch HD Super Clear LCD panel and also has pixel density of 308ppi. The processor used for this camera is 1.4GHz and it runs with the operating system of Android jelly bean. Wifi is available and in case if you are out then 4G and 3G support is available.. It weights around 305 grams with 19.1 mm thinkness. &lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Specifications :&lt;br /&gt;&lt;br /&gt;&amp;nbsp;Sensor&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 16 Mega Pixel Sensor with Wide angle 23mm Lens &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( 21x Optical Zoom with pop up Xenon Flash )&lt;br /&gt;&amp;nbsp;Resolution&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 1280×720&lt;br /&gt;&amp;nbsp;Display&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 4.8 inch S-LCD display &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (16M capacitive LCD touch screen )&lt;br /&gt;&amp;nbsp;Processor&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 1.4GHz quad-core Exynos processor&lt;br /&gt;&amp;nbsp;Os&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : Android 4.1 jelly bean&lt;br /&gt;&amp;nbsp;Internal Memory&amp;nbsp; : 8GB storage, 1GB RAM&lt;br /&gt;&amp;nbsp;External memory&amp;nbsp; : micro sd slot expandable upto 32GB&lt;br /&gt;&amp;nbsp;Dimensions&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp; 128.7 x 70.8 x 19.1 mm &lt;br /&gt;&amp;nbsp;Weight&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 305g&lt;br /&gt;&amp;nbsp;battery&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : 1650 mAh ( upto 7 hours of backup )&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So this the best camera with some interesting and exiting features we need to wait to know its pricing and availability in the market&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy0iNonOJeALTdLPx_-rR1hJoAuCod0w8XJTh88AEgVdj4Rh0aK95NRBSkpFcSHKdlVw0pDTtj-C4q3H8e8z1k3U3wlaDLgt-V0Tje_s6Q_fmA4N5b1bmc3N6YommOds9nAu_CcrhHri7u/s72-c/galcam.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>LIST OF MOBILE PHONES WITH BUILT-IN PROJECTOR </title><link>http://justviewssharing.blogspot.com/2012/10/list-of-mobile-phones-with-built-in.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 08:48:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-7597952181369320138</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;br /&gt;
LIST OF MOBILE PHONES WITH BUILT-IN PROJECTOR AVAILABLE IN INDIA&lt;br /&gt;
&lt;br /&gt;
&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #111111; display: inline !important; float: none; font-family: Verdana, sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;We are quite not sure if one can say phones are for basic texting and calling anymore. At least not in this era of smartphones when mobile OS war is on and raging. Gone are the days when phone were used for voice calls alone. With advancements in technology we are now dealing phones capable of HD video recording, high-speed data transfer, Video calls, GPS navigation etc. Technology is advancing and it rocks. With recent Mozilla labs future concept phone video footage we very well know things are on right track and future is promising. You won’t have to wait long as we can already see movement here in India. Local market players are counting on and introducing mobile phones with added technology feature like pico-projector.&lt;/span&gt;&lt;br /&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyEX1mIVmtY3Sy_iePnKFGZmdIjk_bcBRAsBlqnbNINIdN8Juo25LvEfoCZlbZeXcpE3Pqpw4fQBqaPPQBPi79j3KlfYb9-AG8086zNOJhvee69TfUz48luLck5OoQmUsbj8_FOOKMyArc/s1600/Mobile-phone-projector.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="179" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyEX1mIVmtY3Sy_iePnKFGZmdIjk_bcBRAsBlqnbNINIdN8Juo25LvEfoCZlbZeXcpE3Pqpw4fQBqaPPQBPi79j3KlfYb9-AG8086zNOJhvee69TfUz48luLck5OoQmUsbj8_FOOKMyArc/s320/Mobile-phone-projector.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;1. Intex V Show&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;Intex V Show, Java based smartphone from Intex Technologies sports a pico projector capable of projecting photos and videos up to 61 inches. With a 10 lumens QWVGA resolution Intex V show can continuously beam multimedia to a big screen or even wall up to 12 feet. You don’t have to worry about the backup as it can continuously play videos for 3 hours which is cool considering the fact that almost all movies will be under 3 hours. Other features include a 3.2 inches dust resistant touch screen display, Dual-SIM (GSM+GSM), FM Radio, GPRS, Dual Camera, 64 MB internal memory, dual card memory slot of 8 GB expandable memory etc.&lt;br /&gt;Price- Rs.16,000 INR approx&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;2. Techberry ST 200&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;The Techberry ST 200 a Java based phone from Techberry mobiles includes a small projector on board that can project high-resolution photos and videos to any surface. The battery life is pretty descent which can hold long for both continuous video projection and push mail. Also includes features like analog TV, recordable FM radio, Dual SIM, Dual Camera, Video conferencing etc. Supports all major audio and video codec’s like MP3, MP4, 3 GP etc. The Techberry ST 200 also supports connectivity options like Bluetooth 2.0V A2DP, GPRS, WAP, MMS, and Wi-Fi.&lt;br /&gt;Price- Rs. 12,000 INR approx&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;3. VOX Q8&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;VOX Q8 is a java based dual SIM projector phone available in India. The VOX Q8 phone includes an embedded pico projector chip on board that can project mobile multimedia content including video and TV to a big screen. With a 850 mAh battery you can expect a better battery life even with continuous video projection. Also features a 2.2 Touch Screen with Camera and Video Recording. On the connectivity side it supports GPRS, WAP, Bluetooth. VOX Q8 sports a Built in TV that can receive TV signals directly.&lt;br /&gt;Price- Rs. 13,000 INR approx&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;4.Samsung Galaxy Beam's&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfMdBwmw-93mvw21vW-ErAEFzVGA2gnQPbLdvaUMV11uvUcvu7qR6OG89VynNdRDJT8tpBAo_UHCmgur3dJQKRAkUMwxpDiOpBHDBvE33Idv3ockeDqCzyNrsUwxvlJ-SWm_Ic6jYjSgUQ/s1600/galaxybeam-260212.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="213" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfMdBwmw-93mvw21vW-ErAEFzVGA2gnQPbLdvaUMV11uvUcvu7qR6OG89VynNdRDJT8tpBAo_UHCmgur3dJQKRAkUMwxpDiOpBHDBvE33Idv3ockeDqCzyNrsUwxvlJ-SWm_Ic6jYjSgUQ/s320/galaxybeam-260212.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="background-color: white; color: #111111; display: inline ! important; float: none; font-family: Verdana,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 100; letter-spacing: normal; line-height: 22px; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Just a day before the MWC 2012 officially kicks off in Barcelona, Samsung doffed the silk off its new projector smartphone - the Galaxy Beam - which is an Android 2.3 smartphone with a built-in projector.&lt;br /&gt;The Samsung Galaxy Beam's 15 lumens projector allows users to display and sharemultimedia content anywhere on a large luminous projector screen - walls, ceilings or improvised flat surfaces.&lt;br /&gt;Powered by a 1GHz dual-core processor, the phone has a 4.0-inch (480x800) TFT display. The phone has a 5 megapixel autofocus rear camera with flash and a 1.3 megapixel front-facing camera.The phone has an internal memory of 8GB, which is expandable up to 32GB using a microSD card. The Samsung Galaxy Beam is to touted to have 6GB of RAM.&lt;br /&gt;Measuring 12.5mm thin, the phone has a 2000mAh battery.&lt;br /&gt;This is not the first projector smartphone from Samsung. A similar product, which was also called the Beam.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyEX1mIVmtY3Sy_iePnKFGZmdIjk_bcBRAsBlqnbNINIdN8Juo25LvEfoCZlbZeXcpE3Pqpw4fQBqaPPQBPi79j3KlfYb9-AG8086zNOJhvee69TfUz48luLck5OoQmUsbj8_FOOKMyArc/s72-c/Mobile-phone-projector.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>TOP 5 BEST ANTIVIRUS - REVIEW</title><link>http://justviewssharing.blogspot.com/2012/10/top-5-best-antivirus-review.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Mon, 1 Oct 2012 08:36:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-784839906570831716</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;b style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-size: medium;"&gt;Bit defender Antivirus Plus 2013&lt;/span&gt;&lt;/b&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;No One would ever even ask you whats the best anti virus, because Bit defender has its mark. Its been ruling the Anti Virus industry since millinea Bit&amp;nbsp; defender offers solid rock security, simple usability, effective resource usage and an effective price. Bit defender Antivirus Plus is the best antivirus software . It is a top antivirus software solution with best protection and performance whether you’re an advanced user looking to control the whole process manually or an average user who simply wants a set-and-forget solution. This antivirus software provides protection at the peak.&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;RECOMMENDED SYSTEM REQUIREMENTS&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Operating System: Microsoft Windows XP SP3 (32-bit), Vista (SP2),&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Windows 7 (SP1), Windows 8&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;CPU: Intel CORE Duo (1.66 GHz) or equivalent processor&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Memory (RAM):&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;1 GB (Microsoft Windows XP)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;1.5 GB ( Windows 7)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Available free hard disk space: 2.8 GB free space (at least 800 MB on system drive)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;Kaspersky Anti-Virus 2012&lt;/b&gt;&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Kaspersky gives solid rock performance without giving up the system performance defining it as one of the best Anti Virus.&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;As we know Kaspersky being easy to use, it is also customizable. Users can adjust to control just about every component of the software to schedule scans, adjust security levels, toggle specific features and change the appearance of the software and also many more. The Kaspersky URL Advisor protects your system while you're online from phishing and hackers. The browser plug-in is available for IE and Firefox, and it stops you from navigating to infected websites. You’ll also be protected from phishing scams.Kaspersky offers great support. Technical support comes in the form of a searchable online knowledge base, FAQs, product manuals and an active form. You can easily access these resources online or from the software itself. The software includes context-sensitive helps that open to comprehensive information that corresponds to where you are in the software. You can also connect with a support team member over the phone or via online live chat.&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Operating System:&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows XP Home Edition&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;(Service Pack 2 or higher)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows XP Professional&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;(Service Pack 2 or higher)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows XP Professional x64 Edition&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;(Service Pack 2 or higher)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows Vista Home Basic (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows Vista Home Premium (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows Vista Business (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows Vista Ultimate (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Windows 7 Starter (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows 7 Home Basic (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows 7 Home Premium (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft Windows 7 Ultimate (32/64 Bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Hardware:&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Processor 800 MHz or higher&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;512 MB available RAM&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Processor 1 GHz 32-bit /64-bit or higher&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;1 GB RAM (32-bit) or 2 GB RAM (64-bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;Panda Antivirus Pro 2012&lt;/b&gt;&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;People who cannot afford Kaspersky or Bit defender can certainly choose Panda Antivirus Pro 2012 though it is not easy to use or ready to use its is also one of the best Anti Virus to date.It gives superior performance without lagging the performance of the CPU.When it comes to protection, repair and usability, Panda Antivirus Pro gives us some of the best results in the antivirus software market, according to AV-Test.&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;System Requirements:&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Windows XP or later&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;512MB RAM&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;275MB free hard disk space&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Internet Explorer 6.0 or later,Mozilla fire fox0 or later, or Google Chrome&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;b style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-size: medium;"&gt;F-Secure Anti-Virus 2012&lt;/span&gt;&lt;/b&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;F-Secure Anti-Virus is among the best antivirus programs. It is designed, fast and effective. With advanced protection technology and additional in built and integrated security features, F-Secure protects well against malwares viruses, spyware, worms and Trojans. F-Secure can also locate and eliminate rootkits. This antivirus software also protects against viruses spread through emails, cookies or malware that attempts to infiltrate the PC registry.&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Supported Platforms&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Windows 7 (all editions)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Windows Vista (64-bit, 32-bit)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Windows XP Home, Windows XP Pro, Windows XP Media Center&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Microsoft® Windows® 7* or Windows Vista*&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Processor: Capable of running Windows 7 or Windows Vista&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Memory requirements: 512 MB (1 GB recommended)&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Disk Space: Maximum 600 MB during installation&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Browser: Minimum Internet Explorer 6.0&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;CD-ROM &amp;amp; High speed internet connection&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;* The system must fulfill Windows 7 / Windows Vista minimum requirements as specified by Microsoft&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;AVG Anti-Virus 2012&lt;/b&gt;&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;We all would know AVG but we have give it the least possible priority because of its unstable behavior , though its named as the best in eradicating malware programs its yet unstable and causes little lag on cpu.Hence economically its the best option .&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;System Requirements&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Minimum System Requirements&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Processor: Intel Pentium 1.5GHz or faster&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Memory: 512 MB of RAM&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Hard disk free space (for installation): 750 MB&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Recommended System Requirements&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Processor: Intel Pentium 1.8 GHz or faster&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Memory: 512 MB RAM&lt;/span&gt;&lt;br style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;" /&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: white; color: #222222; display: inline !important; float: none; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Hard disk free space (for installation): 1200 MB.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Nokia Lumia 900 review</title><link>http://justviewssharing.blogspot.com/2012/09/nokia-lumia-900-review.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Sat, 29 Sep 2012 17:35:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-1490309851592744751</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgA0AeUeVo7LGquyQBe9IhtoZ5Y71x95OzshzQMZGcbXC3kh-ScaEMPJcdpLdm9uSBonrGqF8p1CTpQxKYGZ-kzePdqmXXPgmfiBIuahQuIQydHuGMx-3XYdXSi-t14BCGDosDokWhW_Rt8/s1600/391653_493234134028860_1965585217_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgA0AeUeVo7LGquyQBe9IhtoZ5Y71x95OzshzQMZGcbXC3kh-ScaEMPJcdpLdm9uSBonrGqF8p1CTpQxKYGZ-kzePdqmXXPgmfiBIuahQuIQydHuGMx-3XYdXSi-t14BCGDosDokWhW_Rt8/s320/391653_493234134028860_1965585217_n.jpg" width="228" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Big is beautiful in phones right now, and with all the apps, games and media we use our handsets for, there’s little wonder that smartphones are growing in size and power. The Nokia Lumia 900 (£445 inc. VAT) is one such device, and at 4.3 inches, it’s the biggest in Nokia’s line up of Windows Phones.&lt;br /&gt;&lt;br /&gt;The screen is a vibrant AMOLED panel, which gives a huge boost in colour, contrast and visuals over a standard LCD display. It’s up there with the best screens around, especially when coupled with the gorgeous Windows Phone interface.&lt;br /&gt;&lt;br /&gt;Windows Phone is maturing into a fantastic operating system, and the Lumia 900 makes it easy to use. The app selection is miles behind iOS and Android, but with Windows 8 on the horizon, we’d bet on this improving drastically. You’ll find all the usual suspects present, such as National Rail, Met Office, but noticeable absentees are BBC iPlayer and 4OD, and there are only a fraction of the free games available on other platforms.&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnYermllpP_rb_SN7aBKCjgFD1SxoJFP2g0iEVOcsPWG6vcDHgCLuHk5KXF4ARXas7fO2EGlMYs6Swq9EdqADo_vMYyB7uc3RNGOMLkuJNK_sc0BdM_Sxs1tZFch5AP3c_pICg9Pm8g6nc/s1600/375950_493234287362178_1379492455_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnYermllpP_rb_SN7aBKCjgFD1SxoJFP2g0iEVOcsPWG6vcDHgCLuHk5KXF4ARXas7fO2EGlMYs6Swq9EdqADo_vMYyB7uc3RNGOMLkuJNK_sc0BdM_Sxs1tZFch5AP3c_pICg9Pm8g6nc/s320/375950_493234287362178_1379492455_n.jpg" width="228" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Inside the Nokia Lumia 900 is a Qualcomm Snapdragon single core 
processor. It more than keeps up with the Lumia’s needs, and we found 
the whole system to be slick and fast. The only performance issue was 
using Internet Explorer. Web pages rendered sluggishly, and this was 
echoed by a poor Sunspider score. This browser-based test scores the 
speed in which the page is loaded, and is a good test of your browser’s 
capabilities.&lt;br /&gt;
&lt;br /&gt;
Taking photos was a breeze with the dedicated button on the top, and the
 response time of the 8MP snapper was excellent. Photos were sharp and 
crisp but we did find that lighting was processed poorly. There’s no 
doubt that media lovers are the target of the Nokia Lumia 900 laser 
sights, and with such a vibrant screen our video tests produced 
excellent results The fantastic contrast meant colours looked stunning, 
with blacks pleasingly dark, without annoying pixelation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd23vzBPNNqvDWpV2cwqbRhWZJno5cpUvRXWvYbCzoG3DF8z68DfqdlQii34-YCxZ8AzIPLBjmsVEBvRkb22Q-EPKsy2GawA6UFUfoVLNuyShIXoK0GDvBARTlCb3Ms2rX4s6x-D0FWgqx/s1600/408971_493234240695516_1992471445_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjd23vzBPNNqvDWpV2cwqbRhWZJno5cpUvRXWvYbCzoG3DF8z68DfqdlQii34-YCxZ8AzIPLBjmsVEBvRkb22Q-EPKsy2GawA6UFUfoVLNuyShIXoK0GDvBARTlCb3Ms2rX4s6x-D0FWgqx/s320/408971_493234240695516_1992471445_n.jpg" width="228" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Space saving?&lt;br /&gt;&lt;br /&gt;While Nokia has given the gift of AMOLED, it has taken the prize of plentiful storage space. There’s only 16GB available, and no room for expansion. Fortunately, the lack of apps means you will save valuable space for music and movie.&lt;br /&gt;&lt;br /&gt;While big is beautiful, it’s also heavy, and the Lumia 900 weighs a whopping 160g. It’s also extremely thick, putting strain on the pockets. The Lumia 800, its little brother, is a much more manageable size and retains many of the benefits.&lt;br /&gt;&lt;br /&gt;Battery life was a mixed bag, with an impressive score in looping HD video, but we often experienced a quick drain throughout the day, and it would be touch and go if you could make it home after a long day&lt;br /&gt;with any juice left.&lt;br /&gt;&lt;br /&gt;The Nokia Lumia 900 is a great handset, with a lovely screen that’s ideal for watching movies and media. It’s big, there’s no doubt about that, but the benefits outweigh the negatives in our opinion. Windows Phone itself is getting better but the barren app store needs to be tackled.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Tags : Nokia Lumia 900 Full Review,Nokia Lumia&amp;nbsp; 900 Mobiles,Nokia Lumia 900 Price,Nokia Lumia 900&lt;/div&gt;
&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgA0AeUeVo7LGquyQBe9IhtoZ5Y71x95OzshzQMZGcbXC3kh-ScaEMPJcdpLdm9uSBonrGqF8p1CTpQxKYGZ-kzePdqmXXPgmfiBIuahQuIQydHuGMx-3XYdXSi-t14BCGDosDokWhW_Rt8/s72-c/391653_493234134028860_1965585217_n.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>iPhone 5 review </title><link>http://justviewssharing.blogspot.com/2012/09/iphone-5-review.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Sat, 29 Sep 2012 17:21:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-2840562847675073159</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
PURE-VIEW OF iPhone 5&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The excitement of the rumour mill, the titillation of every leaked photo led to higher than ever levels of expectation over the iPhone 5 features, and while the announcement was greeted with some derision at the lack of perceived headline improvements, the record sales tell an entirely different story.&lt;br /&gt;Given the underwhelming changes to the iPhone 4S, the iPhone 5 launch really needs to re-energise customers to prove Apple can repeat the game-changing trick it managed with the iPhone 4.&lt;br /&gt;The iPhone 5 price is predictably high, so consumers will need to bear that in mind too when looking for their next smartphone.&lt;br /&gt;So is the Apple iPhone 5 the greatest smartphone ever, one that finally see Apple ascend to the top spot in our 20 best mobile phones chart? Or is it a case of too little, too late?&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Design&lt;br /&gt;&lt;br /&gt;We'll begin in the traditional manner: how the thing actually feels in the hand. With the iPhone 5 there will be many types of prospective buyer: the upgrader from the 4 (or more-money-than-sense iPhone 4S upgraders), those tired of their Android handset and those taking their first steps in the smartphone market and want to get one of them iThingies their friend/child has.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhaYz2H6f5oEeH5aRPJmYUNZkKgtzcOtAzAHJH-LSQL6UqaezFLJj4UIYncth0yvqnjgem53JBlDngEU0-bXvsZjas77yfvhm8BJMkXCOaMpG75IsAjNGXoybG2yKsogCQaaKNQE9lM94gH/s1600/iPhone_5_review_02-580-100.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="179" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhaYz2H6f5oEeH5aRPJmYUNZkKgtzcOtAzAHJH-LSQL6UqaezFLJj4UIYncth0yvqnjgem53JBlDngEU0-bXvsZjas77yfvhm8BJMkXCOaMpG75IsAjNGXoybG2yKsogCQaaKNQE9lM94gH/s320/iPhone_5_review_02-580-100.JPG" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Well, all of those picking up the iPhone 5 will have the same reaction: this thing is amazingly light. You've probably heard the numbers by now (20 per cent lighter than the predecessor, as well as beating most of the opposition too at 112g.)&lt;br /&gt;It's an odd sensation, but it actually detracts from the experience when you first pick it up. We've praised the weighty feel of the iPhone in the past, lending it a premium feel in the face of toy-like phones, and it's almost disappointing that Apple decided to join that clan.&lt;br /&gt;However, through extended use this problem quickly disappears, as the overall effect of the phone is still a chassis designed for strength, it just sits more anonymously in the pocket.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
You'll obviously see the change in height too – the iPhone 5 stands 123.8mm tall to allow for the larger 4-inch screen. In truth, those not familiar with the iPhone 4S probably wouldn't notice the difference, which is why it's a good move from Apple to include the larger screen if it's not going put people off that hate larger phones.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The decision to stick at 4-inches is Apple's admission that while it recognises people are all over the idea of having more screen real estate to play with it doesn't want to move away from the thumb-friendly nature of the device.&lt;br /&gt;Through a mixture of moving the centre of gravity slightly as well as repositioning the screen within the bezel, it's still possible to scroll your thumb mostly around the whole display one-handed, which Apple is clearly keen to keep hold of.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
However, we're not convinced of that argument any more, and the power button was still a little out of reach when using the phone normally, as was anything in the top left-hand corner of the screen. #&lt;br /&gt;This was no issue in reality, as scooting the phone down a touch in the palm is a natural action. But if that's the case, then why not offer a 4.3-inch screen at least?&lt;br /&gt;There's more to a phone than a screen these days (although increasingly less and less) and the general construction of the iPhone 5 is excellent to say the least.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
The same industrial band around the outside is in effect again as on the iPhone 4 and 4S, with small sections removed where the antenna joins.&lt;br /&gt;Apple has gone for a more advanced form of antenna here, meaning the days of lost signal are gone, and generally increasing the power of your call connection and GPS lock on too.&lt;br /&gt;
&lt;br /&gt;
There was a real chance here for Apple: remove the bezel and give the front of the screen a look that's similar to the OLED TVs from the likes of Samsung or LG… but instead we're treated to the same lines as before.&lt;br /&gt;You always get the feeling that Apple saves what it can for the next iteration of the iPhone, and while there's nothing wrong with the current construction we can see the edge-to-edge screen becoming something amazing on the iPhone 6.&lt;/div&gt;
</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhaYz2H6f5oEeH5aRPJmYUNZkKgtzcOtAzAHJH-LSQL6UqaezFLJj4UIYncth0yvqnjgem53JBlDngEU0-bXvsZjas77yfvhm8BJMkXCOaMpG75IsAjNGXoybG2yKsogCQaaKNQE9lM94gH/s72-c/iPhone_5_review_02-580-100.JPG" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>google adsense alternatives</title><link>http://justviewssharing.blogspot.com/2012/09/google-adsense-alternatives.html</link><author>noreply@blogger.com (SHARE IT)</author><pubDate>Sat, 29 Sep 2012 17:11:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-2060151163073837178</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;br /&gt;
&lt;h1 class="title" style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; border: 0px; color: black; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 2.2em; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: 1.2em; margin: 0px; orphans: 2; outline: 0px; padding: 0px 0px 10px; position: relative; text-align: left; text-indent: 0px; text-transform: none; vertical-align: baseline; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
Top 5 Google Adsense Alternatives&lt;/h1&gt;
&lt;br /&gt;
&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;AdBrite&lt;/b&gt; : &lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;AdBrite has been one of the longest lasting&amp;nbsp;competitors&amp;nbsp;to Adsense, and has become quite popular as an alternative. &amp;nbsp;It works under the same basic principles, and you do have to be approved to join, but once you have been let in – which isn’t all that hard – you will be presented with essentially the same options and abilities as what Google provides. &amp;nbsp;You can also set your payment options for far lower than Google allows, so you could be getting checks a lot more often with this service.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;strong style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; border: 0px; color: black; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: 21px; margin: 0px; orphans: 2; outline: 0px; padding: 0px; text-align: left; text-indent: 0px; text-transform: none; vertical-align: baseline; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;/strong&gt;&lt;span style="color: black; display: inline ! important; float: none; font-family: Sans-Serif,'Helvetica Neue',Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span class="Apple-converted-space"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;Bidvertiser&lt;/b&gt; :&amp;nbsp;&lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt; One of the biggest problems with most advertising systems is that advertisers have no clue where their ads will end up. &amp;nbsp;With Bidvertiser the publisher puts the code on their site, the advertisers look through the available ad slots, and then they can bid against one another for the most desirable locations. &amp;nbsp;It’s a bit of &amp;nbsp;a win for everyone involved. &amp;nbsp;Payouts start at only $10, so it shouldn’t be too hard to see the money start to come in.&lt;/span&gt;&lt;span style="color: black; display: inline ! important; float: none; font-family: Sans-Serif,'Helvetica Neue',Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black; display: inline ! important; float: none; font-family: Sans-Serif,'Helvetica Neue',Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style="color: black; display: inline ! important; float: none; font-family: Sans-Serif,'Helvetica Neue',Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;Chitika&lt;/b&gt;&amp;nbsp; : &lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;Chitika&lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt; provides a lot of alternatives to the usual “context advertising.” &amp;nbsp;If someone enters your a site via a search engine, they will be shown ads based on the terms they used to find your site, all the while your regular visitors won’t see a thing. &amp;nbsp;This is a great way to monetize to the casual server without driving away your most loyal readers. &amp;nbsp;The company also provides local-focused and mobile ads to help you earn money in new and interesting ways. &amp;nbsp;Payouts start at $10 for PayPal and $50 if you’d like to receive a check.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;b&gt;Clicksor&lt;/b&gt; : &lt;/span&gt;&lt;span style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; display: inline !important; float: none; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;While Clicksor is a contextual advertising solution like so many others, it is also a bit more versatile than most in that it offers not only the usual ad units, but also inline, rich media and more. &amp;nbsp;Think of it as one stop shopping for all of your advertising needs. &amp;nbsp;Payments start at $50 be either PayPal or check.&lt;/span&gt;&lt;span style="color: black; display: inline ! important; float: none; font-family: Sans-Serif,'Helvetica Neue',Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black; display: inline ! important; float: none; font-family: Sans-Serif,'Helvetica Neue',Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;br /&gt;&lt;/span&gt;
&lt;div style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; border: 0px; color: black; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; margin: 0px 0px 15px; orphans: 2; outline: 0px; padding: 0px; text-align: left; text-indent: 0px; text-transform: none; vertical-align: baseline; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;b&gt;eclickz&lt;/b&gt; : This solution offers up some interesting bonuses such as an XML feed you can monetize, domain parking and even building your own search portal in addition to the usual contextual ads.&lt;/div&gt;
&lt;div style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; border: 0px; color: black; font-family: Sans-Serif, 'Helvetica Neue', Arial; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; margin: 0px 0px 15px; orphans: 2; outline: 0px; padding: 0px; text-align: left; text-indent: 0px; text-transform: none; vertical-align: baseline; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
Advertising solutions out there are vast, but in this day and age there is just about something for publishers of every size.&lt;/div&gt;
&lt;br class="Apple-interchange-newline" /&gt;&lt;br /&gt;
&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>Galaxy S3 Pure View</title><link>http://justviewssharing.blogspot.com/2012/06/galaxy-s3-pure-view.html</link><category>Galaxy S2</category><category>Samsung</category><category>Samsung Galaxy S3</category><category>Samsung Mobiles</category><author>noreply@blogger.com (SHARE IT)</author><pubDate>Wed, 6 Jun 2012 11:24:00 +0530</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-5941418910710274555.post-2372780156333117523</guid><description>&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi40POeVojV8ERPN9MFYYXoBZD_MmmA94pp9WJG6EwSv61mGwkqSxDqnj2pOYAodBacLTtm2giWz4gR-XKiTxG_yC0qovHKg_qvLj0e9vI-DYcEzFre4aEHV5wpTQZB68iA95Yp-rxTVmDN/s1600/Galaxy-S3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="225" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi40POeVojV8ERPN9MFYYXoBZD_MmmA94pp9WJG6EwSv61mGwkqSxDqnj2pOYAodBacLTtm2giWz4gR-XKiTxG_yC0qovHKg_qvLj0e9vI-DYcEzFre4aEHV5wpTQZB68iA95Yp-rxTVmDN/s320/Galaxy-S3.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhmhegnQVaLdxil9wr_pVWyz03RjUnQ3SP0_ThC6lYbr1tu2NoitlBsC3_h0quRxqNjwYDxdu1eY2Rpr_ghJ_oCIPSGq9zXM4Nw65l1dehfBJ3G-glF4RHHPwF5kSOiKxMmvaQWE24wejZ/s1600/Samsung-Galaxy-S3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="241" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhmhegnQVaLdxil9wr_pVWyz03RjUnQ3SP0_ThC6lYbr1tu2NoitlBsC3_h0quRxqNjwYDxdu1eY2Rpr_ghJ_oCIPSGq9zXM4Nw65l1dehfBJ3G-glF4RHHPwF5kSOiKxMmvaQWE24wejZ/s320/Samsung-Galaxy-S3.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2FRVkZ0KphxK4t1r6eG1WrI-tDiueR8dB5681hIgHtNkcSuiYvKT-qo4krWr0B4_kN6hDudSI94ev4l2_fDCQUKi7R7sZSVg74b6_ZrJ5pAjYIIGWFRR_9ksEmJ_A8otXLOR44qaI7UQ1/s1600/galaxy3b_2210472b.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="200" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2FRVkZ0KphxK4t1r6eG1WrI-tDiueR8dB5681hIgHtNkcSuiYvKT-qo4krWr0B4_kN6hDudSI94ev4l2_fDCQUKi7R7sZSVg74b6_ZrJ5pAjYIIGWFRR_9ksEmJ_A8otXLOR44qaI7UQ1/s320/galaxy3b_2210472b.jpg" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size: large;"&gt;Samsung Galaxy S3 &lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;Samsung Galaxy S3 &lt;/span&gt;is more stylish smart phone from Samsung Family.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Galaxy S3 has wider Screen than i Phone.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Futures are more advanced compare to i Phone.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Network : 3 G, 4 G&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Wifi Enable with super fast speed.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Android latest version OS.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Samsung Galaxy Rules in Mobile Market.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Tags : Samsung, Galaxy , Galaxy S3, Galaxy s, Samsung Galaxy S3 Mobile, Samsung Mobiles, Galaxy S3 Pure View &lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi40POeVojV8ERPN9MFYYXoBZD_MmmA94pp9WJG6EwSv61mGwkqSxDqnj2pOYAodBacLTtm2giWz4gR-XKiTxG_yC0qovHKg_qvLj0e9vI-DYcEzFre4aEHV5wpTQZB68iA95Yp-rxTVmDN/s72-c/Galaxy-S3.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>