Tag: programming languages

Questions Related to programming languages

Multiple choice technology programming languages
  1. In the BeginPrint event, set the HasMorePages property of the PrintEventArgs object to True.

  2. In the EndPrint event, set the HasMorePages property of the PrintEventArgs object to True.

  3. In the PrintPage event, set the HasMorePages property of the PrintPageEventArgs object to True.

  4. In the QueryPageSettings event, set the HasMorePages property of the QueryPageSettingEventArgs object to True.

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology programming languages
  1. to use the Windows user logon when connection to the TestKing1 database.

  2. to use the SQL Server used login when connection to the TestKing1 database.

  3. to use the same application logon ID and password for every connection to the TestKing1 database.

  4. to use the guest login ID and password for every connection to the TestKing1 database.

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology programming languages
  1. Set the RightToLeft property of each control on the form to Yes.

  2. Set the RightToLeft property of the form to Yes.

  3. Set the Language property of the form to the appropriate language.

  4. Set the Localizable property of the form to True.

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology programming languages
  1. Modify the machine configuration file on your client computers.

  2. Modify the application configuration file for Customers.

  3. Modify the Publisher Policy file containing a reference to Customers.

  4. Modify the reference patch for Customers.

Reveal answer Fill a bubble to check yourself
C Correct answer
Multiple choice technology programming languages
  1. Call the Finalize method of the SqlConnection object.

  2. Call the Dispose method of the SqlConnection object.

  3. Set the SqlConnection object equal to Nothing.

  4. Set the SqlConnection object equal to “”.

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology programming languages
  1. Use classes in the System.Data.OleDb namespace.

  2. Use classes in the System.Data.SqlClient namespace.

  3. Use remoting to connect to the SQL Server computer.

  4. Use interoperability to include legacy COM-based data access components.

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology programming languages
  1. CAB project.

  2. merge module project.

  3. setup project.

  4. Web setup project.

Reveal answer Fill a bubble to check yourself
B Correct answer
Multiple choice technology programming languages
  1. ALTER TABLE students ADD PRIMARY KEY student_id;

  2. ALTER TABLE students ADD CONSTRAINT PRIMARY KEY(student_id);

  3. ALTER TABLE students ADD CONSTRAINT stud_id_pk PRIMARY KEY student_id;

  4. ALTER TABLE students ADD CONSTRAINT stud_id_pk PRIMARY KEY (student_id);

  5. ALTER TABLE Students MODIFY CONSTRAINT stud_id_pk PRIMARY KEY (student_id);

Reveal answer Fill a bubble to check yourself
D Correct answer