Answer:
e)
J
Explanation:
= Magnitude of electric field = 5 V/m
= Area of window = 1.5 m²
= speed of electromagnetic wave = 3 x 10⁸ m/s
= time interval = 1 h = 3600 sec
radiation energy is given as


J
red goes to red, black goes to white, yellow goes to green, blue goes to blue.
Answer:
B and B
Explanation:
Question 1:
The distance is a unit of length, such as miles, meters, kilometers
The correct answer for this question would be 8m
Question 2:
Speed has a unit of length per unit of time.
The correct answer for this would be meters per second
-Chetan K
Answer:
a person appears at a specified time and place and gives sworn testimony
Explanation:
Hope this helps
Answer:
True
Explanation:
If there's no preference over the string case (upper case or lower case), one can convert both strings to upper case or to lowercase and then compare the converted strings to test if they're equal or not.
An Illustration is
string a = "Boy"
string b = 'bOy"
if(a.ToUpper() == b.ToUpper() || a.ToLower() == b.ToLower())
{
Print "Equal Strings"
}
else
{
Print "Strings are not equal";
}
The above will first convert both strings and then compare.
Since they are the same (after conversion), the statement "Equal Strings" will be printed, without the quotes