programming languages Online Quiz - 315
Description: programming languages Online Quiz - 315 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
which characteristics can be set at design time using the Style property of dialog box?
What does SAS stands for?
If you are using the CFrameWnd::Create() method to create the window, you can specify the name of the menu using which argument.
If you miss RUN; what happens?
Which of the following resources is invalid?
A property page is a dialog box, that can be positioned in front of, or behind of, another.
A property page is designed from a dialog box and it has which of the following characteristics?
Which option is used to over ride the default nature of input statement, to read only required amount of data?
Memory is a type of Device Context.
Which is not one of the input statement format?
which is the Parent class of CWinApp?
When a user changes the content of one of the views, that view object calls which of the following function?
Which declaration of the main method below would allow a class to be started as a standalone program. Select the one correct answer.
What all gets printed when the following code is compiled and run? Select the three correct answers. public class xyz { public static void main(String args[]) { for(int i = 0; i < 2; i++) { for(int j = 2; j>= 0; j--) { if(i == j) break; System.out.println("i=" + i + " j="+j); } } } }
which view class allows usage of document - view architecture with tree, list, and rich edit controls?
The principal base class for the Microsoft Foundation Class Library is
Which of the following is true. Select the correct answers.
Which of the following are legal array declarations.
In Win32, an application is created by a call to
Which of the following statements related to Garbage Collection are correct.