Description: programming languages Online Quiz - 196 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Can we connect to 2 different types of database through the same report
Group of components that provides the data to the report
Which component has onRead method
Which of the following file formats does the reporting system supports
Which of the following file contains the source code of the design?
Which application is used for system and network administrators to manage and control the Actuate report servers
class C{ static int s; public static void main(String a[]){ C obj=new C(); obj.m1(); System.out.println(s); } void m1(); { int x=1; m2(x); System.out.println(x+""); } void m2(int x){ x=x*2; s=x; }}
class C { public static void main (String[] a1) { System.out.print(a1[1] + a1[2] + a1[3]); }} What is the result of attempting to compile and run the program? java command A B C
class C{ int i; public static void main (String[] args) { int i; //1 private int a = 1; //2 protected int b = 1; //3 public int c = 1; //4 System.out.println(a+b+c); //5 }}
Setting the following properties for object in ASP.NET results in Response.Buffer = True Response.ExpiresAbsolute = Now().Subtract(New TimeSpan(1, 0, 0, 0)) Response.Expires = 0 Response.CacheControl = "no-cache"
Setting the following properties for object in ASP.NET results in Response.Buffer = True Response.ExpiresAbsolute = Now().Subtract(New TimeSpan(1, 0, 0, 0)) Response.Expires = 0 Response.CacheControl = "no-cache"
Class C { public static void main(String[] args) { int[]a1[]=new int[3][3]; //3 int a2[4]={3,4,5,6}; //4 int a2[5]; //5 }} What is the result of attempting to compile and run the program ?.
What is the meaning of ResultSet.TYPE_SCROLL_INSENSITIVE
What is the meaning of ResultSet.TYPE_SCROLL_INSENSITIVE
What is, in terms of JDBC, a DataSource?
How do you know in your Java program that a SQL warning is generated as a result of executing a SQL statement in the database?
How can you execute DML statements in the database?
How can you retrieve information from a ResultSet?
Which type of driver converts JDBC calls into the network protocol used by the database management system directly?
Which type of driver provides JDBC access via one or more ODBC drivers?