Answer:
The answer is "Increased flexibility".
Explanation:
In the given question some information is missing that is the option of the question which can be described as follows:
A. Enhance scalability and efficiency
B. Enhance data security
C. Reducing data duplication
D. Increased flexibility
Flexibility is being used as an object for different types of applications. It is an engineering system which is that provides an easy way for all the scheme to respond to insecurity so, that its value is maintained or increased, It is also known as its key component, and certain option was incorrect, which can be described as follows:
- In option A, It is wrong because it is used in business data.
- In option B, It is wrong because it provides security.
- In option C, It removes duplicate data that's why it is wrong.
Answer:
The function declaration to this question as follows:
Function declaration:
//declaring method printFeetInchShort, that accepts two integer parameters
void printFeetInchShort(int numFeet,int numInches) //method
{//method body
printf("The given height is: "); // message printing
printf("%d\'%d\" ", numFeet,numInches); //value printing
}
Explanation:
In the above method (function) declaration a method "printFeetInchShort" is declared, that accepts two integer variable as its parameters.
- This method uses a return type void, which means it will not return any value.
- The parameter "numFeet and numInches" accepts an integer value in the main method and inside the method, it will print its value by a single and double quote.
Answer:
False
Explanation:
namespaces can be nested. That is we can have a hierarchy of namespaces.
For examples suppose we have a namespace top. Within this we have another namespace first. At the next level we have a namespace called second. Then we have a class MyClass as a member of this namespace second. Then the complete description of the class will be as follows:
top::first::second::MyClass
Answer:
Transaction Manger
Explanation:
Transaction Manger
Transaction Manager is responsible for transaction between resources that are available. It works as interface to support remote access form other systems in Data base management system.