Answer:
yes i have 2 huge bins of it
Explanation:
Answer:
(b) 7.2 mJ
Explanation:
ENERGY STORED IN CAPACITOR: the energy is stored in capacitor in electric field
which can be calculated by expressions
E= c
=
=7200× J
= 7.2× J
=7.2 mJ
Brainstorming allows people to think freely without judge, or fear to share there answer. Basically encourages people to open up to what they believe.
Answer:
A
Explanation:
Due to ethanol's lower energy content, FFVs operating on E85 get roughly 15% to 27% fewer miles per gallon than when operating on regular gasoline, depending on the ethanol content.
Answer:
Program that removes all spaces from the given input
Explanation:
// An efficient Java program to remove all spaces
// from a string
class GFG
{
// Function to remove all spaces
// from a given string
static int removeSpaces(char []str)
{
// To keep track of non-space character count
int count = 0;
// Traverse the given string.
// If current character
// is not space, then place
// it at index 'count++'
for (int i = 0; i<str.length; i++)
if (str[i] != ' ')
str[count++] = str[i]; // here count is
// incremented
return count;
}
// Driver code
public static void main(String[] args)
{
char str[] = "g eeks for ge eeks ".toCharArray();
int i = removeSpaces(str);
System.out.println(String.valueOf(str).subSequence(0, i));
}
}