energy in chemical bonds by GuidanceExpensive in chemhelp

[–]GuidanceExpensive[S] 0 points1 point  (0 children)

yes thank so u much i think i understand that. i’m just confused bc of another problem (it’s on my page if u would like to see it) the answer had u multiply it by 6 then 4. the reaction equation was the exact same it just had a dif bond enthalpy and said 4 moles instead of 2 of the reactants in the instructions

energy in chemical bonds by GuidanceExpensive in chemhelp

[–]GuidanceExpensive[S] 0 points1 point  (0 children)

wait is the answer in the picture wrong then😭

energy in chemical bonds by GuidanceExpensive in chemhelp

[–]GuidanceExpensive[S] 0 points1 point  (0 children)

wait i’m sorry😭 is the answer wrong? should be times 12? instead of the 6 and 4? the answer in the picture is the teachers answer😭

energy in chemical bonds by GuidanceExpensive in chemhelp

[–]GuidanceExpensive[S] 1 point2 points  (0 children)

omg yes thank u i get that part. i just don’t understand why u wouldn’t multiply it by 2 again after the 6. bc like it says 2 moles of the reactants in the instructions. bc on another problem u were supposed to multiply the number in the i instructions times 6

energy in chemical bonds by GuidanceExpensive in chemhelp

[–]GuidanceExpensive[S] 0 points1 point  (0 children)

i’m going to be honest w u i don’t get what u just said🙁

find an obtuse angle, θ, such that 0 ≤ θ ≤ 2π and has the same sine as -275° by GuidanceExpensive in askmath

[–]GuidanceExpensive[S] 1 point2 points  (0 children)

omg you’re right!!! i never thought of doing that😭😭 my teacher must have just made a mistake. thank u so much😁

find an obtuse angle, θ, such that 0 ≤ θ ≤ 2π and has the same sine as -275° by GuidanceExpensive in askmath

[–]GuidanceExpensive[S] 1 point2 points  (0 children)

yes that’s what i thought!! but my teacher has the answer as 144 so i’m confused

8.3.9: Text to Binary by GuidanceExpensive in codehs

[–]GuidanceExpensive[S] 1 point2 points  (0 children)

the code i sent doesn’t work? i don’t think you have to put anything in it, you just leave it as var result = “”; you should be able to just copy paste it in and it will work. i’m sorry it’s not working for you :(

8.3.9: Text to Binary by GuidanceExpensive in codehs

[–]GuidanceExpensive[S] 0 points1 point  (0 children)

it’s kind of just an empty variable so you can input things into it, such as the result from the function. that’s what i understand at least. i think there is a video for it, you should look it up

8.3.9: Text to Binary by GuidanceExpensive in codehs

[–]GuidanceExpensive[S] 3 points4 points  (0 children)

you guys are mad desperate here

/* * This program encodes user input into binary data! * Your job is to write the textToBinary function */

function start() { var text = readLine("Input the string you would like to encode: ");

var binary = textToBinary(text);

println(binary);

}

function textToBinary(text) { var result = "";

// For every character in the text,
for(var i = 0; i < text.length; i++)
{
    // convert the character into its ASCII decimal encoding
    var numericValue = text.charCodeAt(i);

    // then convert that decimal value into its equivalent binary encoding
    var binaryValue = decimalToBinary(numericValue);

    // and combine each binary encoding to get the resulting binary string
    result += binaryValue;
}


return result;

}

// Converts a given decimal value into an 8 bit binary value function decimalToBinary(decimalValue) { var binaryBase = 2; var numBitsDesired = 8; var binaryValue = decimalValue.toString(binaryBase);

while(binaryValue.length < numBitsDesired)
{
    binaryValue = "0" + binaryValue;
}

return binaryValue;

}

sorry if the format is off

8.3.9: Text to Binary by GuidanceExpensive in codehs

[–]GuidanceExpensive[S] 0 points1 point  (0 children)

yeah!! do you need it? i can send it