Understanding Normalizations in Database(RDBMS)

Let’s try understanding normalization
How many normal forms are there?
There are seven normal forms.
They are

  • First Normal Form
  • Second Normal Form
  • Third Normal Form
  • Boyce-Codd Normal Form
  • Fourth Normal Form
  • Fifth Normal Form
  • Sixth or Domain-key Normal form
Why do we need to do normalization?
To eliminate redundancy of data i.e. having same information stored at multiple places, which eventually be difficult to maintain and will also increase the size of our database.
With normalization we will have tables with fewer columns which will make data retrieval and insert, update and delete operations more efficient.
What do we mean when we say a table is not in normalized form?

Let’s take an example to understand this,
Say I want to create a database which stores my friends name and their top three favorite artists.
This database would be quite a simple so initially I’ll be having only one table in it say friends table. Here FID is the primary key.
FID FNAME FavoriteArtist
1 Srihari Akon, The Corrs, Robbie Williams.
2 Arvind Enigma, Chicane, Shania Twain

This table is not in normal form why?
FavoriteArtist column is not atomic or doesn’t have scalar value i.e. it has having more that one value.
Let’s modify this table
FID FNAME FavoriteArtist1 FavoriteArtist2 FavoriteArtist3
1 Srihari Akon. The Corrs Robbie Williams.
2 Arvind Enigma Chicane Shania Twain
This table is also not in normal form why?
We have now changed our table and now each column has only one value!! (So what’s left?)
Because here we are having multiple columns with same kind of value.
I.e. repeating group of data or repeating columns.
So what we need to do to make it normal or at least bring it in First Normal Form?
  1. We’ll first break our single table into two.
  2. Each table should have information about only one entity so it would be nice if we store our friend’s information in one table and his favorite artists’ information in another
(For simplicity we are working with few columns but in real world scenario there could be column like friend’s phone no, email , address and favorites artists albums, awards received by them, country etc. So in that case having two different tables would make complete sense)
FID FNAME
1 Srihari
2 Arvind
FID Favorite Artist
1 Akon.
1 The Corrs
1 Robbie Williams
2 Enigma
2 Chicane
2 Shania Twain
FID foreign key in FavoriteArtist table which refers to FID in our Friends Table.
Now we can say that our table is in first normal form.
Remember For First Normal Form
Column values should be atomic, scalar or should be holding single value
No repetition of information or values in multiple columns.

So what does Second Normal Form means?
For second normal form our database should already be in first normal form and every non-key column must depend on entire primary key.
Here we can say that our Friend database was already in second normal form l.
Why?
Because we don’t have composite primary key in our friends and favorite artists table.
Composite primary keys are- primary keys made up of more than one column. But there is no such thing in our database.
But still let’s try to understand second normal form with another example
This is our new table
Gadgets Supplier Cost Supplier Address
Headphone Abaci 123$ New York
Mp3 Player Sagas 250$ California
Headphone Mayas 100$ London
In about table ITEM+SUPPLIER together form a composite primary key.
Let’s check for dependency
If I know gadget can I know the cost?
No same gadget is provided my different supplier at different rate.
If I know supplier can I know about the cost?
No because same supplier can provide me with different gadgets.
If I know both gadget and supplier can I know cost?
Yes than we can.
So cost is fully dependent (functionally dependent) on our composite primary key (Gadgets+Supplier)
Let’s start with another non-key column Supplier Address.
If I know gadget will I come to know about supplier address?
Obviously no.
If I know who the supplier is can I have it address?
Yes.
So here supplier is not completely dependent on (partial dependent) on our composite primary key (Gadgets+Supplier).
This table is surely not in Second Normal Form.
So what do we need to do to bring it in second normal form?
Here again we’ll break the table in two.
Gadgets Supplier Cost
Headphone Abaci 123$
Mp3 Player Sagas 250$
Headphone Mayas 100$
Supplier Supplier Address
Abaci New York
Sagas California
Mayas London
We now how to normalize till second normal form.
But let’s take a break over here and learn some definitions and terms.
Composite Key: -Composite key is a primary key composed of multiple columns.
Functional Dependency – When value of one column is dependent on another column.
So that if value of one column changes the value of other column changes as well.
e.g. Supplier Address is functionally dependent on supplier name. If supplier’s name is changed in a record we need to change the supplier address as well.
S.Supplier–àS.SupplierAddress
“In our s table supplier address column is functionally dependent on the supplier column”
Partial Functional DependencyA non-key column is dependent on some, but not all the columns in a composite primary key.
In our above example Supplier Address was partially dependent on our composite key columns (Gadgets+Supplier).
Transitive Dependency- A transitive dependency is a type of functional dependency in which the value in a non-key column is determined by the value in another non-key column.
With these definitions in mind let’s move to Third Normal Form.
For a table in third normal form
  • It should already be in Second Normal Form.
  • There should be no transitive dependency, i.e. we shouldn’t have any non-key column depending on any other non-key column.
Again we need to make sure that the non-key columns depend upon the primary key and not on any other non-key column.
Album Artist No. of tracks Country
Come on over Shania Twain 11 Canada
History Michael Jackson 15 USA
Up Shania Twain 11 Canada
MCMXC A.D. Enigma 8 Spain
The cross of changes Enigma 10 Spain
Although the above table looks fine but still there is something in it because of which we will normalize it further.
Album is the primary key of the above table.
Artist and No. of tracks are functionally dependent on the Album(primary key).
But can we say the same of Country as well?
In the above table Country value is getting repeated because of artist.
So in our above table Country column is depended on Artist column which is a non-key column.
So we will move that information in another table and could save table from redundancy i.e. repeating values of Country column.
Album Artist No. of tracks
Come on over Shania Twain 11
History Michael Jackson 15
Up Shania Twain 11
MCMXC A.D. Enigma 8
The cross of changes Enigma 10
Artist Country
Shania Twain Canada
Michael Jackson USA
Enigma Spain

Normally this is considered enough and we don’t really go on applying the other normal forms.

Most of real-world application has databases which are in third normal forms.

courtesy: Ranjitha

Everything in India Is Automated but Not Advertised

All Indian government office related links are available... . Kindly save it......
Obtain:
*   Birth Certificate <
http://www.india. gov.in/howdo/ howdoi.php? service=1>
*   Caste Certificate <
http://www.india. gov.in/howdo/ howdoi.php? service=4>
*   Tribe Certificate <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=8>
*   Domicile Certificate <
http://www.india. gov.in/howdo/ howdoi.php? service=5>
*   Driving Licence <
http://www.india. gov.in/howdo/ howdoi..php? service=6>
*   Marriage Certificate <
http://www.india. gov.in/howdo/ howdoi.php? service=3>
*   Death Certificate <
http://www.india. gov.in/howdo/ howdoi.php? service=2>
*   Search More - How do I <
http://www.india. gov.in/howdo/ advancedsearch. php>

Apply for:

*   PAN Card <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=15>
*   TAN Card <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=3>
*   Ration Card <
http://www.india. gov.in/howdo/ howdoi.php? service=7>
*   Passport <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=2>
*   Inclusion of name in the Electoral Rolls <
http://www.india. gov.in/howdo/ howdoi.php? service=10>
*   Search More - How do I <
http://www.india. gov.in/howdo/ advancedsearch. php>

Register:

*   Land/Property <
http://www.india. gov.in/howdo/ howdoi.php? service=9>
*   Vehicle <
http://www.india. gov.in/howdo/ howdoi.php? service=13>
*   With State Employment Exchange <
http://www.india. gov.in/howdo/ howdoi.php? service=12>
*   As Employer <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=17>
*   Company <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=19>
*   .IN Domain <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=18>
*  
GOV.INDomain <http://www.india. gov.in/howdo/ otherservice_ details.php? service=25>
*   Search More - How do I <
http://www.india. gov.in/howdo/ advancedsearch. php>

Check/Track:

*   Waiting list status for Central Government Housing <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=9>
*   Status of Stolen Vehicles <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=1>
*   Land Records <
http://www.india. gov.in/landrecor ds/index. php>
*   Causelist of Indian Courts <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=7>
*   Court Judgements (JUDIS ) <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=24>
*   Daily Court Orders/Case Status <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=21>
*   Acts of Indian Parliament <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=13>
*   Exam Results <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=16>
*   Speed Post Status <
http://www.india. gov..in/howdo/ otherservice_ details.php? service=10>
*   Agricultural Market Prices Online <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=6>
*   Search More - How do I <
http://www.india. gov.in/howdo/ advancedsearch. php>

Book/File/Lodge:

*   Train Tickets Online <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=5>
*   Air Tickets Online <
http://www.india. gov..in/howdo/ otherservice_ details.php? service=4>
*   Income Tax Returns <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=12>
*   Complaint with Central Vigilance Commission (CVC) <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=14>
·
        Search More - How do I <http://www.india. gov.in/howdo/ advancedsearch. php>

Contribute to:

*   Prime Minister's Relief Fund <
http://www..india. gov.in/howdo/ otherservice_ details.php? service=11>
*   Search More - How do I <
http://www.india. gov.in/howdo/ advancedsearch. php>

Others:

*   Send Letters Electronically <
http://www.india. gov.in/howdo/ otherservice_ details.php? service=20>
*   Search More - How do I <
http://www.india. gov.in/howdo/ advancedsearch. php>

Recently Added Online Services

*   Tamil Nadu: Online application of marriage certificate for persons having registered their marriages <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2691>
*   Tamil Nadu: Online District wise soil Details of Tamil Nadu <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2693>
*   Tamil Nadu: View Water shed Atlas of Tamil Nadu <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2694>
*   Tamil Nadu: E-Pension District Treasury Tirunelveli <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2695>
*   Meghalaya: Search Electoral Roll Online by Name (2008) <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2697>
*   Meghalaya: Search Electoral Roll Online by EPIC number (2008) <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2698>
*   Meghalaya: Search Electoral Roll Online by House number (2008) <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2699>
*   Himachal Pradesh: Revised Pay and Arrears Calculator-Fifth Pay <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2702>
*   Meghalaya: Search Electoral Roll Online by Part number (2008) <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2700>
*   Andhra Pradesh: Online Motor Driving School Information <
http://www.india. gov.in/howdo/ onlineservice_ detail.php? service=2705>  
Global Navigation

*   Citizens <
http://www.india. gov.in/citizen. php>
*   Business (External website that opens in a new window) <
http://business. gov.in/>
*   Overseas <
http://www.india. gov.in/overseas. php>
*   Government <
http://www.india. gov.in/govt. php>
*   Know India <
http://www.india. gov.in/knowindia .php>
*   Sectors <
http://www.india. gov.in/sector. php>
*   Directories <
http://www.india. gov.in/directori es.php>
*   Documents <
http://www.india. gov.in/documents .php>
*   Forms <
http://www.india. gov.in/forms/ forms.php>
*   Acts <
http://www.india. gov.in/govt/ acts.php>
*   Rules <
http://www.india. gov.in/govt/ rules.php>
*   Schemes <
http://www.india. gov.in/govt/ schemes.php>
*   Tenders <
http://www.india. gov.in/tenders. php>
*   Home <
http://www.india. gov.in/default. php>
*   About the Portal <
http://www.india. gov.in/aboutthep ortal.php>
*   Site Map <
http://www.india. gov.in/sitemap. php>
*   Link to Us <
http://www.india. gov.in/linktous. php>
*   Suggest to a Friend <
http://www.india. gov.in/suggest/ suggest.php>
*   Help <
http://www.india. gov.in/help. php>
*   Terms of Use <
http://www.india. gov.in/termscond tions.php>
*   Feedback <
http://www.india. gov.in/feedback. php>
*   Contact Us <
http://www.india. gov.in/contactus .php>
*   Accessibility Statement <
http://www.india. gov.in/accessibi litystatement. php>

Post Your Resume to TCS Careers

 
 
 

Interview Questions On Java

Question: What is the difference between an Interface and an Abstract class?
Question: What is the purpose of garbage collection in Java, and when is it used?  
Question:  Describe synchronization in respect to multithreading.
Question:  Explain different way of using thread?  
Question:  What are pass by reference and passby value?
Question:  What is HashMap and Map?
Question:  Difference between HashMap and HashTable?
Question: Difference between Vector and ArrayList?
Question:  Difference between Swing and Awt?
Question:  What is the difference between a constructor and a method?
Question:  What is an Iterator?
Question:  State the significance of public, private, protected, default modifiers both singly and in combination and state the effect of package relationships on declared items qualified by these modifiers.
Question: What is an abstract class?
Question: What is static in java?
Question: What is final? 


courtesy:allapplabs.com 



To check Some more Good Questions You may face in Interview about java ... Check out the below links

http://www.roseindia.net/interviewquestions/corejava.shtml

http://www.interview-questions-java.com/

http://www.freejavaguide.com/java-interview-questions.html

http://www.coolinterview.com/type.asp?iType=33

http://www.javacertificate.net/interview_qns.htm

Capture Ur Desktop Activity Into A Video

CamStudio is able to record all screen and audio activity on your computer and create industry-standard AVI video files and using its built-in SWF Producer can turn those AVIs into lean, mean, bandwidth-friendly Streaming Flash videos (SWFs)

Here are just a few ways you can use this software:
  • You can use it to create demonstration videos for any software program
  • Or how about creating a set of videos answering your most frequently asked questions?
  • You can create video tutorials for school or college class
  • You can use it to record a recurring problem with your computer so you can show technical support people
  • You can use it to create video-based information products you can sell
  • You can even use it to record new tricks and techniques you discover on your favorite software program, before you forget them

Homepage | Download

CTS :Combined Campus Freshers Recruitment Drive : BE / B.Tech / MCA / ME / M.Tech / M.Sc-2011 & 2010

Cognizant Technology Solutions India Private Limited (www.cognizant.com)
Cognizant Technology Solutions [CTS] is again going to conduct Offcampus for 2011,2010 Batch candidates. CTS already conducted offcampus in the month of April & October 2010.



The eligibility criteria is :
1) Open only to the students with following degrees

* Category 1: BE / B Tech / ME / M Tech / MCA / M Sc (Computer Science / IT / Software Engg)
* Category 2: B Sc / BCA / M Sc (except Computer Science / IT / Software Engg)

2) Year of graduation: 2010 or 2011 batch only (ie., 2011 Pass outs & 2010 Passed outs)

3) Consistent First Class (over 60%) in X, XII, UG and PG (if applicable)

STEP 1:
Go to

https://careers.cognizant.com/OffCampus/GeneralInstruction.aspx

Step 2:
Click on Continue which is at the bottom of the page.

STEP-3
Click on Apply Now

STEP 4:
Fill the application form & after that u will get a unique reference ID which u need to save for future reference.

CTS New PatterN:

Click on image for large view(zoomin)

Install XP in 10 Minutes

As We all know that During Formatting a Computer After the File Copying is Completed then windows Require 39 Minutes Time. We can bypass this time by a simple trick.

It will just take around 9 minutes and 2 minutes for Tolerance(depends System to system).

Install Windows in 10 mins:-
=======================

1) Wait till the copy part is over, when its over system reboots and the below image will appear.


2) Now As This Image APPEARS You Have to Press "Shift + F10 ". This Will Open The command Prompt. Now type "taskmgr" in it to open the Task manager.

3) After The task Manager Opens go to Processes tab and find "Setup.exe" process and Right CLICK on it and set the Priority to Highest.


4) Now just wait and watch your xp install in 10 mins !

Yahoo Messenger Adds Support To Import Contacts From FaceBook

If you are a Yahoo messenger user, you must have already been introduced to the import contacts option quite sometime back, the import function supports importing contacts from various websites like Gmail, Hotmail, MySpace, Orkut and more.



In addition to the already existing domains, Yahoo had added an option to import contacts from FaceBook, this option is available when you choose Import Contacts menu.

All the contacts on facebook will be available and you can chat with your  facebook contacts directly from Yahoo! Messenger.



Learn Something Everyday

Look at this beautiful website which reveals something unusual and interesting everyday.
Put this website as homepage for ur browser and learn something everyday.
Link for that site is  http://www.learnsomethingeveryday.co.uk/

ACA Overview Slide

ACA Overview




Dont miss ! Have a Glance..

40 People Who Changed The Internet

The world has become tightly connected since the internet. The web itself has replaced the practice of reading newspaper. Most of us now communicate through e-mails instead of paper and pen. We now watch networks or movies online, it has even become a wide business venture, so much so we can now make purchase and pay our bills through the internet. The web has also transformed friendships through various social media. It also provides us the possibility to reconnect with people from our childhood and it can be a life changing event.
preview 40 People Who Changed the Internet
Having a great idea is one thing. Turning that idea into a booming company through innovation and execution is what that matters most. Here, these are the people who have the biggest impact on the direction of the web: past, present, and future. They changed the internet and revolutionized the way we lead our lives today. Just imagine the world without internet. You can’t because it has become our daily life.


Courtesy: hongkiat.com

SPM Slide for Overview And Previous Papers

Software Project Management Overview

[ Download ]



sup-march*2010 , nov-08 , nov-09 , sup-may-09 SPM previous papers
In March 2010 , SPM papers are from page no-21.

[ Download ]




TCP and UDP Differences

Imp Question Both for Mobile Computing and Network Programming.


Q. Can you explain the difference between UDP and TCP internet protocol (IP) and its usage with an example?
A. Transmission Control Protocol (TCP) and User Datagram Protocol (UDP)is a transportation protocol that is one of the core protocols of the Internet protocol suite. Both TCP and UDP work at transport layer TCP/IP model and both have very different usage.

Difference between TCP and UDP

TCP

UDP

Reliability: TCP is connection-oriented protocol. When a file or message send it will get delivered unless connections fails. If connection lost, the server will request the lost part. There is no corruption while transferring a message.

Reliability: UDP is connectionless protocol. When you a send a data or message, you don't know if it'll get there, it could get lost on the way. There may be corruption while transferring a message.

Ordered: If you send two messages along a connection, one after the other, you know the first message will get there first. You don't have to worry about data arriving in the wrong order.

Ordered: If you send two messages out, you don't know what order they'll arrive in i.e. no ordered

Heavyweight: - when the low level parts of the TCP "stream" arrive in the wrong order, resend requests have to be sent, and all the out of sequence parts have to be put back together, so requires a bit of work to piece together.

Lightweight: No ordering of messages, no tracking connections, etc. It's just fire and forget! This means it's a lot quicker, and the network card / OS have to do very little work to translate the data back from the packets.

Streaming: Data is read as a "stream," with nothing distinguishing where one packet ends and another begins. There may be multiple packets per read call.

Datagrams: Packets are sent individually and are guaranteed to be whole if they arrive. One packet per one read call.

Examples: World Wide Web (Apache TCP port 80), e-mail (SMTP TCP port 25 Postfix MTA), File Transfer Protocol (FTP port 21) and Secure Shell (OpenSSH port 22) etc.

Examples: Domain Name System (DNS UDP port 53), streaming media applications such as IPTV or movies, Voice over IP (VoIP), Trivial File Transfer Protocol (TFTP) and online multiplayer games etc

JNTU 4-1 CSE Previous Papers

Advanced Computer Architecture - Download


Data Mining And Warehousing - Download


Mobile Computing - Download


Software project Management - Download


Web Technologies - Download




Courtesy: Navdeep

JDBC Driver Types

You will not get marks for the content given in text book. Read this material for JDBC Driver Types (8th Unit from Web Technology).

List Of Paper Sizes

From this picture U can get a clear cut view about the paper sizes

Is Taj Mahal really a Mausoleum?

Read many unrevealed secrets of Taj Mahal by P.N.Oak

Find Every Detail About Your Computer

CPU-Z is a freeware that gathers information on some of the main devices of your system.

Find out everything about your computer you ever wanted to know with this program that gives you information such as:


CPU
* Name and number.
* Core stepping and process.
* Package.
* Core voltage.
* Internal and external clocks, clock multiplier.
* Supported instruction sets.
* Cache information.

Mainboard
* Vendor, model and revision.
* BIOS model and date.
* Chipset (northbridge and southbridge) and sensor.
* Graphic interface.

Memory
* Frequency and timings.
* Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table.

System
* Windows and DirectX version.

Download



courtesy: Danzy World   

NP Lab Last 4 Programs

Download the last 4 programs of NP lab here.

Download

Note:  open the program files using wordpad. Don't use notepad

Courtesy: praneeth

Crack Gate 2011

Includes C , DBMS , Math, OS , Links etc






mcqs in computer science by timothy j williams




Gate CS Formulae


DMDW 6th Unit Slides

Download DMDW 6th Unit slides from the below link.

JNTUK 4th Btech R07 CSE External Exam Time Table

1-11-10 (Monday) Web Technologies

6-11-10 (Saturday)  Mobile Computing


9-11-10 (Tuesday)  Network Programming


11-11-10 (Thursday) Software Project Management


16-11-10 (Tuesday)  Data Warehousing & Mining


19-11-10 (Friday)  Advanced Computing Architecture


.

IV th CSE 2nd Mid Online Bits

Advance Computer Architecture - Download

Software Project Management - Download

Mobile Computing - Download

Data Mining And Warehousing - Download

Web Technologies - Download

Which one? Which Type?

Well if you download movies you would know that it has tag written like CAM/R5/DVDRip/DVDSCR/XVID etc.. how often it happen that you waited for hours to download a movie only to find out that the quality is so bad that its not worth watching it.

Here are the details about the types and qualities of movies, if you can't wait for a DVD. :)

CAM
A cam is a theater rip usually done with a digital video camera. A mini tripod is sometimes used, but a lot of the time this wont be possible, so the camera make shake. Also seating placement isn’t always idle, and it might be filmed from an angle. If cropped properly, this is hard to tell unless there’s text on the screen, but a lot of times these are left with triangular borders on the top and bottom of the screen. Sound is taken from the onboard microphone of the camera, and especially in comedies, laughter can often be heard during the film. Due to these factors picture and sound quality are usually quite poor, but sometimes we’re lucky, and the theater will be fairly empty and a fairly clear signal will be heard.

TELESYNC (TS)
A telesync is the same spec as a CAM except it uses an external audio source (most likely an audio jack in the chair for hard of hearing people). A direct audio source does not ensure a good quality audio source, as a lot of background noise can interfere. A lot of the times a telesync is filmed in an empty cinema or from the projection booth with a professional camera, giving a better picture quality. Quality ranges drastically, check the sample before downloading the full release. A high percentage of Telesyncs are CAMs that have been mislabeled.

TELECINE (TC)
A telecine machine copies the film digitally from the reels. Sound and picture should be very good, but due to the equipment involved and cost telecines are fairly uncommon. Generally the film will be in correct aspect ratio, although 4:3 telecines have existed. A great example is the JURASSIC PARK 3 TC done last year. TC should not be confused with TimeCode , which is a visible counter on screen throughout the film

R5
R5 refers to a specific format of DVD released in DVD Region 5, the former Soviet Union, and bootlegged copies of these releases that are distributed on the Internet. In an effort to compete with movie piracy, the movie industry chose to create a new format for DVD releases that could be produced more quickly and less expensively than traditional DVD releases. R5 releases differ from normal releases in that they are a direct Telecine transfer of the film without any of the image processing common on DVD releases, and without any special features. This allows the film to be released for sale at the same time that DVD Screeners are released. Since DVD Screeners are the chief source of high-quality pirated movies, this allows the movie studios to beat the pirates to market. In some cases, R5 DVDs may be released without an English audio track, requiring pirates to use the direct line audio from the film’s theatrical release. In this case, the pirated release is tagged with “.LINE” to distinguish it from a release with a DVD audio track.

The image quality of an R5 release is generally comparable to a DVD Screener release, except without the added scrolling text and black and white scenes that serve to distinguish screeners from commercial DVD releases. The quality is better than Telecine transfers produced by movie pirates because the transfer is performed usingprofessional-grade film scanning equipment.

Because there is no scene release standard for pirated R5 releases, they were variably tagged as Telecines, DVD Screeners, or even DVD rips. In late 2006, several release groups such as DREAMLiGHT, mVs, and PUKKA began tagging R5 releases with “.R5″ or r5 line (the line meaning it has direct english line audio) and suggesting that other groups do the same.

SCREENER (SCR)
A pre VHS tape, sent to rental stores, and various other places for promotional use. A screener is supplied on a VHS tape, and is usually in a 4:3 (full screen) a/r, although letterboxed screeners are sometimes found. The main draw back is a “ticker” (a message that scrolls past at the bottom of the screen, with the copyright and anti-copy telephone number). Also, if the tape contains any serial numbers, or any other markings that could lead to the source of the tape, these will have to be blocked, usually with a black mark over the section. This is sometimes only for a few seconds, but unfortunately on some copies this will last for the entire film, and some can be quite big. Depending on the equipment used, screener quality can range from excellent if done from a MASTER copy, to very poor if done on an old VHS recorder thru poor capture equipment on a copied tape. Most screeners are transferred to VCD, but a few attempts at SVCD have occurred, some looking better than others.

DVD-SCREENER (DVDscr)
Same premise as a screener, but transferred off a DVD. Usually letterbox , but without the extras that a DVD retail would contain. The ticker is not usually in the black bars, and will disrupt the viewing. If the ripper has any skill, a DVDscr should be very good. Usually transferred to SVCD or DivX/XviD.

WORKPRINT (WP)
A workprint is a copy of the film that has not been finished. It can be missing scenes, music, and quality can range from excellent to very poor. Some WPs are very different from the final print (Men In Black is missing all the aliens, and has actors in their places) and others can contain extra scenes (Jay and Silent Bob) . WPs can be nice additions to the collection once a good quality final has been obtained.

DVDRip
A copy of the final released DVD. If possible this is released PRE retail (for example, Star Wars episode 2) again, should be excellent quality. DVDrips are released in SVCD and DivX/XviD.

DivX / XviD
XviD & DivX are the most commonly encoded movies. DivX used to be the most popular, until it went from open source to a corporation that bought the rights & started charging for it (although the crack can easily be obtained for the DivX encoder, most people have switched to XviD, not only because it is open source, but also because it is superior in many ways). In the last year or so, many stand-alone DVD players have been released that are capable of playing DivX/XviD movies (even on CDRs), which has made this the most popular form of encoding. The majority of XviD/DivX rips are taken from DVDs, and are generally in as good quality as possible that can fit on one 700MB CDR disc, which is why most XviD/DivX movies are almost exactly 700MB, so they can be burnt onto a CDR & played in these new DVD players (which can be purchased just about anywhere for as little as $30-$40 USD). Various codecs exist, the most popular at the moment being the new XviD 1.2 codec. DivX encoded movies will definitely play on these new DVD players, & it only takes a little simple tweaking by the ripper to ensure XviDs will play on them as well, but it is therefore not guaranteed. (If you want to learn more about XviD/DivX encoding so you can make your own DVDrips, just visit doom9.org)

BDRip,BRRip,BDRip.XviD,Blu-Ray
Similar to DVD-Rip, only the source is a Blu-ray Disc. A BD/BR Rip in DVD-Rip size often looks better than a same-size DVD rip because encoders have better source material. What is commonly misunderstood among downloaders is that a BDRip and a BRRip is exactly the same. A BDRip comes directly from the BluRay source, and BRRip is encoded from a pre-release, usually from a 1080p BDRip from another group. BD Rips are available in DVD-Rip sized releases (commonly 700MB or 1.4GB) encoded in XviD as well as larger DVD5 or DVD9 (often 4.5gb or larger, depending on length and quality) sized releases encoded in x264. BD5 or BD9 are also available, which are slightly smaller than their counterpart DVD5/DVD9 releases, are AVCHD compatible using the BD Folder structure and are intended to be burnt onto DVDs to play in AVCHD compatible Blu-Ray players.


courtesy: Danzyworld

NP Lab Programs for Download

Download Network Programming Lab manual. It contains all syllabus book programs foem week 1 to week 12
Grab it here

Download

Courtesy: Rama Satish Sir

Four Beautiful Windows7 Themes









daydream
Download Nicole Doll Theme






Download DayDream Theme








Download LotsBears Theme

Recover Data From Harddisk, Memory Card, Usb Disk - Disk Dagger

DiskDigger is a program that undeletes and recovers lost files from your hard drive, memory cards, USB flash drives — you name it!

Whether you accidentally deleted some documents or photos from your computer, reformatted your camera's memory card, or want to see what files are lurking on an old USB drive, DiskDigger is here for you.

Data Mining And Warehousing 2 Problems

Download these scans of the 2 problems. U will get one definitely in the exam

4-1 CSE 1st Mid Online Bits

Advanced Computer Architecture - Download

Software Project Management - Download

Mobile Computing - Download

Data Mining And Warehousing - Download (updated)

courtesy: studentsgola

Tag Scanner - The Best

Download this software for the best organisation of music in ur computer.
U can easily edit the albums, artist names of all the files very easily. This is  helpful when u load ur songs into ur ipod or mp3 player.
In ipod normally u wont get all the songs of single album in single folder,
With this software u can edit such that all the songs of one album are arranged in a single folder when the album name and artist name of all the songs of a same movie are same. U can do it easily using Tag scanner







Download (1.5 mb)