Answer:
The function definition for this question can be given as:
Function Definition:
bool isSenior(int x ) //function
{
//function body Or function definition.
//conditional statement
//if statement
if (x >=65)
{
return true; //return value true.
}
else //else statement
{
return false; //return value false.
}
}
Explanation:
In the above function definition firstly we define a function that isSenior. This function return Boolean value that is true or false in this function we pass the value as the parameter in that function we use the if statement that check the pass value is greater then equal to 65. If the condition is true it return true.else it will return false.
Answer:
64 K bytes = 65536 bytes
32 M bytes = 33554432 bytes
Explanation:
The question expect the number of bytes in binary instead of decimal. So this is important to understand that:
- 1K bytes = 1024 bytes (in binary)
Therefore,
- 64 Kb = 64 x 1024 = 65536 bytes
Using the similar calculation logic, we know
- 1M bytes = 1024 x 1024 = 1048576 bytes (in binary)
Therefore,
- 32 M bytes = 32 x 1048576 = 33554432 bytes
Answer: B)The redo log buffer becomes one-third full.
Explanation:Redo log buffer is the type of buffer file that is present for storing the changes that have been done in data. Database changes are the made goes in the records of the redo entries.the change of the buffer to the redo files is done when the buffer contains change records which are full till the one-third section, thus conversion takes place from the redo buffer to the redo files.
Answer:
this isn't a fair question...
you'll either get 2,3 or 4
not a nice question
Answer:
Check the explanation
Explanation:
Kindly check the attached image below to see the relation and the table names.