Bhanu Priya has Published 1449 Articles

What are Virtual Machines in Operating System?

Bhanu Priya

Bhanu Priya

Updated on 12-Sep-2023 09:53:20

36K+ Views

A virtual machine (VM) is a virtual environment which functions as a virtual computer system with its own CPU, memory, network interface, and storage, created on a physical hardware system.VMs are isolated from the rest of the system, and multiple VMs can exist on a single piece of hardware, like ... Read More

C Program to delete the duplicate elements in an array

Bhanu Priya

Bhanu Priya

Updated on 12-Sep-2023 03:23:56

53K+ Views

Try to delete the same numbers present in an array. The resultant array consists of unique elements.The logic to delete the duplicate elements in an array is as follows −for(i=0;i

What are the applications of DBMS?

Bhanu Priya

Bhanu Priya

Updated on 10-Sep-2023 08:28:07

41K+ Views

The Database Management System (DBMS) is defined as a software system that allows the user to define, create and maintain the database and provide control access to the data.It is a collection of programs used for managing data and simultaneously it supports different types of users to create, manage, retrieve, ... Read More

Write a C program to Reverse a string without using a library function

Bhanu Priya

Bhanu Priya

Updated on 10-Sep-2023 08:20:38

66K+ Views

Using strrev() functionThe function is used for reversing a string.The reversed string will be stored in the same string.Syntaxstrrev (string)Before working on reversing the string without using function, let’s have a look on how to reverse a string using string function strrev(), so that we can easily find the difference ... Read More

What are the DCL commands in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 09-Sep-2023 23:32:31

42K+ Views

Data control language (DCL) is used to access the stored data. It is mainly used for revoke and to grant the user the required access to a database. In the database, this language does not have the feature of rollback.It is a part of the structured query language (SQL).It helps ... Read More

What are data link layer design issues?

Bhanu Priya

Bhanu Priya

Updated on 08-Sep-2023 22:58:22

8K+ Views

The Data Link layer is located between physical and network layers. It provides services to the Network layer and it receives services from the physical layer. The scope of the data link layer is node-to-node.The following are the design issues in the Data Link Layer −The services that are provided ... Read More

What is a multiprogramming Operating System?

Bhanu Priya

Bhanu Priya

Updated on 08-Sep-2023 22:52:19

35K+ Views

Multiprogramming OS is an ability of an operating system that executes more than one program using a single processor machine.More than one task or program or jobs are present inside the main memory at one point of time.Buffering and spooling can overlap I/O and CPU tasks to improve the system ... Read More

Explain division operation in relational algebra (DBMS)?

Bhanu Priya

Bhanu Priya

Updated on 06-Sep-2023 21:18:58

72K+ Views

Query is a question or requesting information. Query language is a language which is used to retrieve information from a database.Query language is divided into two types −Procedural languageNon-procedural languageProcedural languageInformation is retrieved from the database by specifying the sequence of operations to be performed.For Example: Relational algebra.Structure Query language ... Read More

What is the purpose of Database Management System?

Bhanu Priya

Bhanu Priya

Updated on 06-Sep-2023 21:07:28

45K+ Views

The Database Management System (DBMS) is defined as a software system that allows the user to define, create and maintain the database and provide control access to the data.It is a collection of programs used for managing data and simultaneously it supports different types of users to create, manage, retrieve, ... Read More

What are the DML commands in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 02-Sep-2023 16:07:21

56K+ Views

The structured query language (SQL) commands deal with the manipulation of data present in the database that belongs to the DML or Data Manipulation Language. This includes most of the SQL statements.Examples of DMLThe examples of DML in the Database Management System (DBMS) are as follows −SELECT − Retrieve data ... Read More

Advertisements