programming languages Online Quiz - 57
Description: programming languages Online Quiz - 57 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which is not a collection type in VB.Net
Which of the following are the valid method of command object
How do you achieve interface implementation in VB.NET?
..... table will remove all the rows and data in a table but table structure is not removed whereas in ..... table the entire table is removed and moved to recycle bin.
Spring does not support which of the ORM framework?
Which of the following is the commonly used command for debugging?
How do you set the keywords SFLSIZ and SFLPAG if you want the subfile to dynamically expand?
What is the CLP command to access a Query/400?
How can you identify End of file in CLP program?
How many primary files allowed in a program?
Where can you specify an indicator in LOKUP operation?
What is the use of UNIQUE keyword?
UDATE supports two-digit year i.e in the form MMDDYYYY and system date supports four digit year i.e in the form MMDDYY.
To extract the information from the specified string the command used is %SST.
CPYSPLF copies the spooled file to the data base file.
JVM is vendor dependent
final and static access specifiers can be used for all kinds of variables
Variables declared inside interface can be..?
public enum days{MON,TUE,WED,THU} String s=null; switch(days.TUE){ case MON:s+="MON"; break; case TUE:s+="TUE"; case WED:s+="WED"; break; default:break; } System.out.println(s);
- enum A{A} 2. class E2{ 3. enum B{B} 4. void C(){ 5. enum D{D} 6. } 7. } which statements are true?(Choose all that apply.)