MCQs > IT & Programming > Symbian C++ > Consider the following lines of code. What does it signify if aForeground is set to FALSE?
void CMyViewAppUi::HandleForegroundEventL(TBool aForeground)
    {
    if (aForeground==TRUE)
        {
        iEikonEnv->InfoMsg(_L('Some Message here'));
        }
    else
        {
        iEikonEnv->InfoMsg(_L('Some Message here'));
        }
    }

Symbian C++ MCQs

Consider the following lines of code. What does it signify if aForeground is set to FALSE?
void CMyViewAppUi::HandleForegroundEventL(TBool aForeground)
    {
    if (aForeground==TRUE)
        {
        iEikonEnv->InfoMsg(_L("Some Message here"));
        }
    else
        {
        iEikonEnv->InfoMsg(_L("Some Message here"));
        }
    }

Answer

Correct Answer: The application has gone to the background.

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Symbian C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Symbian C++ Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it