Bhanu Priya has Published 1581 Articles

What is shared memory architecture in parallel databases?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2024 14:15:22

3K+ Views

In parallel database system data processing performance is improved by using multiple resources in parallel. In this CPU, disks are used parallel to enhance the processing performance. Operations like data loading and query processing are performed parallel. Centralized and client server database systems are not powerful enough to handle applications ... Read More

What is shared nothing architecture in parallel databases?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2024 13:26:21

2K+ Views

In parallel database system data processing performance is improved by using multiple resources in parallel. In this CPU, disks are used parallel to enhance the processing performance. Operations like data loading and query processing are performed parallel. Centralized and client server database systems are not powerful enough to handle applications ... Read More

What is shared disk architecture in parallel databases?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2024 13:04:05

2K+ Views

In parallel database system data processing performance is improved by using multiple resources in parallel. In this CPU, disks are used parallel to enhance the processing performance. Operations like data loading and query processing are performed parallel. Centralized and client server database systems are not powerful enough to handle applications ... Read More

Explain the sorting techniques in C language

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2024 14:53:05

31K+ Views

In this article, we are going to learn about the different sorting techniques and their implementations in C language. The following are the sorting techniques that we can implement with C language and other programming also: Bubble Sort Insertion Sort Selection Sort Merge Sort Shell Sort Heap Sort Bucket ... Read More

What is strtok_r() function in C language?

Bhanu Priya

Bhanu Priya

Updated on 25-Jun-2024 23:21:10

3K+ Views

strtok_r() function in C language The strtok_r() function is similar to the strtok() function. The only key difference is that the _r, which is called as re-entrant function. A re-entrant function is a function which can be interrupted during its execution. This type of function can be used to ... Read More

Implementation of DFS using C language

Bhanu Priya

Bhanu Priya

Updated on 25-Jun-2024 23:14:10

5K+ Views

Depth First Search (DFS) is an algorithm which traverses a graph and visits all nodes before coming back it can determine. Also, it determines whether a path exist between two nodes. It searches a graph or tree in depth-wise manner. Algorithm Given below is an algorithm for the implementation of ... Read More

Explain putc() and getc() functions of files in C language

Bhanu Priya

Bhanu Priya

Updated on 22-Jun-2024 17:42:24

10K+ Views

A file represents a sequence of bytes, regardless of it being a text file or a binary file. File is collection of records or is a place on hard disk, where data is stored permanently. Operations on files The operations on files in C programming language are as follows − ... Read More

Explain the functions putw() and getw() in C language

Bhanu Priya

Bhanu Priya

Updated on 21-Jun-2024 23:45:30

10K+ Views

File is collection of records or is a place on hard disk, where data is stored permanently. Operations on files The operations on files in C programming language are as follows − Naming the file Opening the file Reading from the file ... Read More

Explain fgetc() and fputc() functions in C language

Bhanu Priya

Bhanu Priya

Updated on 21-Jun-2024 22:00:27

3K+ Views

File is collection of records or is a place on hard disk, where data is stored permanently.Operations on filesThe operations on files in C programming language are as follows −Naming the fileOpening the fileReading from the fileWriting into the fileClosing the fileSyntaxThe syntax for opening a file is as follows ... Read More

Explain the conversions of expressions of stacks in C language

Bhanu Priya

Bhanu Priya

Updated on 21-Jun-2024 21:50:10

1K+ Views

Stack is a linear data structure, where data is inserted and removed only at one end.AlgorithmsGiven below is an algorithm for Push ( ) −Check for stack overflow.if (top = = n-1) printf("stack over flow");Otherwise, insert an element into the stack.top ++ a[top] = itemGiven below is an algorithm for ... Read More

1 2 3 4 5 ... 159 Next
Advertisements