CS411
|
If We Destroy Owner Window Then ___________
|
Only Owner Window Will Be Destroyed
|
Only Its Owned Window Will Be Destroyed
|
Both Owner And Owned Window Will Be Destroyed
|
The Application Will Be Crashed
|
C
|
CS411
|
Static Variables Are Made On __________ Memory Location
|
Fixed
|
Stack
|
Pointer
|
Variables
|
A
|
CS411
|
We Want To Declare A Variable In A Function Such That Whenever The Function Is Called The Variable Is Not Reinitialized. The Storage Class Of The Variable Must Be
|
Auto
|
Static
|
Extern
|
All Of The Given Options
|
A
|
CS411
|
Rfc Stands For___________
|
Request For Comments
|
Request Of Connects
|
Reference For Connect
|
Request For Cancels
|
A
|
CS411
|
Char (*Ptrstring)[4][2]; How Many Bytes Will Be Skipped By The Statement Ptrstring += 2?
|
1
|
4
|
8
|
16
|
C
|
CS411
|
Consider The Following Statements Written In A Dll: Declspec (Dllexport) Intfactorial(Int); Int Average(Int Int); Which Of The Following Statements Is True About The Above Statements?
|
Factorial() And Average() Are 2 Public Functions Of The Dll
|
Average() Is The Only Public Functions Of The Dll
|
Factorial()Is The Only Public Functions Of The Dll
|
This Dll Does Not Have Any Public Functions
|
C
|
CS411
|
We Want To Declare A Variable In A Function Such That Whenever The Function Is Called The Variable Is Not Reinitialized. The Storage Class Of The Variable Must Be
|
Static
|
Auto
|
Extern
|
All Of The Given Options
|
C
|
CS411
|
If Bind Function Fails Then What Kind Of Error It Will Return
|
Socket_Error
|
Socket_Failed
|
Socket_Undefine
|
None Of The Given
|
A
|
CS411
|
The Translates The Virtual Address To Physical Address
|
Operating System
|
Process
|
Processor
|
Virtual System
|
A
|
CS411
|
What Is A Function Pointer?
|
A Pointer That Passes As An Argument To The Function
|
A Pointer That Is Declared Inside The Function
|
A Pointer That Points To The Starting Address Of The Function
|
A Pointer That Takes Return Value Of Some Other Function
|
C
|
CS411
|
If We Destroy Owner Window Then __________
|
Only Owner Window Will Be Destroyed
|
Only Its Owned Window Will Be Destroyed
|
Both Owner And Owned Window Will Be Destroyed
|
The Application Will Be Crashed
|
C
|
CS411
|
Which Function We Use To Register Windows Classes In Window?
|
Registerclass();
|
Registersclass();
|
Registerwin();
|
Winreg();
|
A
|
CS411
|
To Maximize The Flexibility Of The Process’S Memory Management System Can Moves Pages Of Physical Memory To And From A Paging File On The Disk
|
True
|
False
|
Na
|
Na
|
A
|
CS411
|
When A Menu Item Is Clicked __________ Message Is Sent
|
Wm_Menuitemclicked
|
Wm_Menuclicked
|
Wm_Command
|
Wm_Paint
|
C
|
CS411
|
Preprocessor Directive Starts With ___________ Symbol
|
#
|
&
|
*
|
%
|
A
|
CS411
|
The Basic Building Block For Displaying Information In The “Microsoft Windows” Graphical Environment Is __________
|
Messeage Queue
|
Winmain
|
Message Loop
|
Window
|
D
|
CS411
|
Which Message Function Determined Where To Send Message
|
Dispatchmessage
|
Messagedispatch
|
Getmessage
|
None Of The Given
|
D
|
CS411
|
Double *Ptr Is Pointer Variable Which Stores Double Type Address
|
True
|
False
|
Na
|
Na
|
A
|
CS411
|
Char (*Ptrstring)[4][2]; How Many Bytes Will Be Skipped By The Statement Ptrstring += 2?
|
2
|
4
|
6
|
8
|
D
|
CS411
|
How Many Bytes Will Be Allocated To Abc; Union Person{ Char Name[30]; Int Age; Float Height; }; Void Main(){ Person Abc; }
|
1
|
2
|
3
|
4
|
D
|