Answer:
Option d (Auto Size) is the correct answer.
Explanation:
In a C# programming language, when a user needs to create a Windows Forms Label, then he needs to specify the property of label that how the label will look like and where the label fits and what is the size of that label. Following are the property which has a different meaning and a user need to specify when he creates a label--
- Fit states that the label to fix in the size.
- Text align states that the item of the toolbar is fixed in the center.
- The Middle center states that the item is fixed in the middle.
- Auto Size helps that the size of the control can be automatically resized.
The above question asked about that property which is used to automatically resize the control. So the answer is Auto size which is described above. Hence Option d is the correct answer while the other is not because--
- Option a state about 'Fit' property which is used to fix the label size.
- Option b states about 'Text align' property which is used to fix items of the toolbar in the center.
- Option c states about 'Middle center' property which is used to fix the item in the middle.
Answer:
Relational query language is the language that is used in the queries of the relational databases that has rows and columns in table. The user or client presents a request for gaining the information from the database. The relationships in the database are defined in numerous ways which creates the query.
This language can be procedural form or non-procedural form.The operations performed by this language are communication with the relational database, analyzing the relationships between the entities of database,splitting the request from client and then execution of that request is done by database management system(DBMS), etc.
Answer:
A. Motherboard has failed.
C. Processor has gone bad or is not seated properly.
Explanation:
The computer system is a digital or electronic device, which comprises of an input device, output device, memory and storage device and a processor, all controlled by a software interface known as the operating system.
The hardware and software components are all integrated on a printed board known as a motherboard.
When the motherboard is faulty, the system looses it functionality and the screen stays off but the power supply indicator light stays on. This is also the same for the processor.
Answer:
The JavaScript statement is
var str1 = "Information Technology";
var result = str1.toUpperCase();
Explanation:
JavaScript is used to validate the client side it means it provide the client side validation.
Following are the function of JavaScript that converted the string into uppercase.
function val()
{
var str1 = "Information Technology ";
var result = str1.toUpperCase();
}
The toUpperCase() function convert the string into uppercase in JavaScript
OUTPUT
INFORMATION TECHNOLOGY