programming languages Online Quiz - 26
Description: programming languages Online Quiz - 26 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
To use a button that can remain in a depressed position. We have to go for.
A)TStaticText descends from TWinControl and has a window handle. B)TLabel descends from TWinControl but does not have window handle.
How many state a TCheckbox can have?
Which of these is a valid path declaration?
Is Possible for Private Constructors in C#?
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:
Thread.yield() might cause the thread, to move to which state.
Invoking wait(), notify and notifyAll() methods without acquiring lock over an object will lead to:
Restarting a thread leads to:
Which of the following is not a static method of Thread class
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.