Amit Diwan has Published 109 Articles

Second Normal Form (2NF)

Amit Diwan

Amit Diwan

Updated on 12-Sep-2023 09:51:50

32K+ Views

What is 2NF?The second step in Normalization is 2NF.A table is in 2NF, only if a relation is in 1NF and meet all the rules, and every non-key attribute is fully dependent on primary key.The Second Normal Form eliminates partial dependencies on primary keys.Let us see an example −Example (Table ... Read More

One-to-Many or Many-to-One Relationship in DBMS

Amit Diwan

Amit Diwan

Updated on 06-Sep-2023 13:11:20

40K+ Views

A relationship can be One-to-Many or Many-to-One in DBMS. Let us see what that means with examples −One-to-Many RelationshipOne-to-Many relationship in DBMS is a relationship between instances of an entity with more than one instance of another entity.The relation can be shown as −Let us see an example −A student ... Read More

Types of dependencies in DBMS

Amit Diwan

Amit Diwan

Updated on 06-Sep-2023 13:07:39

42K+ Views

Dependencies in DBMS is a relation between two or more attributes. It has the following types in DBMS −Functional DependencyFully-Functional DependencyTransitive DependencyMultivalued DependencyPartial DependencyLet us start with Functional Dependency −Functional DependencyIf the information stored in a table can uniquely determine another information in the same table, then it is called ... Read More

How to run JavaTuples program in Eclipse?

Amit Diwan

Amit Diwan

Updated on 22-Aug-2023 12:15:43

525 Views

Tuples in Java are an ordered collection of objects of different types. To run Tuple in Java, you need to upload an external jar file. Here, we will be using Eclipse IDE to create a new Java Project and upload the JavaTuples external jar file.The JavaTuples jar file is to ... Read More

Mass Storage Management

Amit Diwan

Amit Diwan

Updated on 22-Jun-2020 08:30:46

7K+ Views

Disks are the mainly used mass storage devices. They provide the bulk of secondary storage in operating systems today.Disk StructureEach modern disk contains concentric tracks and each track is divided into multiple sectors. The disks are usually arranged as a one dimensional array of blocks, where blocks are the smallest ... Read More

User View vs System View in Operating System

Amit Diwan

Amit Diwan

Updated on 21-Jun-2020 16:37:44

15K+ Views

An operating system is a construct that allows the user application programs to interact with the system hardware. Operating system by itself does not provide any function but it provides an atmosphere in which different applications and programs can do useful work.The operating system can be observed from the point ... Read More

Process Management

Amit Diwan

Amit Diwan

Updated on 20-Jun-2020 16:57:05

2K+ Views

A process is an active program i.e a program that is under execution. It contains the program code, program counter, process stack, registers etc.Process StatesThe different states that a process is in during its execution are explained using the following diagram −New- The process is in new state when it ... Read More

What is an Operating System?

Amit Diwan

Amit Diwan

Updated on 20-Jun-2020 15:58:42

2K+ Views

An operating system is a construct that allows the user application programs to interact with the system hardware. Operating system by itself does not provide any function but it provides an atmosphere in which different applications and programs can do useful work.The place of an operating system in a computer ... Read More

N-ary Relationship in Database

Amit Diwan

Amit Diwan

Updated on 20-Jun-2020 09:52:14

9K+ Views

A relationship is an important part of any Entity relationship diagram as it shows the relation between two different entities. In an n - ary relationship, the n shows the number of entities in the relationship. It can be anything but the most popular relationships are unary, binary and ternary ... Read More

Functions in Oracle DBMS

Amit Diwan

Amit Diwan

Updated on 20-Jun-2020 09:50:11

5K+ Views

The different types of functions in Oracle are −Oracle String FunctionsOracle Numeric FunctionsOracle Date FunctionsMore details about these functions are given as follows −Oracle String FunctionsThe following are the Oracle String Functions −ASCII(str)This function returns the ASCII or numeric value of the first word in the string str provided. If ... Read More

1 2 3 4 5 ... 11 Next
Advertisements