programming languages Online Quiz - 26
Description: programming languages Online Quiz - 26 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
How many state a TCheckbox can have?
Which of these is a valid path declaration?
Which of these has a connected architecture?
What will be the values of x and y? { int x = 5; int y = 10; y += x++; System.Console.WriteLine("x:" + x.toString() + " y:" + y.toString()); }
You need to store state data that is accessible to any user who connects to your Web application. Which object should you use?
What is the default port number when we use https?
Which of these Validation Controls does not have Control to Validate property?
What is the default timeout for SqlCommand Object
Which of the following methods of Thread class cant be overridden by its subclass.
In java, threads acquire lock over:
Restarting a thread leads to:
Which of the following are not the methods of Thread class
Which of the following are public, static and final constants of Thread class
Is it compulsory for the subclass to declare the inherited synchronized method as synchronized while overriding it.