Bhanu Priya has Published 1598 Articles

What are the different types of pointers in C language?

Bhanu Priya

Bhanu Priya

Updated on 13-Sep-2023 16:12:06

29K+ Views

The pointer is a variable that stores the address of another variable.The syntax for the pointer is as follows −pointer = &variable;Types of PointersThere are eight different types of pointers which are as follows −Null pointerVoid pointerWild pointerDangling pointerComplex pointerNear pointerFar pointerHuge pointerNull PointerYou create a null pointer by assigning ... Read More

C program to find the second largest and smallest numbers in an array

Bhanu Priya

Bhanu Priya

Updated on 13-Sep-2023 14:56:13

28K+ Views

Enter the array elements and then, arrange the numbers in descending order by using the swapping technique. Later on, with the help of an index location, try to print the second largest and the second smallest element in an array.An array is used to hold the group of common elements ... Read More

Explain about nested queries in DBMS

Bhanu Priya

Bhanu Priya

Updated on 13-Sep-2023 13:12:39

33K+ Views

A nested query is a query that has another query embedded within it. The embedded query is called a subquery.A subquery typically appears within the WHERE clause of a query. It can sometimes appear in the FROM clause or HAVING clause.ExampleLet’s learn about nested queries with the help of an ... Read More

What is tier-3 architecture in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 13-Sep-2023 13:09:59

28K+ Views

The overall design of the Database Management System (DBMS) depends on its architecture. A large amount of data on web servers, Personal Computers (PC) and other elements are linked with networks with the help of basic client or server architecture.PCs and workstations are part of Client architecture that are connected ... Read More

What are Virtual Machines in Operating System?

Bhanu Priya

Bhanu Priya

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

29K+ 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

38K+ 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 Transmission Impairments in computer networks?

Bhanu Priya

Bhanu Priya

Updated on 12-Sep-2023 03:09:40

34K+ Views

Transmission impairment occurs when the received signal is different from the transmitted signal. As we know, a signal can be transmitted as Analog signal or it can be transmitted as a digital signal.In Analog signals due to transmission impairment the resulting received signal gets different amplitude or the shape. In ... Read More

What are the applications of DBMS?

Bhanu Priya

Bhanu Priya

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

35K+ 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

46K+ 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

36K+ 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

Advertisements