Bhanu Priya has Published 1450 Articles

What is shared nothing architecture in parallel databases?

Bhanu Priya

Bhanu Priya

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

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 disk architecture in parallel databases?

Bhanu Priya

Bhanu Priya

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

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 strtok_r() function in C language?

Bhanu Priya

Bhanu Priya

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

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

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

Bhanu Priya

Bhanu Priya

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

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

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

Explain Binding of a variable in C language.

Bhanu Priya

Bhanu Priya

Updated on 20-Jun-2024 21:52:52

1K+ Views

Storage classes specify the scope, lifetime and binding of variables.To fully define a variable, one needs to mention not only its ‘type’ but also its storage class.A variable name identifies some physical location within computer memory, where a collection of bits are allocated for storing values of variable.Storage class tells ... Read More

Explain the pointers for inter-function communication in C language.

Bhanu Priya

Bhanu Priya

Updated on 20-Jun-2024 21:50:26

3K+ Views

We know that functions can be called by value and called by reference.If the actual parameter should not change in called function, pass the parameter-by value.If the value of actual parameter should get changed in called function, then use pass-by reference.If the function has to return more than one value, ... Read More

What are the inserting elements in queue in C language?

Bhanu Priya

Bhanu Priya

Updated on 20-Jun-2024 21:43:55

4K+ Views

Data structure is collection of data organized in a structured way. It is divided into two types as explained below − Linear data structure − Data is organized in a linear fashion. For example, arrays, structures, stacks, queues, linked lists. ... Read More

Explain deleting an element in a queue by using C language

Bhanu Priya

Bhanu Priya

Updated on 20-Jun-2024 21:39:11

7K+ Views

Data structure is collection of data organized in a structured way. It is divided into two types as explained below −Linear data structure − Data is organized in a linear fashion. For example, arrays, structures, stacks, queues, linked lists.Nonlinear data structure − Data is organized in a hierarchical way. For ... Read More

Find 2'c complements for given binary number using C language

Bhanu Priya

Bhanu Priya

Updated on 20-Jun-2024 21:30:15

298 Views

Problem Statement Given a binary number, you have to write a C program to find 2'c complements for given binary number. Consider an example given below −ExampleThe input is as follows:Enter a binary number:10010001The output is as follows:1's complement of 10010001 is 011011102's complement of 10010001 is 01101111AlgorithmRefer an algorithm ... Read More

Advertisements