11.
What is the meaning of cipher in computer terminology?

14.
What is vertex coloring of a graph?

15.
Choose the correct statement for the following code segment?
bool check (int N)
{
    if( N & (1 << i) )
        return true;
    else
        return false;
}