Tag: programming languages

Questions Related to programming languages

Which of these has a connected architecture?

  1. DataTable

  2. DataView

  3. DataRelation

  4. DataSet

  5. None of these


Correct Option: E

What is the default port number when we use https?

  1. 80

  2. 500

  3. 443

  4. 543


Correct Option: C

Which of these Validation Controls does not have Control to Validate property?

  1. RequiredFieldValidator

  2. CustomValidator

  3. RangeValidator

  4. ValidationSummary


Correct Option: D

Which of the following methods of Thread class cant be overridden by its subclass.

  1. suspend()

  2. destroy()

  3. resume()

  4. stop()


Correct Option: A,C,D

In java, threads acquire lock over:

  1. Heap memory

  2. classes

  3. objects

  4. variables


Correct Option: C

Thread.yield() might cause the thread, to move to which state.

  1. waiting state

  2. ready state

  3. sleeping state

  4. none


Correct Option: B