Answer:
<h2>c) Date : Date</h2>
Explanation:
A type of attribute of data is called data type in computer science, data types tells the interpreter how a person wants to use the data. The basic data types are supported by most of the programming languages, the basic data types are Integers, float, characters, strings, point numbers and arrays. The terminology may differ from one language to other.
Answer:
hope you like it
Explanation:
Two types of power supplies exist, DC-DC and AC-DC. DC-DC power supplies allow you to plug in electrical devices into car outlets or similar sources that supply direct current, or DC, power. These power supplies are not the most commonly used, though.
Classification of Power Supply and Its Different Types
OUTPUT = DC OUTPUT = AC
INPUT = AC Wall wart Bench power supplies Battery charger Isolation transformer Variable AC supply Frequency changer
INPUT = DC DC-DC converter Inverter Generator UPS
Answer:
(A) Always true
<em></em>
Explanation:
Given
Boolean variables x and y
Required
What is (x && y) || !(x && y)
Irrespective of what x or y is, the x && y is always true
Take for instance:
<em>x = true;</em>
<em>y = true;</em>
<em>x&&y will also be true because the values of x and y were not altered</em>
<em />
<em>And this is true for whatever boolean value x or y assume</em>
<em />
Having said that:
x&&y = true
So, the expression is analysed as follows:
(x && y) || !(x && y)
Substitute true for x&&y
(true) || !(true)
<em>!(true) = false</em>
So, the expression becomes:
true || false
|| represents the OR operator; and it returns true if at least one of the conditions is true.
By this:
true || false = true
<em>Option (A) Always true </em><em>answers the question.</em>