AdminLTELogo

MCQs List

Code Question Option A Option B Option C Option D Answer
CS411 Can Undefine Already Defined Preprocessor Directive Using #Undef #Unifdef #Unenddef None Of Given A
CS411 Cgi Stands For__________ Control Graphics Interface Common Graphics Interface Control Gateway Interface Common Gateway Interface C
CS411 Char (*Ptrstring)[4][2]; How Many Bytes Will Be Skipped By The Statement Ptrstring += 2? 2 4 6 8 D
CS411 Char (*Ptrstring)[4][2]; How Many Bytes Will Be Skipped By The Statement Ptrstring += 2? 1 4 8 16 C
CS411 Choose Command Line User Interface Ms Dos Ms Windows Ms Word Ms Visio A
CS411 Condition(S) In Which Wm_Paint Message May Be Sent Is/Are __________ A Dialog Box Is Maximized A Drop-Down Menu Disappears A Tool Tip Is Displayed And Then It Hides All Of The Given Options D
CS411 Consider The Following Code Snippet Char X = Z ; Float Y = 8; Char *Xptr = &X; Float *Yptr = &Y; Xptr++; //1 Yptr++; // 2 What Will Be The Address Of Xptr And Yptr Respectively After The Execution Of Statement 1 & 2 . Xptr = 105 Yptr = 102 106 106 107 107 107 106 None Of The Above D
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 Copy-On-Write Protection Is An Optimization That Allows Multiple Processes To Map Their Virtual Address Spaces Such That They Share A Physical Page Until One Of The Processes Modifies The Page. This Definition Belongs To Which Technique Lazy Evaluation Fast Evaluation Process Evaluation None Of The Given A
CS411 Device-Independed Value Represents __________ Virtual Key Code Key Code Readonly Code None Of Given A
CS411 Dlu Is___________ Handle Of A Dialog Handle Of A Modal Dialog Only Measure Of Distance Within A Dialog Box Name Of A Dialog A
CS411 Dos Boxes Are Also Called ___________ Main Window Consol Window Dialogue Box Arrays B
CS411 Double *Ptr Is Pointer Variable Which Stores Double Type Address True False Na Na A
CS411 For Tcp/Ip If The Port Is Specified As Zero The Service Provider Assigns A Unique Port To The Application With A Value Between __________ 1 And 1024 1 And 4000 1024 And 5000 <Not Sure> 1024 And 10240 C
CS411 For Whom System Registers The System Class Window Class Register Class Process None Of Given C
CS411 Gdi Is Implemented Through __________ Gdi.Dll Win32.Dll Gdi32.Dll Kernel.Dll C
CS411 Gdi Presents ___________ Device-Independent View Device-Dependent View Monitor-Dependent View None Of Given A
CS411 Gdi Stands For __________ Graphics Driver Interface Graphics Device Interface Graphics Direct Interface None Of The Given Options B
CS411 Graphical Device Interface Communicates Between Application And Driver Port Operating System Device Kernel C
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