What is the empirical formula for the molecule?
A Molecule has been identified that contains three elements: carbon, hydrogen and oxygen. When the molecule is broken down, the mass percentages are:
C= 40.9%
H= 4.58%
O= 54.5%
Assume that Q= (1/3)L3 -10L2 -21L
represents short run production function in which only labor is variable input. Then
a) Find the number of labor employed where TPL is maximum.
b) Find the number of labor employed where APL is equal to MPL
c) Find the number of labor employed when APL is maximum
d) Find the number of labor employed when MPL is maximum
e) Find stages of production
An ant on a picnic table travels 40 cm east, 35 cm north, then 20 cm west. hat is the magnitude of the ant's displacement relative to its orginal position?
Solve the initial value problem
y"-3y'-10y=0, y'(0)=1, y'(0)=2
Write a program to take a String as input then display the words in one column, number of characters in each word in second column and the first letter of each word in third column with appropriate heading.
For example:
Enter a String
Hello world
Words Length First Letter
Hello 5 H
world 5 w
for(i=0;i<s.lastIndexOf(' ');i++) {
c = s.charAt(i);
if(c ==' ')
s1=s1+s.charAt(i+1)+" ";
} //Use this code for first letter
for(i=0;i<s.length();i++) {
c = s.charAt(i);
if (c != ' ')
n = n+c;
else {
System.out.println(n+...);
} //Use this code for display words and its number of characters
The percentage of the x-21 isotope is 87.99% what is the contribution to the weight average from the x-21 isotope which has a mass of 21.00 amu
What is the difference between discrete and continuous variables?
what mass of iron (ll) chloride is needed to produce 12.6 moles of sodium chloride
1. Consider the following data to answer the question below
What is the command to convert the above dictionary into a dataframe named ‘df_state’?
2. List 3 commands to display the columns of the above dataframe df_state.
3. Correlation between two variables X&Y is 0.85. Now, after adding the value 2 to all the values of X, the correlation co-efficient will be______
4. A) Read the given dataset “Tips.csv” as a dataframe “Data”. Give 3 commands to extract the columns in the following sequence - Time, TotalBill, Tips?
B) Read the given excel sheet ‘Tips1.xlsx’ as a dataframe ‘Data1’. What command should be given to merge the two data frames ‘Data’ and ‘Data1’ by columns?
C) Copy the 'Data1' dataframe as 'Data2' (Data2 = Data1.copy()) and identify the command to find the total tips received across Day’s from the dataframe ‘Data2’?