Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Toggle Code View
- <html lang="" dir="ltr" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>
- <title>CHAPTER - 4 - HOMEWORK</title>
- <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
- <meta content="no" http-equiv="imagetoolbar">
- <link media="screen" type="text/css" href="http://img.webassign.net/wastatic/aggregate.css?20" rel="stylesheet">
- <link media="screen" type="text/css" href="http://img.webassign.net/wastatic/themes/css/blue.css?20" rel="stylesheet">
- <link media="print" type="text/css" href="http://img.webassign.net/wastatic/common/css/print.css?20" rel="stylesheet">
- <link media="screen" type="text/css" href="http://img.webassign.net/wastatic/common/css/purchasing.css?20" rel="stylesheet">
- <link media="screen" type="text/css" href="http://img.webassign.net/wastatic/common/css/tips.css?20" rel="stylesheet">
- <link media="all" type="text/css" href="http://img.webassign.net/wastatic/mathpad/css/pad.css?20" rel="stylesheet">
- <style type="text/css">
- .submit_button {
- border: 1px solid #336699;
- background-color: #dae6ef;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 0.9em;
- text-decoration: underline;
- color: #0000cc;
- cursor: pointer;
- }
- .submit_all_button {
- border: 1px solid #336699;
- background-color: #dae6ef;
- font-family: Arial, Helvetica, sans-serif;
- text-decoration: underline;
- color: #0000cc;
- cursor: pointer;
- margin-right: 8px;
- }
- div.qcontainer {
- margin-left: 1%;
- margin-right: 1%;
- padding: 8px;
- }
- div.qheadcontainer {
- border: 1px solid #336699;
- padding: 4px;
- background-color: #dae6ef;
- margin-right: 3%;
- }
- div.qheaddetail {
- float: left;
- }
- div.qheadlinks {
- float: right;
- }
- div.allbuttons {
- border-top: 1px solid #336699;
- border-left: 1px solid #336699;
- border-right: 1px solid #336699;
- border-bottom: 3px solid #336699;
- padding: 6px;
- background-color: #dae6ef;
- margin-top: 4px;
- margin-left: 1%;
- margin-right: 1%;
- text-align: center;
- }
- div.qbuttons {
- padding: 8px;
- margin-left: 3%;
- margin-right: 3%;
- }
- div.qcontentcontainer {
- margin-left: 3%;
- margin-right: 3%;
- border-left: 1px solid #cccccc;
- border-right: 1px solid #cccccc;
- border-bottom: 1px solid #cccccc;
- padding: 0px 4px 4px 4px;
- }
- div.hiddenContent {
- display: none;
- }
- div.inlineContent {
- display: inline;
- }
- div.qdetails {
- border-left: 1px solid #336699;
- border-right: 1px solid #336699;
- border-bottom: 1px solid #336699;
- }
- .correctBord {
- border:1px solid #006600;
- padding:2px;
- width:200px;
- margin:0 0 0 2em;
- }
- .incorrectBord {
- padding:2px;
- width:200px;
- border:1px solid #dd0000;
- margin:0 0 0 2em;
- }
- .multBox {
- margin:0 0 0 2em;
- }
- </style>
- <script src="/wastatic/lib/js/mootools-1.2.2.js?20" type="text/javascript"></script>
- <script src="/wastatic/lib/js/mootools-1.2.2.2-more.js?20" type="text/javascript"></script>
- <script src="http://img.webassign.net/wastatic/aggregate.js?20" type="text/javascript"></script>
- <script src="http://img.webassign.net/wastatic/common/js/tips.js?20" type="text/javascript"></script>
- <script src="http://img.webassign.net/wastatic/common/js/pageTips.js?20" type="text/javascript"></script>
- <script src="http://img.webassign.net/wastatic/mathpad/js/mathPadClass.js?20" type="text/javascript"></script>
- <script type="text/javascript">
- //<![CDATA[
- function openWindow(comp,title,attr) {
- var newWindow = window.open(comp,title,attr);
- newWindow.focus();
- }
- var clicks = new Array();
- var bseconds = new Array();
- function click_link (structv) {
- if (clicks[structv]) {
- clicks[structv]++;
- } else {
- clicks[structv] = 1;
- }
- var allow_submit = 1;
- if (clicks[structv] > 1) {
- allow_submit = 0;
- var now_time = new Date();
- var now_seconds = now_time.getTime();
- var seconds_diff = (now_seconds - bseconds[structv]) / 1000;
- if (seconds_diff > 10.0) {
- allow_submit = 1;
- }
- }
- if (allow_submit) {
- var current_time = new Date();
- bseconds[structv] = current_time.getTime();
- document.forms[0].struct.value = structv;
- // If the password prompt is displayed then return early.
- if ( document.getElementById('prompt_for_pass') ) {
- var pass_prompt_display = document.getElementById('prompt_for_pass').style.display;
- if (pass_prompt_display == 'block') {
- return;
- }
- }
- document.forms[0].submit(this);
- }
- }
- function canAllowDefault (outerHTML) {
- var canAllowDefault = 0;
- // allow links to be opened via enter key or in textareas
- if (outerHTML.substr(0,2).toLowerCase() == '<a' ||
- outerHTML.substr(0,9).toLowerCase() == '<textarea') {
- canAllowDefault = 1;
- } else {
- var typeIndexStart = outerHTML.indexOf('type=');
- if (typeIndexStart > 0) {
- var typeIndexEnd = typeIndexStart + 5;
- //looking for type=submit
- var typeVal = outerHTML.substr(typeIndexEnd,6);
- if (typeVal == 'submit') {
- //user has pressed enter on a submit button, ok to
- //submit form
- canAllowDefault = 1;
- }
- }
- }
- return canAllowDefault;
- }
- function addEvents () {
- var f = document.getElementsByTagName('form');
- for (var i = 0; i < f.length; i++) {
- f[i].onkeypress = function(e){
- if (window.event) { // (ie)
- //was the enter key pressed?
- if (window.event.keyCode == 13) {
- //disable forms default action (submission)
- window.event.returnValue = false;
- //determine target--was enter button pressed on submit
- //element?
- var t = window.event.srcElement;
- //get html of element, look for a submit button...
- var outerHTML = t.outerHTML;
- var canAllow = canAllowDefault(outerHTML);
- if (canAllow) {
- window.event.returnValue = true;
- }
- }
- } else {
- if (e.keyCode == 13) { //enter key
- var canAllow = 0;
- var t = e.target;
- if (t.type) { //input element
- if ( t.type == 'submit' || t.type == 'textarea' ) {
- canAllow = 1;
- }
- } else {
- //string, check to see if it begins with
- //javascript or an <a tag
- var ts = new String(t);
- var jsindex = ts.indexOf('javascript');
- var aindex = ts.indexOf('<a');
- if ( jsindex >= 0 || aindex >= 0 ) {
- canAllow = 1;
- }
- }
- if (!canAllow) {
- e.preventDefault();
- }
- }
- }
- };
- }
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180248_0_0_1184065)) ) {
- var chemPadRB_1180248_0_0_1184065 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180248_0_0_1184065 = new pad({
- container: 'chemPad',
- id: 'RB_1180248_0_0_1184065',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "K_2SO_4 (aq) + BaBr_2 (aq) --> BaSO_4 (s) + 2KBr (aq)";
- chemPadRB_1180248_0_0_1184065.showResponse(input, true, 'RB_1180248_0_0_1184065', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180248_0_0_1184065.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180248_0_1_1184065)) ) {
- var chemPadRB_1180248_0_1_1184065 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180248_0_1_1184065 = new pad({
- container: 'chemPad',
- id: 'RB_1180248_0_1_1184065',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "SO_4^-2 (aq) + Ba^+2 (aq) --> BaSO_4 (s)";
- chemPadRB_1180248_0_1_1184065.showResponse(input, true, 'RB_1180248_0_1_1184065', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180248_0_1_1184065.showHint(hint, '#dd0000');
- });
- var bc_win;
- function open_bc_enhanced (asset_type, asset_url, external) {
- var attr = 'scrollbars=yes,resizable=yes';
- // figure out these sizes
- if (asset_type == 'read_it') {
- // Currently all read its are flash paper. If this ever changes a
- // better interface should be installed. iframe height=600 but
- // window has to have height of iframe + 46px for read it bar
- var attr = 'scrollbars=no,resizable=yes';
- attr += ',width=1000,height=646';
- }
- else if (asset_type == 'watch_it') {
- if (external) {
- attr += ',width=790,height=680';
- } else {
- attr += ',width=640,height=550';
- }
- }
- else if (asset_type == 'watch_it_player') {
- attr += ',width=640,height=750';
- }
- else if (asset_type == 'practice_it') {
- attr += ',width=735,height=615';
- }
- else if (asset_type == 'master_it') {
- attr += ',width=1000,height=670';
- }
- else if (asset_type == 'master_it_alt') {
- attr += ',width=760,height=620';
- }
- else if (asset_type == 'chat_about_it') {
- attr += ',width=1000,height=670';
- }
- if (asset_type == 'practice_it' || asset_type == 'master_it' || asset_type == 'master_it_alt' || external) {
- if (bc_win) {
- bc_win.close();
- }
- bc_win = window.open(asset_url,'BCEnhanced',attr);
- }
- else {
- var enhanced_url = 'http://img.webassign.net/v4cgi/extra/bc_enhanced/index.tpl?';
- enhanced_url += 'asset=' + asset_type;
- enhanced_url += '&asset_url=' + escape(asset_url);
- enhanced_url += '&UserPass=2cb13f32eb737e29050471a9799c6cbf';
- var open_new_window = true;
- if (bc_win) {
- // if chat_about_it isn't pointing directly to an external resource we can reuse window
- if (asset_type == 'chat_about_it' && asset_url.substring(0, 7) != 'http://') {
- if (!bc_win.closed) {
- if (bc_win.location.href != enhanced_url) {
- bc_win.location.href = enhanced_url;
- }
- open_new_window = false;
- }
- }
- else {
- bc_win.close();
- }
- }
- if (open_new_window) {
- bc_win = window.open(enhanced_url, 'BCEnhanced', attr);
- }
- }
- bc_win.focus();
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_0_1183934)) ) {
- var chemPadRB_1180117_1_0_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_0_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_0_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = " Al(OH)_3 (s) + 3HNO_3 (aq) --> Al(NO_3)_3 (aq) + 3H_2O (l)";
- chemPadRB_1180117_1_0_1183934.showResponse(input, true, 'RB_1180117_1_0_1183934', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180117_1_0_1183934.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_1_1183934)) ) {
- var chemPadRB_1180117_1_1_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_1_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_1_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "Al(OH)_3 (s) + 3H^+ (aq) --> Al^+3 (aq) + 3H_2O (l)";
- chemPadRB_1180117_1_1_1183934.showResponse(input, true, 'RB_1180117_1_1_1183934', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180117_1_1_1183934.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_2_1183934)) ) {
- var chemPadRB_1180117_1_2_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_2_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_2_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "FeS (s) + 2HClO_4 (aq) --> Fe(ClO_4)_2 (aq) + H_2S (g) ";
- chemPadRB_1180117_1_2_1183934.showResponse(input, true, 'RB_1180117_1_2_1183934', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180117_1_2_1183934.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_3_1183934)) ) {
- var chemPadRB_1180117_1_3_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_3_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_3_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "FeS (s) + 2H^+(aq) --> Fe^+2 (aq) + H_2S (g) ";
- chemPadRB_1180117_1_3_1183934.showResponse(input, true, 'RB_1180117_1_3_1183934', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180117_1_3_1183934.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_4_1183934)) ) {
- var chemPadRB_1180117_1_4_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_4_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_4_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: ''
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "NONE";
- chemPadRB_1180117_1_4_1183934.showResponse(input, true, 'RB_1180117_1_4_1183934', 'Your answer is correct.');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_5_1183934)) ) {
- var chemPadRB_1180117_1_5_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_5_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_5_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: ''
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "NONE";
- chemPadRB_1180117_1_5_1183934.showResponse(input, true, 'RB_1180117_1_5_1183934', 'Your answer is correct.');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_6_1183934)) ) {
- var chemPadRB_1180117_1_6_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_6_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_6_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "MgSO_4 (aq) + Ba(NO_3)_2 (aq) --> Mg(NO_3)_2 (aq) + BaSO_4 (s) ";
- chemPadRB_1180117_1_6_1183934.showResponse(input, true, 'RB_1180117_1_6_1183934', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180117_1_6_1183934.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180117_1_7_1183934)) ) {
- var chemPadRB_1180117_1_7_1183934 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180117_1_7_1183934 = new pad({
- container: 'chemPad',
- id: 'RB_1180117_1_7_1183934',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "SO_4^-2(aq) + Ba^+2(aq) --> BaSO_4 (s) ";
- chemPadRB_1180117_1_7_1183934.showResponse(input, true, 'RB_1180117_1_7_1183934', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180117_1_7_1183934.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180106_4_0_1183923)) ) {
- var chemPadRB_1180106_4_0_1183923 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180106_4_0_1183923 = new pad({
- container: 'chemPad',
- id: 'RB_1180106_4_0_1183923',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180106_4_1_1183923)) ) {
- var chemPadRB_1180106_4_1_1183923 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180106_4_1_1183923 = new pad({
- container: 'chemPad',
- id: 'RB_1180106_4_1_1183923',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180106_4_2_1183923)) ) {
- var chemPadRB_1180106_4_2_1183923 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180106_4_2_1183923 = new pad({
- container: 'chemPad',
- id: 'RB_1180106_4_2_1183923',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180106_4_3_1183923)) ) {
- var chemPadRB_1180106_4_3_1183923 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180106_4_3_1183923 = new pad({
- container: 'chemPad',
- id: 'RB_1180106_4_3_1183923',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180035_5_0_1183852)) ) {
- var chemPadRB_1180035_5_0_1183852 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180035_5_0_1183852 = new pad({
- container: 'chemPad',
- id: 'RB_1180035_5_0_1183852',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "K_2CO_3 (aq) + 2HBr (aq) --> 2KBr (aq) + CO_2 (g) + H_2O (l)";
- chemPadRB_1180035_5_0_1183852.showResponse(input, true, 'RB_1180035_5_0_1183852', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180035_5_0_1183852.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180035_5_1_1183852)) ) {
- var chemPadRB_1180035_5_1_1183852 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180035_5_1_1183852 = new pad({
- container: 'chemPad',
- id: 'RB_1180035_5_1_1183852',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "CO_3^-2 (aq) + 2H^+ (aq) --> CO_2 (g) + H_2O (l)";
- chemPadRB_1180035_5_1_1183852.showResponse(input, true, 'RB_1180035_5_1_1183852', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1180035_5_1_1183852.showHint(hint, '#dd0000');
- });
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180621_6_0_1184438)) ) {
- var chemPadRB_1180621_6_0_1184438 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180621_6_0_1184438 = new pad({
- container: 'chemPad',
- id: 'RB_1180621_6_0_1184438',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180621_6_1_1184438)) ) {
- var chemPadRB_1180621_6_1_1184438 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180621_6_1_1184438 = new pad({
- container: 'chemPad',
- id: 'RB_1180621_6_1_1184438',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180621_6_2_1184438)) ) {
- var chemPadRB_1180621_6_2_1184438 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180621_6_2_1184438 = new pad({
- container: 'chemPad',
- id: 'RB_1180621_6_2_1184438',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180621_6_3_1184438)) ) {
- var chemPadRB_1180621_6_3_1184438 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180621_6_3_1184438 = new pad({
- container: 'chemPad',
- id: 'RB_1180621_6_3_1184438',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_0_1184109)) ) {
- var chemPadRB_1180292_8_0_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_0_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_0_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_1_1184109)) ) {
- var chemPadRB_1180292_8_1_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_1_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_1_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_2_1184109)) ) {
- var chemPadRB_1180292_8_2_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_2_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_2_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_3_1184109)) ) {
- var chemPadRB_1180292_8_3_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_3_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_3_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_4_1184109)) ) {
- var chemPadRB_1180292_8_4_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_4_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_4_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_5_1184109)) ) {
- var chemPadRB_1180292_8_5_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_5_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_5_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_6_1184109)) ) {
- var chemPadRB_1180292_8_6_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_6_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_6_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn'
- });
- });
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1180292_8_7_1184109)) ) {
- var chemPadRB_1180292_8_7_1184109 = {};
- window.addEvent('domready', function() {
- chemPadRB_1180292_8_7_1184109 = new pad({
- container: 'chemPad',
- id: 'RB_1180292_8_7_1184109',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rxn,ion'
- });
- });
- }
- function SIGFIGS_HELP () {
- var openthis = 'http://www.webassign.net/sigfigs.html';
- var attr = 'location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes';
- attr += 'status=no,titlebar=no,width=680,height=480';
- window.open(openthis, 'SignificantFigures', attr);
- }
- // NOTE: this is mainly for tutorials where questions/display gets called twice
- // instead of trying to change that functionality which at the moment I don't
- // think is possible, I have a check to see if the emptpy chemPad object has
- // been created yet, so one chemPad object isn't reinitialized
- if( !($defined(chemPadRB_1188809_17_0_1192626)) ) {
- var chemPadRB_1188809_17_0_1192626 = {};
- window.addEvent('domready', function() {
- chemPadRB_1188809_17_0_1192626 = new pad({
- container: 'chemPad',
- id: 'RB_1188809_17_0_1192626',
- help: "javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');",
- mode: 'rnk'
- });
- });
- }
- window.addEvent('domready', function() {
- var input = "AlCl_{3} > HCl = KCl = NaCl > PbCl_{2}";
- chemPadRB_1188809_17_0_1192626.showResponse(input, true, 'RB_1188809_17_0_1192626', 'Your answer is correct.');
- });
- window.addEvent('domready', function() {
- var hint = "<font color=green>Correct.</font>";
- chemPadRB_1188809_17_0_1192626.showHint(hint, '#dd0000');
- });
- function reload () {
- document.forms[0].course.value = '100098,141054';
- document.forms[0].struct.value='BiCXAcBGDaDQElDsEcCHAODJCHBbDLCVCgCEDWDqCYAYEkArDkEHANBoEoEsAQBlDhBDCXDDBpAVCCEfCQEaDPCsEGESAPCCEiARDQAtCQEc'; document.forms[0].submit(this)
- }
- function getStyleObject(objectId) {
- // checkW3C DOM, then MSIE 4, then NN 4.
- if(document.getElementById && document.getElementById(objectId)) {
- return document.getElementById(objectId).style;
- }
- else if (document.all && document.all(objectId)) {
- return document.all(objectId).style;
- }
- else if (document.layers && document.layers[objectId]) {
- return
- document.layers[objectId];
- } else {
- return false;
- }
- }
- function getElementsByClass(node,searchClass,tag) {
- var classElements = new Array();
- var els = node.getElementsByTagName(tag); // use '*' for all elements
- var elsLen = els.length;
- var pattern = new RegExp(searchClass);
- for (i = 0, j = 0; i < elsLen; i++) {
- if ( pattern.test(els[i].className) ) {
- classElements[j] = els[i];
- j++;
- }
- }
- return classElements;
- }
- function changeNotesIcon(id) {
- getStyleObject('notes_link_' + id).background = 'url(/wastatic/common/img/report.png) no-repeat left';
- }
- function doDetail (id) {
- if (getStyleObject('detail_' + id).display == '') {
- getStyleObject('detail_' + id).display = 'block';
- getStyleObject('detail_link_' + id).background = 'url(/wastatic/common/img/minus_icon.png) no-repeat left';
- } else {
- getStyleObject('detail_' + id).display = '';
- getStyleObject('detail_link_' + id).background = 'url(/wastatic/common/img/plus_icon.png) no-repeat left';
- }
- // Turn on the box numbers.
- // They may be spans or divs depending on the question type.
- id++; // The id is zero-based; the question ids start at 1.
- var questionDiv = document.getElementById('question' + id);
- var boxSpans = getElementsByClass(questionDiv,'box_num','span');
- var boxDivs = getElementsByClass(questionDiv,'box_num','div');
- var num_boxSpans = boxSpans.length;
- var num_boxDivs = boxDivs.length;
- for ( i = 0; i < num_boxSpans; i++ ) {
- if ( boxSpans[i].style.display == 'none'
- || boxSpans[i].style.display == '' ) {
- boxSpans[i].style.display='inline';
- } else {
- boxSpans[i].style.display='none';
- }
- }
- for ( i = 0; i < num_boxDivs; i++ ) {
- if ( boxDivs[i].style.display == 'none' ||
- boxDivs[i].style.display == '' ) {
- boxDivs[i].style.display='inline';
- } else {
- boxDivs[i].style.display='none';
- }
- }
- // Turn on the box borders.
- var boxBorders = getElementsByClass(questionDiv,'unansweredBord','div');
- var num_boxBorders = boxBorders.length;
- for ( i = 0; i < num_boxBorders; i++ ) {
- if ( boxBorders[i].style.borderWidth == '0px 0px 0px 0px' ||
- boxBorders[i].style.borderWidth == '' ) {
- boxBorders[i].style.borderWidth='1px';
- } else {
- boxBorders[i].style.borderWidth='0px 0px 0px 0px';
- boxBorders[i].style.clear='both';
- }
- }
- }
- function roll(qCol, highlightcolor, decoration) {
- qCol = qCol + '$'; // Add an end of string anchor.
- var qTable = document.getElementById('assignmentDashBoardTable');
- var ths = qTable.getElementsByTagName('th');
- var qNum_re = /questionNumber/;
- for ( var i = 0; i < ths.length; i++) {
- if ( ths[i].className.match(qCol) ) {
- if ( ths[i].className.match(qNum_re) ) {
- ths[i].style.backgroundColor = highlightcolor;
- ths[i].style.textDecoration=decoration;
- }
- }
- }
- }
- function change_mark (input_box, value) {
- if( typeof input_box == 'string' ) {
- input_box = document.getElementById( input_box );
- }
- var new_val = escape(input_box.value);
- if (new_val != value) {
- var image_id = 'mark_' + input_box.id;
- var input_mark = document.getElementById(image_id);
- if ( input_mark == null ) return; // Nothing to change.
- var img = input_mark.src;
- var correct_mark_re = new RegExp('/wastatic/common/img/tick.png');
- var wrong_mark_re = new RegExp('/wastatic/common/img/cross.png');
- var caution_mark_re = new RegExp('/wastatic/common/img/calculator_error.png');
- // Change to the greyed out icon.
- if ( img.match(correct_mark_re) ) {
- input_mark.src = '/wastatic/common/img/tick_grey3.png';
- input_mark.alt = "Your answer was correct, but has changed from what was graded.";
- input_mark.title = "Your answer was correct, but has changed from what was graded.";
- }
- else if ( img.match(wrong_mark_re) ) {
- input_mark.src = '/wastatic/common/img/cross_grey3.png';
- input_mark.alt = "Your answer was incorrect, but has changed from what was graded.";
- input_mark.title = "Your answer was incorrect, but has changed from what was graded.";
- }
- else if ( img.match(caution_mark_re) ) {
- input_mark.src = '/wastatic/common/img/calculator_error.png';
- input_mark.alt = "Your answer received a caution mark, but has changed from what was graded.";
- input_mark.title = "Your answer received a caution mark, but has changed from what was graded.";
- }
- }
- }
- function mark_is_changed( input_box ) {
- if( typeof input_box == 'string' ) {
- input_box = document.getElementById( input_box );
- }
- var image_id = 'mark_' + input_box.id;
- var input_mark = document.getElementById(image_id);
- if ( input_mark == null ) return; // Nothing to change.
- if( input_mark.src.indexOf( '/wastatic/common/img/tick_grey3.png' ) != -1 || input_mark.src.indexOf( '/wastatic/common/img/cross_grey3.png' ) != -1 || input_mark.src.indexOf( '/wastatic/common/img/calculator_error.png' ) != -1 )
- return true;
- else
- return false;
- }
- function setYpos () {
- if( typeof( window.pageYOffset ) == 'number' ) {
- // Netscape
- x = window.pageXOffset;
- return window.pageYOffset;
- } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
- // DOM
- x = document.body.scrollLeft;
- return document.body.scrollTop;
- } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
- // IE6 standards compliant mode
- x = document.documentElement.scrollLeft;
- return document.documentElement.scrollTop;
- }
- }
- function submit_this (structv,set_ypos,sidv) {
- if (window.click_num) {
- window.click_num++;
- } else {
- window.click_num = 1;
- }
- var allow_submit = 1;
- if (window.click_num > 1) {
- allow_submit = 0;
- var now_time = new Date();
- var now_seconds = now_time.getTime();
- var seconds_diff = (now_seconds - begin_seconds) / 1000;
- if (seconds_diff > 10.0) {
- allow_submit = 1;
- }
- }
- if (allow_submit) {
- var current_time = new Date();
- begin_seconds = current_time.getTime();
- if (set_ypos) {
- if(document.forms[0].ypos) {
- document.forms[0].ypos.value = setYpos();
- } else {
- document.getElementById('ypos').value = setYpos();
- }
- }
- if(document.forms[0].course) {
- document.forms[0].course.value = '100098,141054';
- } else {
- document.getElementById('course').value = '100098,141054';
- }
- if(document.forms[0].sid) {
- document.forms[0].sid.value = sidv;
- } else {
- document.getElementById('sid').value = sidv;
- }
- if(document.forms[0].struct) {
- document.forms[0].struct.value = structv;
- } else {
- document.getElementById('struct').value = structv;
- }
- return true;
- }
- else {
- return false;
- }
- }
- function extra() {
- }
- function modal_submit(structv,set_ypos,sidv) {
- document.getElementById('course').value = '100098,141054';
- document.getElementById('sid').value = sidv;
- document.getElementById('struct').value = structv;
- document.forms[0].submit(this);
- }
- function noUncheck(obj) {
- obj.checked = 'checked';
- }
- //]]>
- </script>
- </head><body onload="addEvents()">
- <form autocomplete="off" enctype="x-www-form-urlencoded" action="http://www.webassign.net/[email protected]/[email protected]" method="post">
- <input type="hidden" id="action" value="" name="action">
- <input type="hidden" id="struct" value="" name="struct">
- <input type="hidden" value="CBDqCgBDEQCXEuBSDaEAEvDRDvCABBBvClBPDjCXCwAABiCmEGAPDnBjBwARAYDFEICsBKzZDgByDvDgCEEkBjBOAHAIEMCaElDPCFBuDkDD" id="savedStruct" name="savedStruct">
- <input type="hidden" id="UserPass" value="2cb13f32eb737e29050471a9799c6cbf" name="UserPass">
- <input type="hidden" id="course" value="100098,141054" name="course">
- <div id="webAssignShell">
- </div>
- <div id="webAssign">
- <div class="container" id="webAssignTop">
- <div class="container" id="topNav">
- <div style="width: 300px;" class="topFloatLeft container">
- <h1><!--WebAssign.net--> Web<strong>Assign</strong></h1>
- <p>Friday, June 18,
- 2010 12:20 PM CDT</p>
- </div>
- <div class="topFloatRight container">
- <h2>Logged in as
- </h2>
- </div>
- <div class="topFloatRight container">
- <a href="javascript:onClick=document.forms[0].action.value='logout';
- document.forms[0].submit(this);" class="logOut">
- Log out
- </a>
- </div>
- </div>
- <div class="container" id="studentNav">
- <div class="pageLeft container">
- <a href="javascript:click_link('EKBIBPBLDaDbBOBuEhCpDQAsAWBEDdEHBtDnBHAKEMBXBIByBhDtCxEMCPDhEWEHBsDrERBSAgAgCeBMDpAnBoDhAdAyBUCoCSClEKCMEn')">Home</a> |
- <a href="javascript:click_link('EaAKDFBmAcBaCuBMAbAUDxEODQDHAVEGEWCACtEBDvAwDkDmESDAAUEiDKDyEYBcBpApDDCtAtABCsEuEsAHEeEwBJCNAnEWBFCoDpDQAfEowWEBAkAbBLAGAv')">My Assignments</a> |
- <a href="javascript:click_link('DYDeAWBbBnDEBnEKDhDIEJAYAAAaEMBcERAAAsBdBJEVBEBgDTALCDBEBUDiEUAXAuEsAKDrvVAwDMCGBxAYCsAiEwCNBqEACTBsCQDIEEAbDC')">Grades</a> |
- <a href="javascript:click_link('EAwWCoDmEQEKDICKAlAGElCdDEDGECAYAlEiEKBODQAqBcEXAqDvDYBBAxCeBmCcDGAMCJEqDrAIBvDYErCDEKCODcBFCREOAOEiDWEpCcCvBvDR')">Communication</a> |
- <a href="javascript:click_link('BcEpAyBEBGBkEnBUApBvETBbDrAJEaDdDCBfEQBJBxCICoBsDwAhByCQDIBSBrCHEaDOBnDiAqAfEhAnCEBWBLBgAvwWEBEdBowWBqETEMAVBFDgEE')">Calendar</a>
- |
- <a style="background: url("/wastatic/common/img/faculty/ebook.gif") no-repeat scroll left center transparent; padding: 1px 0pt 1px 18px; cursor: pointer;" href="#" class="bLink">My eBooks</a>
- <div style="height: 170px; overflow: auto;" class="bContent w450|x5|y0">
- <p></p><div style="padding: 0pt;" class="yellowBox">
- <div class="yellowHeader">
- <h3 style="color: rgb(0, 0, 0);">My eBooks</h3>
- </div>
- <div style="margin: 0pt;" class="yellowContent content">
- <div class="container">
- <div style="margin: 4px 10px 0px;" class="textbookCover">
- <img src="/ebgam9/ebgam9_cover_sm.jpg">
- </div>
- <div style="float: left; background: url("/wastatic/common/img/faculty/ebook.gif") no-repeat scroll left top transparent; padding-left: 20px;">
- <p><a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68','68','on')" href=""><span style="font-style: italic;">General Chemistry</span> - 9e<br>Ebbing and Gammon</a></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="pageRight container">
- <a href="javascript:openWindow('https://www.webassign.net/v4cgi/notifications/settings.tpl?ui=student&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notifications','width=550,height=605')">Notifications</a> |
- <a href="javascript:onlick=openWindow('http://www.webassign.net/manual/student_guide/index.htm','Guide','width=937,height=623')">Guide</a>
- |
- <a href="javascript:onlick=openWindow('http://www.webassign.net/v4cgi/help/student.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','support','width=937,height=623,scrollbars=yes')">
- Help</a>
- |
- <a href="javascript:openWindow('https://www.webassign.net/v4cgi/options/students/personal.tpl?ui=student&UserPass=2cb13f32eb737e29050471a9799c6cbf','MyOptions','width=550,height=605,scrollbars=yes,resizable=yes')">My Options</a>
- </div>
- </div>
- <div class="studentNavBorder">
- </div>
- </div>
- <div class="middle">
- <!-- Begin page -->
- <div class="infoBox container">
- <div class="pageLeft container">
- <div class="bread">
- <ul class="crumbs">
- <li class="first">
- <a href="javascript:onClick=document.forms[0].course.value='100098,141054'; click_link('CDCCBoDRADEbExBlBYAtDLEiCMEtBABxzUBiDDCeELCkASEtDTDMDBAvADBABkDCDUCEvVvVBQCfDDBsBnBkBOEeCRBlCBDMBKEJEHDuBF')">Chemistry 1411, section 21086, Summer 1 2010</a>
- </li>
- <li><a href="javascript:onClick=document.forms[0].course.value='100098,141054';
- click_link('DtBeELCUDpEwEWCbwWClEDDhCHBVDwAwArCdCREMCCCfDPBmCuBUDAAgDgDrEtDaAACeEAATCIEpAJCsBnDHDWCKAhDdDkEdDUABBEEtCxAVEwEFAMCiDOClEU')">My Assignments</a></li>
- </ul>
- </div>
- <h1> CHAPTER - 4 - HOMEWORK (Homework)</h1>
- </div>
- <div class="pageRight container">
- <p>Evan DeFilippis</p>
- <p>Chemistry 1411, section 21086, Summer 1 2010</p>
- <p>Instructor: Michael Langohr</p>
- </div>
- </div>
- <div class="waBox container">
- <div class="top">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="pageLeft">
- <h4>
- <p><strong> Current Score :</strong> 80 / 100
- </p>
- </h4>
- </span>
- <span class="pageLeft dueDate">
- <p>
- <strong> Due : </strong>
- Monday, June 21, 2010
- 10:00 PM
- CDT
- </p>
- </span>
- <span class="pageRight displayType">
- <p><select onchange="document.forms[0].struct.value='DAAODvEfBOAfDLAPBqDvAGCfCTBqBXAvEWAEBtBuDMuUATCOEsEMCEBUBMCtCkvVDtCCDuBVAdCAAkEVDdCwCKBXESDRBMECDQBXEEDeEGEaDvAcEtDyDREWDkCwCNEsCBEPEOAeEyEe';document.forms[0].display_level.value='assignment';document.forms[0].submit(this)" id="display_type" name="display_type">
- <option value="select">Select</option>
- <option selected="" value="last_response">View Last Response</option>
- <option value="all_saved">View Saved Work</option></select>
- <input type="hidden" value="" id="display_level" name="display_level"></p>
- </span>
- <span class="pageRight">
- <p><a class="pop" href="javascript:openWindow('/v4cgi/student/assignment/subopts?struct=DeBWCoAwAcDwBPByEoDhCnCuBSCcBRAoAPCnBJBTAKDgDaENCHwWEmCcCeCvEMCWEOBYDSDkDcBxBFBEDFEkBWDMDmAACPAODFCEEWDJCYAC&UserPass=2cb13f32eb737e29050471a9799c6cbf', 'SubmissionOptions', 'location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=400,height=300');"> About this Assignment</a>
- </p>
- </span>
- </div>
- </div>
- <div class="crop content container">
- <div class="subTask container">
- <div class="container communicationLinks">
- <div class="pageLeft comm_link">
- <p> </p>
- </div>
- <div class="pageLeft comm_link">
- <p> </p>
- </div>
- </div>
- <div class="container assignmentQuestionNumberRow">
- <div class="pageLeft">
- <div class="label">
- Question
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- </div>
- <div class="pageLeft scrollable assignmentNumbers">
- <table id="assignmentDashBoardTable">
- <tbody><tr>
- <th align="center" onmouseout="roll('qCol1', '#dddddd', 'none');" onmouseover="roll('qCol1', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q1'" class="questionNumber qCol1" title="click to scroll to Question 1">
- 1
- </th>
- <th align="center" onmouseout="roll('qCol2', '#dddddd', 'none');" onmouseover="roll('qCol2', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q2'" class="questionNumber qCol2" title="click to scroll to Question 2">
- 2
- </th>
- <th align="center" onmouseout="roll('qCol3', '#dddddd', 'none');" onmouseover="roll('qCol3', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q3'" class="questionNumber qCol3" title="click to scroll to Question 3">
- 3
- </th>
- <th align="center" onmouseout="roll('qCol4', '#dddddd', 'none');" onmouseover="roll('qCol4', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q4'" class="questionNumber qCol4" title="click to scroll to Question 4">
- 4
- </th>
- <th align="center" onmouseout="roll('qCol5', '#dddddd', 'none');" onmouseover="roll('qCol5', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q5'" class="questionNumber qCol5" title="click to scroll to Question 5">
- 5
- </th>
- <th align="center" onmouseout="roll('qCol6', '#dddddd', 'none');" onmouseover="roll('qCol6', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q6'" class="questionNumber qCol6" title="click to scroll to Question 6">
- 6
- </th>
- <th align="center" onmouseout="roll('qCol7', '#dddddd', 'none');" onmouseover="roll('qCol7', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q7'" class="questionNumber qCol7" title="click to scroll to Question 7">
- 7
- </th>
- <th align="center" onmouseout="roll('qCol8', '#dddddd', 'none');" onmouseover="roll('qCol8', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q8'" class="questionNumber qCol8" title="click to scroll to Question 8">
- 8
- </th>
- <th align="center" onmouseout="roll('qCol9', '#dddddd', 'none');" onmouseover="roll('qCol9', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q9'" class="questionNumber qCol9" title="click to scroll to Question 9">
- 9
- </th>
- <th align="center" onmouseout="roll('qCol10', '#dddddd', 'none');" onmouseover="roll('qCol10', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q10'" class="questionNumber qCol10" title="click to scroll to Question 10">
- 10
- </th>
- <th align="center" onmouseout="roll('qCol11', '#dddddd', 'none');" onmouseover="roll('qCol11', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q11'" class="questionNumber qCol11" title="click to scroll to Question 11">
- 11
- </th>
- <th align="center" onmouseout="roll('qCol12', '#dddddd', 'none');" onmouseover="roll('qCol12', '#ffffcc', 'underline');" style="cursor: pointer; background-color: rgb(221, 221, 221); text-decoration: none;" onclick="document.location.href='#Q12'" class="questionNumber qCol12" title="click to scroll to Question 12">
- 12
- </th>
- <th align="center" onmouseout="roll('qCol13', '#dddddd', 'none');" onmouseover="roll('qCol13', '#ffffcc', 'underline');" style="cursor: pointer; background-color: rgb(221, 221, 221); text-decoration: none;" onclick="document.location.href='#Q13'" class="questionNumber qCol13" title="click to scroll to Question 13">
- 13
- </th>
- <th align="center" onmouseout="roll('qCol14', '#dddddd', 'none');" onmouseover="roll('qCol14', '#ffffcc', 'underline');" style="cursor: pointer; background-color: rgb(221, 221, 221); text-decoration: none;" onclick="document.location.href='#Q14'" class="questionNumber qCol14" title="click to scroll to Question 14">
- 14
- </th>
- <th align="center" onmouseout="roll('qCol15', '#dddddd', 'none');" onmouseover="roll('qCol15', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q15'" class="questionNumber qCol15" title="click to scroll to Question 15">
- 15
- </th>
- <th align="center" onmouseout="roll('qCol16', '#dddddd', 'none');" onmouseover="roll('qCol16', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q16'" class="questionNumber qCol16" title="click to scroll to Question 16">
- 16
- </th>
- <th align="center" onmouseout="roll('qCol17', '#dddddd', 'none');" onmouseover="roll('qCol17', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q17'" class="questionNumber qCol17" title="click to scroll to Question 17">
- 17
- </th>
- <th align="center" onmouseout="roll('qCol18', '#dddddd', 'none');" onmouseover="roll('qCol18', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q18'" class="questionNumber qCol18" title="click to scroll to Question 18">
- 18
- </th>
- <th align="center" onmouseout="roll('qCol19', '#dddddd', 'none');" onmouseover="roll('qCol19', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q19'" class="questionNumber qCol19" title="click to scroll to Question 19">
- 19
- </th>
- <th align="center" onmouseout="roll('qCol20', '#dddddd', 'none');" onmouseover="roll('qCol20', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q20'" class="questionNumber qCol20" title="click to scroll to Question 20">
- 20
- </th>
- </tr>
- <tr>
- <td align="center" onmouseout="roll('qCol1', '#dddddd', 'none');" onmouseover="roll('qCol1', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q1'" class="questionPoints allPartsCorrect qCol1" title="click to scroll to Question 1">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol2', '#dddddd', 'none');" onmouseover="roll('qCol2', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q2'" class="questionPoints allPartsCorrect qCol2" title="click to scroll to Question 2">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol3', '#dddddd', 'none');" onmouseover="roll('qCol3', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q3'" class="questionPoints allPartsCorrect qCol3" title="click to scroll to Question 3">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol4', '#dddddd', 'none');" onmouseover="roll('qCol4', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q4'" class="questionPoints allPartsCorrect qCol4" title="click to scroll to Question 4">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol5', '#dddddd', 'none');" onmouseover="roll('qCol5', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q5'" class="questionPoints partsLeft qCol5" title="click to scroll to Question 5">
- 0/5
- </td>
- <td align="center" onmouseout="roll('qCol6', '#dddddd', 'none');" onmouseover="roll('qCol6', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q6'" class="questionPoints allPartsCorrect qCol6" title="click to scroll to Question 6">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol7', '#dddddd', 'none');" onmouseover="roll('qCol7', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q7'" class="questionPoints partsLeft qCol7" title="click to scroll to Question 7">
- 0/5
- </td>
- <td align="center" onmouseout="roll('qCol8', '#dddddd', 'none');" onmouseover="roll('qCol8', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q8'" class="questionPoints allPartsCorrect qCol8" title="click to scroll to Question 8">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol9', '#dddddd', 'none');" onmouseover="roll('qCol9', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q9'" class="questionPoints partsLeft qCol9" title="click to scroll to Question 9">
- 0/5
- </td>
- <td align="center" onmouseout="roll('qCol10', '#dddddd', 'none');" onmouseover="roll('qCol10', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q10'" class="questionPoints allPartsCorrect qCol10" title="click to scroll to Question 10">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol11', '#dddddd', 'none');" onmouseover="roll('qCol11', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q11'" class="questionPoints allPartsCorrect qCol11" title="click to scroll to Question 11">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol12', '#dddddd', 'none');" onmouseover="roll('qCol12', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q12'" class="questionPoints allPartsCorrect qCol12" title="click to scroll to Question 12">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol13', '#dddddd', 'none');" onmouseover="roll('qCol13', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q13'" class="questionPoints allPartsCorrect qCol13" title="click to scroll to Question 13">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol14', '#dddddd', 'none');" onmouseover="roll('qCol14', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q14'" class="questionPoints allPartsCorrect qCol14" title="click to scroll to Question 14">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol15', '#dddddd', 'none');" onmouseover="roll('qCol15', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q15'" class="questionPoints allPartsCorrect qCol15" title="click to scroll to Question 15">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol16', '#dddddd', 'none');" onmouseover="roll('qCol16', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q16'" class="questionPoints allPartsCorrect qCol16" title="click to scroll to Question 16">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol17', '#dddddd', 'none');" onmouseover="roll('qCol17', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q17'" class="questionPoints allPartsCorrect qCol17" title="click to scroll to Question 17">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol18', '#dddddd', 'none');" onmouseover="roll('qCol18', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q18'" class="questionPoints allPartsCorrect qCol18" title="click to scroll to Question 18">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol19', '#dddddd', 'none');" onmouseover="roll('qCol19', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q19'" class="questionPoints allPartsCorrect qCol19" title="click to scroll to Question 19">
- <strong>
- 5
- </strong>
- </td>
- <td align="center" onmouseout="roll('qCol20', '#dddddd', 'none');" onmouseover="roll('qCol20', '#ffffcc', 'underline');" style="cursor: pointer;" onclick="document.location.href='#Q20'" class="questionPoints partsLeft qCol20" title="click to scroll to Question 20">
- 0/5
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 80/100 (80.0%)
- </strong>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- </div>
- <input type="hidden" value="EhAPAFyYDvEJEvAhCDEdAeBGAJAeCaAXBBBdCeAMDrExArEQEDAaAGDSDiAQDbAFAQClAtBcDUDQAQCCDBEpDLBLAtEdCNCvEHCKDSEJBBDm" id="assignmentSummary" name="assignmentSummary">
- <input type="hidden" id="ypos" value="" name="ypos">
- <div class="waQBox container" id="question1">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">1.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('0')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_0">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CsADEwDWCpDcAdAWEIBWAXDeCyCODIEHDNBACaBECLEBCuzUAxDTEPDCBWAeBeBGEVyYDdASEdAtBvDgBbCAECBaEAyYEEDfCfCcDMBLEcDCBmAAApCWBNDTCoBnDkDXArAVAuAeCFAaETEFEVBdAlBjBGCOBHDbBJDACbAaCqAcAnEsCUBhAQAUCyBWCCCsAlCnATCgCaDj&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_0','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=0&struct=CLDqCICRCYDnzZAGBIDyBADuBgCoCpCbCoAXEWBsAHBNCEDjCeDcEaAkAwAjBaCfACDYBACsBfDYADAHETuUDWCvBCEbAMDkBhDxAmBsDRAuCiDcDYCYECCkCIDRBECNBqBnEnAkEuCIAqBGESBszUBLATCjBLByDMANDBCGEqBDBdAVEqAHEpCXCICODLEwBxAQBVAODmBR&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_0','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_0">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.GP.098.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_0">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2.50
- </td>
- <td align="center" class="partPoints">
- 2.5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 2/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q1"></a>
- Potassium sulfate solution reacts with barium bromide solution to produce a precipitate of barium sulfate and a solution of potassium bromide. Write the molecular equation for this reaction. Then write the corresponding net ionic equation. (Include states-of-matter under SATP conditions in your answer.
- Use the lowest possible coefficients.)
- <br>
- molecular equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180248_0_0_1184065" style="width: 442px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">K<sub>2</sub>SO<sub>4</sub> (<i>aq</i>) + BaBr<sub>2</sub> (<i>aq</i>) <span style="font-size: 13px;">→</span> BaSO<sub>4</sub> (<i>s</i>) + 2KBr (<i>aq</i>)</span>
- </div>
- <input type="text" value="K_2SO_4 (aq) + BaBr_2 (aq) --> BaSO_4 (s) + 2KBr (aq)" id="RB_1180248_0_0_1184065" name="RB_1180248_0_0_1184065" class="chemInput" style="width: 430px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- ionic equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180248_0_1_1184065" style="width: 355px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">SO<span class="ssc"><table style="font-size: 10px; text-align: left; border-collapse: collapse;"><tbody><tr><td style="padding: 0em 0.2em;"> 2-</td></tr><tr><td style="padding: 0pt;">4</td></tr></tbody></table></span> (<i>aq</i>) + Ba<sup>2+</sup> (<i>aq</i>) <span style="font-size: 13px;">→</span> BaSO<sub>4</sub> (<i>s</i>)</span>
- </div>
- <input type="text" value="SO_4^-2 (aq) + Ba^+2 (aq) --> BaSO_4 (s)" id="RB_1180248_0_1_1184065" name="RB_1180248_0_1_1184065" class="chemInput" style="width: 343px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=130','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2844.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('CeCPCNCcABDJAADXCkECAeETCeEEBuDpCCBfBpDRCqAYAxETCGBHAEEiCGCpzZCECYDIDSCdCqEJAmDkBOCmCcAWEuALEKAlEnBQBGBSExAmEiEQDFDdAKBhEjDNCNCbDuBtBiBnDUErDgCXBPACEPCyDJCfEeAFArBrDjDgBsDrABERBKDDCECfCEBHBbBuBdDoBiAbAM',true,'');" class="sButton" value="Submit New Answers To Question 1" name="Submit0" id="sub0">
- <input type="submit" onclick="return submit_this('DaDPCHBIzZBDvVAfAICKCHAOBoEEEkDACVCNDLDGEiAJATClBuDWBKBxBBDgCxDfDLBNyYBrAiBDDPCkECBFCQDoyYEYAVEVDACFDhBBECBYBeAbAQEAEaAxBlAKEIAMBoAnDQAFDjCvBHEVzZCfCIBQEMDwDfEMCjCJEDDaDOCDBCBwDWBWAnBfCADaEmERDIDh',true,'')" class="sButton" value="Save Work" name="Save0">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question2">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">2.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('1')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_1">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=ECAaAsDoCaEhEwCRAUAEDiEIBkAQEjBoAYAbAeEICjDyCQDgBpAYCDByBpEtDVDOCDBhzUEUELByELCRBvCTAEEtDtCPCtDxEeBrCuBlAOACCcCMCWCACJBqBwCAzUDmAYAHDRBVAXBXCPDjElCmErAEDKDhERDjBqBBERESBODFAeEyDOAoBMETESCODxBpDQEeDgAoBSDY&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_1','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=1&struct=DmAcAEBMEWAoEVDnCcDoByCwDrDFBACNALBEByDMEcANAdEEEYCIDtAaBdEGBmBCDiDPBiExEOCnDDBiAIAIDpDJAnCeEcEHEICcAwCQELEqErBDEeEXCPAwDgDOAYBlETBqCRCRCdAyEVEICnCAuUAiEqyYAuCsAFEQCnBhAPDIBgBLExBsDFBHBgECAkBEDGCvBgEqEsBD&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_1','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_1">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.GP.100.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_1">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- <th align="center" class="partNumber">
- 5
- </th>
- <th align="center" class="partNumber">
- 6
- </th>
- <th align="center" class="partNumber">
- 7
- </th>
- <th align="center" class="partNumber">
- 8
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.62
- </td>
- <td align="center" class="partPoints">
- 0.66
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 3/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 2/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q2"></a>
- Decide whether a reaction occurs for each of the following. If it does, write the balanced molecular equation. Then write the net ionic equation. (Include states-of-matter under SATP conditions in your answer.
- Use the lowest possible coefficients. If no reaction occurs, simply type "NONE" in the answer box.)
- <div class="indent">
- (a) Al(OH)<sub>3</sub> + HNO<sub>3</sub> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_0_1183934" style="width: 470px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview"> Al(OH)<sub>3</sub> (<i>s</i>) + 3HNO<sub>3</sub> (<i>aq</i>) <span style="font-size: 13px;">→</span> Al(NO<sub>3</sub>)<sub>3</sub> (<i>aq</i>) + 3H<sub>2</sub>O (<i>l</i>)</span>
- </div>
- <input type="text" value=" Al(OH)_3 (s) + 3HNO_3 (aq) --> Al(NO_3)_3 (aq) + 3H_2O (l)" id="RB_1180117_1_0_1183934" name="RB_1180117_1_0_1183934" class="chemInput" style="width: 458px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_1_1183934" style="width: 419px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">Al(OH)<sub>3</sub> (<i>s</i>) + 3H<sup>+</sup> (<i>aq</i>) <span style="font-size: 13px;">→</span> Al<sup>3+</sup> (<i>aq</i>) + 3H<sub>2</sub>O (<i>l</i>)</span>
- </div>
- <input type="text" value="Al(OH)_3 (s) + 3H^+ (aq) --> Al^+3 (aq) + 3H_2O (l)" id="RB_1180117_1_1_1183934" name="RB_1180117_1_1_1183934" class="chemInput" style="width: 407px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br><br>
- (b) FeS + HClO<sub>4</sub> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_2_1183934" style="width: 451px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">FeS (<i>s</i>) + 2HClO<sub>4</sub> (<i>aq</i>) <span style="font-size: 13px;">→</span> Fe(ClO<sub>4</sub>)<sub>2</sub> (<i>aq</i>) + H<sub>2</sub>S (<i>g</i>) </span>
- </div>
- <input type="text" value="FeS (s) + 2HClO_4 (aq) --> Fe(ClO_4)_2 (aq) + H_2S (g) " id="RB_1180117_1_2_1183934" name="RB_1180117_1_2_1183934" class="chemInput" style="width: 439px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_3_1183934" style="width: 394px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">FeS (<i>s</i>) + 2H<sup>+</sup>(<i>aq</i>) <span style="font-size: 13px;">→</span> Fe<sup>2+</sup> (<i>aq</i>) + H<sub>2</sub>S (<i>g</i>) </span>
- </div>
- <input type="text" value="FeS (s) + 2H^+(aq) --> Fe^+2 (aq) + H_2S (g) " id="RB_1180117_1_3_1183934" name="RB_1180117_1_3_1183934" class="chemInput" style="width: 382px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br><br>
- (c) CaCl<sub>2</sub> + NaNO<sub>3</sub> <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_4_1183934">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">NONE</span>
- </div>
- <input type="text" value="NONE" id="RB_1180117_1_4_1183934" name="RB_1180117_1_4_1183934" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_5_1183934">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">NONE</span>
- </div>
- <input type="text" value="NONE" id="RB_1180117_1_5_1183934" name="RB_1180117_1_5_1183934" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br><br>
- (d) MgSO<sub>4</sub> + Ba(NO<sub>3</sub>)<sub>2</sub> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_6_1183934" style="width: 511px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">MgSO<sub>4</sub> (<i>aq</i>) + Ba(NO<sub>3</sub>)<sub>2</sub> (<i>aq</i>) <span style="font-size: 13px;">→</span> Mg(NO<sub>3</sub>)<sub>2</sub> (<i>aq</i>) + BaSO<sub>4</sub> (<i>s</i>) </span>
- </div>
- <input type="text" value="MgSO_4 (aq) + Ba(NO_3)_2 (aq) --> Mg(NO_3)_2 (aq) + BaSO_4 (s) " id="RB_1180117_1_6_1183934" name="RB_1180117_1_6_1183934" class="chemInput" style="width: 499px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180117_1_7_1183934" style="width: 350px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">SO<span class="ssc"><table style="font-size: 10px; text-align: left; border-collapse: collapse;"><tbody><tr><td style="padding: 0em 0.2em;"> 2-</td></tr><tr><td style="padding: 0pt;">4</td></tr></tbody></table></span>(<i>aq</i>) + Ba<sup>2+</sup>(<i>aq</i>) <span style="font-size: 13px;">→</span> BaSO<sub>4</sub> (<i>s</i>) </span>
- </div>
- <input type="text" value="SO_4^-2(aq) + Ba^+2(aq) --> BaSO_4 (s) " id="RB_1180117_1_7_1183934" name="RB_1180117_1_7_1183934" class="chemInput" style="width: 338px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=134','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2845.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('BIBbDMEpDgBaAsCXCCDhEUCFENAbBKEgDiClCQBiAAAkDuCcBfBGAOCcDSEbDNDOCfBsCCDnBRCBBnCBASAXDoCHDyAhCbzUCmCDBEArCgEGAiCVBtDfEIBVDxAxCGCgETDGCHDcCwAdBLALDLEdEvCHAHEtEiEvCHBNEmDGBRCBBoBkDWDLCEEXCxvVDPBhACEnDhAFCo',true,'');" class="sButton" value="Submit New Answers To Question 2" name="Submit1" id="sub1">
- <input type="submit" onclick="return submit_this('EfBgBTBODVAqDxCwCGDbBJCcAnAlAlEjBvDCDkBkDIAcEuAyEICqEDBtCXAOBXEeCWCOCmCkCIBxDIELzZAqAPAtEhDLCWBsAcAjEWEGDUvVEwBKDOAlBUCLAoEiEjApDHAmCXEWBQETAYAGCpAnBnElAvCgBVDfCMDqBpCWABDDEWDYAUzUEKBbEHDKEECKDqEh',true,'')" class="sButton" value="Save Work" name="Save1">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question3">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">3.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('2')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_2">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=AGAXBvDuErCuCOCSEEDVCKDWDVEIDECvBBAeEgAOAxAOBMAqAFACDiDKBwDHEAEQDLDrCOEVDBErEDExCKBREwCqAhBIAxAouUErBjDOCLCLAWCWCQDyCNCSAKBlBNBmEhAvAnCIDeDbEVBtALDXAyAHDSEBAUAaBCCVCYEEAfEvEvAcAwBGDPDYBtDGCtDXAcEMBQCEED&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_2','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=2&struct=ETDAAqBSEVEqCyAICbEdDpBYAJDVEwBpEqCmDWAmCgEUDHCiClAOAvDbAbEjApDTBhDlEnCoCwDwCJCIDFEQAxAlDsBiEYBACTEtCxEUDpAqAhBJBrExAKCNEABXAPEBCqEmEGCvETAfAABUCcDnDFBWAmCxCnBIDnAjDJEGDhAPDBCYClDlCkBXCfDwDtEqBSCgCLEqEs&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_2','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_2">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.029.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_2">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2.5
- </td>
- <td align="center" class="partPoints">
- 2.5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q3"></a>
- Using solubility rules, predict the solubility in water for the following ionic compounds.
- <div class="indent">
- (a) <font color="red">AgI</font>
- <input type="hidden" value="mc" id="RC_821796_2_0_825613" name="RC_821796_2_0_825613"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 2.5/2.5" style="display: none;">1</div><span class="ms">
- <input type="radio" id="RC_821796_2_0_825613_0" value="0" name="RC_821796_2_0_825613"><label for="RC_821796_2_0_825613_0">soluble</label> </span><span class="ms">
- <input type="radio" id="RC_821796_2_0_825613_1" checked="checked" value="1" name="RC_821796_2_0_825613"><label for="RC_821796_2_0_825613_1">insoluble</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_821796_2_0_825613"></p></div></div> <br><br>
- (b) <font color="red">MgCO<sub>3</sub></font>
- <input type="hidden" value="mc" id="RC_821796_2_1_825613" name="RC_821796_2_1_825613"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 2.5/2.5" style="display: none;">2</div><span class="ms">
- <input type="radio" id="RC_821796_2_1_825613_0" value="0" name="RC_821796_2_1_825613"><label for="RC_821796_2_1_825613_0">soluble</label> </span><span class="ms">
- <input type="radio" id="RC_821796_2_1_825613_1" checked="checked" value="1" name="RC_821796_2_1_825613"><label for="RC_821796_2_1_825613_1">insoluble</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_821796_2_1_825613"></p></div></div>
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=134','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2844.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('EOCSAbCqCBCrAJEmwWENCXEODUCHDkDYDABvCgAOAmBuDpCMCtDIDrAsDyCQAIDpAjDYCpBADBDYDlESDrAhAEDxBeEXEJCHAhAyDQCXBlBSAaAmCDCpEgBsEyBKErECEiAdEVEfEiCYCXAnDmBNDjDhASDKAXBnAjARBJEqAcwWCtCcBcCazZAKAVAVAxAHCOAuBTEy',true,'');" class="sButton" value="Submit New Answers To Question 3" name="Submit2" id="sub2">
- <input type="submit" onclick="return submit_this('AcAUAuCgBwExCmAIBxDGCjBNCCEHDhAWDJByDHDcDACdDVEVESBCDYELBSDwEcACCQCDAaCbCMCNEABnAoAuASBRCeCoDNCRCkBJAREoETENDhEyDBAaCADdCHBrCKEJCFAhDiDYBVDyEnDQAtCuAQAyDmBlBtDDAuCxDaAwAEEXACBHEBAeCkAJBoDQAwEgAO',true,'')" class="sButton" value="Save Work" name="Save2">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=DOAfAJDFCkBtBtBHBFECDnDNDqEwCSBKDhAjETDkCJEqDkChExEJAaCABqDdAXDTETEYBgDFCPDVDcDNBuDTBECUBDAPDyAUCcBABGBfErCdDRDrEVAvEIADAEBtDKBOBsBEBOBKBjCVCXEPAmBkBaAGBXDdDIAGAPDsEiCnBaEBBUCrBTCFEqAvDWEyAcBAEOCbAWCbDlBXAQDjDWCbCLCvCCDDBlEPBgCrExChDRBhCoEW&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice2','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice2" id="Practice2">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question4">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">4.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('3')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_3">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CLBVEyAeCoENEIBvDPDXEUENAFCgDQBADdADDvCQDVAVCmCaDvCgDxCECkBGBODeDeEeBADHBnCgCgAJDwAOARArAJDCCgAeDyDECUCEAQBDDTBVBXDkErEXAVDoBwCbBlEiCTAXBMzZCHCCBbBJAhCHElCJDMCDCwEYBjCeBbAPCWBkDiBDCQCMEkEBEMEoAICLEtDbDm&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_3','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=3&struct=BrCmAuDCDGCRCTDsDjAHElCMAnBuEIDIDkCXAFAGDrAUAvCGEpuUBqEWAxBPClALAhCjEsAvDGACCRArDVDcArBxwWCTCEEXBLCOBREKEwCsEwAUCJwWEaEoCXELDMCFDAAPBhBSBsAIBYCuAUDPDdBlCiCnABALENBVDjDVBGAtCIAbAlBNDqBoEPEvAqDKBRADBNEuAk&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_3','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_3">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.031.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_3">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q4"></a>
- Using solubility rules, decide whether the following ionic solids are soluble or insoluble in water.
- <div class="indent">
- (a) <font color="red">Na<sub>2</sub>CO<sub>3</sub></font>
- <input type="hidden" value="mc" id="RC_821794_3_0_825611" name="RC_821794_3_0_825611"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">1</div><span class="ms">
- <input type="radio" id="RC_821794_3_0_825611_0" checked="checked" value="0" name="RC_821794_3_0_825611"><label for="RC_821794_3_0_825611_0">soluble</label> </span><span class="ms">
- <input type="radio" id="RC_821794_3_0_825611_1" value="1" name="RC_821794_3_0_825611"><label for="RC_821794_3_0_825611_1">insoluble</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_821794_3_0_825611"></p></div></div> <br>
- <br>
- (b) <font color="red">(NH<sub>4</sub>)<sub>2</sub>S</font>
- <input type="hidden" value="mc" id="RC_821794_3_1_825611" name="RC_821794_3_1_825611"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">2</div><span class="ms">
- <input type="radio" id="RC_821794_3_1_825611_0" checked="checked" value="0" name="RC_821794_3_1_825611"><label for="RC_821794_3_1_825611_0">soluble</label> </span><span class="ms">
- <input type="radio" id="RC_821794_3_1_825611_1" value="1" name="RC_821794_3_1_825611"><label for="RC_821794_3_1_825611_1">insoluble</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_821794_3_1_825611"></p></div></div> <br>
- <br>
- (c) <font color="red">PbCl<sub>2</sub></font>
- <input type="hidden" value="mc" id="RC_821794_3_2_825611" name="RC_821794_3_2_825611"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">3</div><span class="ms">
- <input type="radio" id="RC_821794_3_2_825611_0" value="0" name="RC_821794_3_2_825611"><label for="RC_821794_3_2_825611_0">soluble</label> </span><span class="ms">
- <input type="radio" id="RC_821794_3_2_825611_1" checked="checked" value="1" name="RC_821794_3_2_825611"><label for="RC_821794_3_2_825611_1">insoluble</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_821794_3_2_825611"></p></div></div> <br>
- <br>
- (d) <font color="red">Hg<sub>2</sub>SO<sub>4</sub></font><br>
- <input type="hidden" value="mc" id="RC_821794_3_3_825611" name="RC_821794_3_3_825611"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">4</div><span class="ms">
- <input type="radio" id="RC_821794_3_3_825611_0" value="0" name="RC_821794_3_3_825611"><label for="RC_821794_3_3_825611_0">soluble</label> </span><span class="ms">
- <input type="radio" id="RC_821794_3_3_825611_1" checked="checked" value="1" name="RC_821794_3_3_825611"><label for="RC_821794_3_3_825611_1">insoluble</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_821794_3_3_825611"></p></div></div>
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=134','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2844.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('ARByClEVyYCKCHAOCDBPEvAgAUDWDSEQDfATCUCmAcBdCKCFCREcCcEhEaBmAyCBEKDlDWBKDiBhDtEmByDCCuBIEuBKEIBgCmAxyYCoErEaDNBoArEmDeDNDnEqCeDvALAwByAWBdBXCBAtEgCXCuEgCYCqCMBhEXBrCIDAuUBCAgAgETAgAUEvAyAbAvEQDWEkAeAl',true,'');" class="sButton" value="Submit New Answers To Question 4" name="Submit3" id="sub3">
- <input type="submit" onclick="return submit_this('EPEeBnCAAjEVAHBTCBBFBLDNCYEEAfEgDfEOAwDtCYALEOzUArDBAWBlCSApAtDdDPBWAyDnwWDDAmBIAGBGCRBSDcAhEnEaDwCABKEoEsAiBoCSBHBDCtDjEWEHAyEVEPEuBqEoDjBeBpDPCOBdDoAJDKEKAJDGBrEuCeAOBlANAgDIChCsEOCoEJEJAaDAEs',true,'')" class="sButton" value="Save Work" name="Save3">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=AGCnBDDKAsyYBwBNCeEjAuALATAtArEAClEbChAQAQAKDoEnBgBRCWAJBaAnCFDfAnELClCJCSELEoDNCxBOBVAnDNALBnCNApElAMBaCQESDkAqAqEwzUBLBaDkATEDBRAdEECiDCBfAbAJAYAJEnEuCOCpCOEkEUBeEnELCFCPAqAEEqAaCXBqCgDxCVACBIBwDUEgDRDSEJAIAbAJDjDMBwEuAwAIASBPBGBkBLDIDwBn&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice3','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice3" id="Practice3">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question5">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">5.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('4')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_4">
- <strong>
- –/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=4&struct=EoBOExApAXDQBtAGDjCbBdDfDBEuAIAkBSEWBrCIAFDIEeBdENAnBSCXEVEHCiEXEoCaDSDoEVAdATAtDqCVCsDTyYAAEgCLBECADRADAkBwBDCuCfCpBCERAQAtEsEwByDGCLCeDxADElAyBUAXBOABErBUESyYBXDwAGDKDvBoDAERAkEBDBCLCNAxBABCDFCmAxCCDbEj&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_4','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_4">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.034.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_4">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 0/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q5"></a>
- Write net ionic equations for the following molecular equations. HBr is a strong electrolyte. (Include states-of-matter under SATP conditions in your answer.
- Use the lowest possible coefficients.)
- <div class="indent">
- (a) HBr(<i>aq</i>) + NH<sub>3</sub>(<i>aq</i>) <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> NH<sub>4</sub>Br(<i>aq</i>)<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180106_4_0_1183923">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180106_4_0_1183923" name="RB_1180106_4_0_1183923" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- <br>
- (b) 2 HBr(<i>aq</i>) + Ba(OH)<sub>2</sub>(<i>aq</i>) <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> 2 H<sub>2</sub>O(<i>l</i>) + BaBr<sub>2</sub>(<i>aq</i>) <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180106_4_1_1183923">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180106_4_1_1183923" name="RB_1180106_4_1_1183923" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- <br>
- (c) Pb(NO<sub>3</sub>)<sub>2</sub>(<i>aq</i>) + 2 NaBr(<i>aq</i>) <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> PbBr<sub>2</sub>(<i>s</i>) + 2 NaNO<sub>3</sub>(<i>aq</i>)
- <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180106_4_2_1183923">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180106_4_2_1183923" name="RB_1180106_4_2_1183923" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- <br>
- (d) MgCO<sub>3</sub>(<i>s</i>) + H<sub>2</sub>SO<sub>4</sub>(<i>aq</i>) <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> MgSO<sub>4</sub>(<i>aq</i>) + H<sub>2</sub>O(<i>l</i>) + CO<sub>2</sub>(<i>g</i>) <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180106_4_3_1183923">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180106_4_3_1183923" name="RB_1180106_4_3_1183923" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=130','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2844.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('AdDTABDfDQBsCJEXDmBjDGDhESEjCiCMChDOCiDEBfDBBOAlEXEdEeEIBhCIBeDpBsAAAgDuAHENDXAxCdBICrBGBCDSCXBYCPEeAeBVBnBBDFBDDnBkAaETDHAtEQBEBYBgEyDJBmCkCgCfEhDqEJDrBhzUBMDyCpDFDtEYAoAeBVEjCXDhCdDuBYDGAHDYAkDNAsDWCl',true,'');" class="sButton" value="Submit New Answers To Question 5" name="Submit4" id="sub4">
- <input type="submit" onclick="return submit_this('DWBhDcCbACBOECDhEPEQCXDnCnEcCaCFDMEVEhEhAGEBAVEBEyEFBdASCvAWCmDiAEBtCGDSAYEMAeDSEFChCjAmBwDFDWCLBJCNEGBKEbCPDXCyCYBiDaAJCHEjDODwCmAFBTEoAeEYDrCQAdCnDpBbAXAvBJzZEGBTAdBNBvAyCNAWArDfCMByELCPCcBjCqEc',true,'')" class="sButton" value="Save Work" name="Save4">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question6">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">6.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('5')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_5">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=ErDQDUwWAQARDQAaAmByAIDUBdBXDADIAMBYEEBsBnEoAEEQBeCHBeAsCCDJEUCpDPAaAWBtCWAcCxEwCyAPCtANChDCBHCgBNCVBPBgEHDxAjBYAgBVDNBfEJEFAsCCEpBQAcEiDlAGERBbDyDVCrCrEWBezZCWCRDoEGChCQCsDiCgzUAsBvBDEvDxEmErCxCDCCBrBLCt&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_5','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=5&struct=BtBsABDxDPArCvBYAxElCwCfEYAnCtCECADrEeCnDfEBEsEVAkEVCCEVBGBgErBLDdCBArEdALDHBlEICPExEqAlDxDlAABNCbEhAlDlCaBRCJDYCCAnAhBrAtEHDuALBbEnCuDTBpEVDWBXCMAMDMDbDIEJyYChAJDjBYCRBnDoAkBGCkCODTCYCyAwEDAKCPAlBoBgDFBE&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_5','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_5">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.036.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_5">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2.50
- </td>
- <td align="center" class="partPoints">
- 2.5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 2/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q6"></a>
- Potassium carbonate solution reacts with aqueous hydrobromic acid to give a solution of potassium bromide, carbon dioxide gas, and water. Write the molecular equation and the net ionic equation for the reaction. (Include states-of-matter under SATP conditions in your answer.
- Use the lowest possible coefficients.)
- <div class="indent">
- molecular equation <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180035_5_0_1183852" style="width: 486px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">K<sub>2</sub>CO<sub>3</sub> (<i>aq</i>) + 2HBr (<i>aq</i>) <span style="font-size: 13px;">→</span> 2KBr (<i>aq</i>) + CO<sub>2</sub> (<i>g</i>) + H<sub>2</sub>O (<i>l</i>)</span>
- </div>
- <input type="text" value="K_2CO_3 (aq) + 2HBr (aq) --> 2KBr (aq) + CO_2 (g) + H_2O (l)" id="RB_1180035_5_0_1183852" name="RB_1180035_5_0_1183852" class="chemInput" style="width: 474px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation <br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180035_5_1_1183852" style="width: 399px;">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">CO<span class="ssc"><table style="font-size: 10px; text-align: left; border-collapse: collapse;"><tbody><tr><td style="padding: 0em 0.2em;"> 2-</td></tr><tr><td style="padding: 0pt;">3</td></tr></tbody></table></span> (<i>aq</i>) + 2H<sup>+</sup> (<i>aq</i>) <span style="font-size: 13px;">→</span> CO<sub>2</sub> (<i>g</i>) + H<sub>2</sub>O (<i>l</i>)</span>
- </div>
- <input type="text" value="CO_3^-2 (aq) + 2H^+ (aq) --> CO_2 (g) + H_2O (l)" id="RB_1180035_5_1_1183852" name="RB_1180035_5_1_1183852" class="chemInput" style="width: 387px;">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=130','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2845.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('DcBeEUAQBoAlESApAJAmAEBlAcBQCGDCAqCWDdCxDvBPENDxDBAUBlAwBnElADDQBGEtApBoBOEbCACEDQCRDyCNDqBWEXDqEpAHADAmCTuUBKEcCaDOBOCGBxCHEEAHEqBgvVDcEYEmAtBEDIDlCnEsCMByDtDkDAArBKuUEQDmDwEsBVCFACBfDyAIEDDAChCICYCQAq',true,'');" class="sButton" value="Submit New Answers To Question 6" name="Submit5" id="sub5">
- <input type="submit" onclick="return submit_this('CjEFEKEECvDHBPBvyYEUCoEQEYAyDmDgCkEECwDTEsCJElCPDcDlDHBRCuBpCOBKuUCFBQELAKCCAxDxBuEtBeDKEpCxDYAKApEDEdDiAxELDQCdCTEkBiAyDABBDsAhuUATEtEYBaBGCKBWCCEjALDxBbzZBqCwBPAbCRDMEYErElAJCYCODnDJEiEoEPCHByBC',true,'')" class="sButton" value="Save Work" name="Save5">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question7">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">7.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('6')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_6">
- <strong>
- –/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=6&struct=AGBIDhEJBsBPCpDlExClDhEoDvDjuUuUDdAFASBeARAQEsBEAiEMByDQCABWBmAKBJDcAvDUDqDQAxCdDJAnAkDrCDBSAnAAEtERAyAUEcDhEKBSDgDADDCdDTCiERAfDPELEfBFEUESBtDhEcDKEdCDAiEvAeAiADCBDEDLCpApAUzZEABECjBLApDwCFDxEjBBEjAIEkBR&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_6','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_6">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.038.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_6">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- <td align="center" class="partPoints">
- 0/1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 0/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q7"></a>
- Write the molecular equation and the net ionic equation for each of the following aqueous reactions. If no reaction occurs, write "NONE" in all the answer blanks. (Include states-of-matter under SATP conditions in your answer. Use the lowest possible coefficients.)
- <div class="indent">
- (a) <r>AgNO<sub>3</sub> + NaI</r> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- molecular<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180621_6_0_1184438">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180621_6_0_1184438" name="RB_1180621_6_0_1184438" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- net ionic<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180621_6_1_1184438">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180621_6_1_1184438" name="RB_1180621_6_1_1184438" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- (b) <r>CaCl<sub>2</sub> + Al(NO<sub>3</sub>)<sub>3</sub></r> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- molecular<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180621_6_2_1184438">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180621_6_2_1184438" name="RB_1180621_6_2_1184438" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- net ionic<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180621_6_3_1184438">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180621_6_3_1184438" name="RB_1180621_6_3_1184438" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=130','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2844.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('EDDVCkDNBIDoBBAmECCYDGBhERCMCNAuEDBLEsApBFBNDgDXzUARCRERCdDiEQCDEKDkBuDtDKDCCQCUDiDKESEOCNEnCbCHDoDFDHAxECBUCcBXErEGCDAqEEEgEpDJDbEYEYAJDxEoEiEFCuCnETEfCgDkAjBEDdEqDaBVCDCDEoEiBLCiCIAqEuEtETAoEDENDFDsAT',true,'');" class="sButton" value="Submit New Answers To Question 7" name="Submit6" id="sub6">
- <input type="submit" onclick="return submit_this('AgECDPEFAUDwAJBfERwWCqBWAnAtBwClCyCfEKDLEvAwCABODWBaEjEhClEtEsDEDyBsAwAYEgBeBmAtAHCaAhBQDDAIBgBUECENDLBMCduUCBBUAQDyAcDFAnExBGApChBCAtDDCDEDCgDBCUBNBCEQBFAEAouUCGEQAlCvEXDDDuCAEoCJAyBdEsBeEEEKElCp',true,'')" class="sButton" value="Save Work" name="Save6">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=CkEkDMBEDKDHBTDIESByArDECTuUEWDoDEDdEhBYAVDjAGDMEMBuDDDoEOBlDEEWEPzUAgCwAjEiCMBABdAFByEyEWEhCiCVCmCKCiAPDsBsEOBNCwCeCyEEBvAQCvATCjEHBRCIARAXAvBXDtAoAXAgDDARCbDpEYDowWEQAxBaDVDQDKCtDuDXBYCNCLEaEUCNBEENAUCcDuBPBtDpCIAGClESAUCPCbCmCOATCSDrCFBEED&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice6','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice6" id="Practice6">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question8">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">8.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('7')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_7">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CrBwCVAfAfCFCmBlBUEEERDezZCKDNuUEcCoALEBDeCKCFAwBbzZDdBIELAgCwCcEUDjByAyDOBuBvDTDjBGAJEfDCEqDqCyBNDjADCADHErAaCXBwDaCADQCADYEqDtAjDkEuDbwWBpBoBJCrAyCWwWDTCYEuAlDaAtAtBCESEgEpEmBbAJAUDEElBvBnDCDeEqAYCrEA&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_7','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=7&struct=BFACDAAnBNAJDqDDEDDdAwEtBHDyAPCqBHCmAnBAErADzUEYEaBCDVCQBYEhDpBKBRCWCTBeBIAeBkDTBMDIBaDvEfDuDpDrvVCLEaAuCSEiCXDKBDCjAgAwDQDwEQANCgBTByyYCADNCkAuBPEoBmCVDKBbDrBEBTDqBODaEhCsCSDrEAARDsBtCABUENCeBTDRCLCHAd&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_7','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_7">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.042.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_7">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q8"></a>
- Classify each of the following as a strong or weak acid or
- base.<div class="indent">
- (a) <r>Sr(OH)<sub>2</sub></r>
- <input type="hidden" value="mc" id="RC_817559_7_0_821376" name="RC_817559_7_0_821376"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">1</div><span class="ms">
- <input type="radio" id="RC_817559_7_0_821376_0" value="0" name="RC_817559_7_0_821376"><label for="RC_817559_7_0_821376_0">strong acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_0_821376_1" checked="checked" value="1" name="RC_817559_7_0_821376"><label for="RC_817559_7_0_821376_1">strong base</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_0_821376_2" value="2" name="RC_817559_7_0_821376"><label for="RC_817559_7_0_821376_2">weak acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_0_821376_3" value="3" name="RC_817559_7_0_821376"><label for="RC_817559_7_0_821376_3">weak base</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_817559_7_0_821376"></p></div></div> <br><br>
- (b) <r>HI</r>
- <input type="hidden" value="mc" id="RC_817559_7_1_821376" name="RC_817559_7_1_821376"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">2</div><span class="ms">
- <input type="radio" id="RC_817559_7_1_821376_0" checked="checked" value="0" name="RC_817559_7_1_821376"><label for="RC_817559_7_1_821376_0">strong acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_1_821376_1" value="1" name="RC_817559_7_1_821376"><label for="RC_817559_7_1_821376_1">strong base</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_1_821376_2" value="2" name="RC_817559_7_1_821376"><label for="RC_817559_7_1_821376_2">weak acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_1_821376_3" value="3" name="RC_817559_7_1_821376"><label for="RC_817559_7_1_821376_3">weak base</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_817559_7_1_821376"></p></div></div> <br><br>
- (c) <r>HNO<sub>3</sub></r>
- <input type="hidden" value="mc" id="RC_817559_7_2_821376" name="RC_817559_7_2_821376"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">3</div><span class="ms">
- <input type="radio" id="RC_817559_7_2_821376_0" checked="checked" value="0" name="RC_817559_7_2_821376"><label for="RC_817559_7_2_821376_0">strong acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_2_821376_1" value="1" name="RC_817559_7_2_821376"><label for="RC_817559_7_2_821376_1">strong base</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_2_821376_2" value="2" name="RC_817559_7_2_821376"><label for="RC_817559_7_2_821376_2">weak acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_2_821376_3" value="3" name="RC_817559_7_2_821376"><label for="RC_817559_7_2_821376_3">weak base</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_817559_7_2_821376"></p></div></div> <br><br>
- (d) <r>HCNO</r><br>
- <input type="hidden" value="mc" id="RC_817559_7_3_821376" name="RC_817559_7_3_821376"><div class="multBox questionRadio"><div style="" class="correctBord"><div class="box_num" title="Points: 1.25/1.25" style="display: none;">4</div><span class="ms">
- <input type="radio" id="RC_817559_7_3_821376_0" value="0" name="RC_817559_7_3_821376"><label for="RC_817559_7_3_821376_0">strong acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_3_821376_1" value="1" name="RC_817559_7_3_821376"><label for="RC_817559_7_3_821376_1">strong base</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_3_821376_2" checked="checked" value="2" name="RC_817559_7_3_821376"><label for="RC_817559_7_3_821376_2">weak acid</label> </span><span class="ms">
- <input type="radio" id="RC_817559_7_3_821376_3" value="3" name="RC_817559_7_3_821376"><label for="RC_817559_7_3_821376_3">weak base</label> </span><p align="right" style="margin: 0pt;"><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RC_817559_7_3_821376"></p></div></div>
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=136','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2845.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('BiEqERABEsDcBRESEpByCAAoDKBIDcDoBDDeBSEdDICmAcALDAEACPCXBJDPDBCQDWDHBQBvBvEuBuCWEDDnDhEJEtDVCeAJEkCTCPBFDfDSDQBqEpBEEYClDREUASAlDQCHDmDvBcADCKDRCAEAAsECESCvEIAMCXEbDOBGDwDAEvBUBVEaAPAYBfDjDpAyBcAAzZAE',true,'');" class="sButton" value="Submit New Answers To Question 8" name="Submit7" id="sub7">
- <input type="submit" onclick="return submit_this('EjBcBjCUEuCSDeAAzUCNAjAxANuUBaAXDqAEBWDeBsEjAkDgDkDwCjBRCfDWAoAlCbEJDxDvBuEGAIEmzZDFBoEQBvDPAwCDBwzUBPADELCjuUAEDRDKApBLExDeEUBdCeCCDrANBoAnAfAEAGEEDjCRCEEUDjDREYCiBQATDCCuAfAdAxDOCoCmBXEgAJEWAn',true,'')" class="sButton" value="Save Work" name="Save7">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=CoBpCQCIDYEcDoDdBgEGApAYBcDJCyDJzZCtEmBSDGEivVEWAEEHAOCWAHEBDHCJAqAWAFCHBkAwBCBgDvBCEWENDlzZEPBsAIDqBsCGDeBTAbDfDpAcEgBiBkEfDbAjETAUDJDXzZBNAnDMETExDjzUAdDXEpDnBnEpDjBsDaDkCSAwEdDoDwCoByDTBTAQCxEIEXDBBHBBDNAuBuARCBAKCuELEMBDAPDGEJBQBpEKCpAX&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice7','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice7" id="Practice7">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question9">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">9.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('8')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_8">
- <strong>
- –/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=8&struct=CDAlCXAbAkEPEfADAcBkCsAtExDPCCEoBrEuEPCdBEBFCXDiBoExAoEICbATDoEaDfBpAFEjBPASAmBqCoBLAdDyCBATDbEtCaBXAaAeBrEVDHEPDMCkADDtEJCBEtBNABBvCRDqClEQEMBNEvCxBovVEqDODdCyBmDEClAOEVCbETCpDLBBDpENBLDsElAiDJByCuBWEfBj&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_8','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_8">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.044.
- </span>
- <span>
- <select onchange="document.forms[0].course.value='100098,141054';document.forms[0].sid.value='';document.forms[0].struct.value='DTAABcEXEvESBxAGENADELBqEQEgAHDWBfEpByCYAIzUCWEkBSAGDaAfBqBxCeEHEuBKCbDtCdAbADESEkBNCcAgDBDbAcDFBwAxEBAeDjDLDADSBLDYBeAeAaAXEUCXEbAMAFDjEfCF';document.forms[0].display_level.value='question';document.forms[0].submit(this);" id="viewing_8" name="viewing_8">
- <option selected="" value="-">Select</option>
- <option value="s">View Saved Work</option></select>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_8">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- <th align="center" class="partNumber">
- 5
- </th>
- <th align="center" class="partNumber">
- 6
- </th>
- <th align="center" class="partNumber">
- 7
- </th>
- <th align="center" class="partNumber">
- 8
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.62
- </td>
- <td align="center" class="partPoints">
- 0/0.66
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- <td align="center" class="partPoints">
- 0/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 0/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q9"></a>
- Complete and balance each of the following molecular equations (in aqueous solution). For each reaction, write the net ionic equation. (Include states-of-matter under SATP conditions in your answer. Use the lowest possible coefficients.)
- <div class="indent">
- (a) Al(OH)<sub>3</sub> + HCl <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- molecular equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_0_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_0_1184109" name="RB_1180292_8_0_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_1_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_1_1184109" name="RB_1180292_8_1_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- <br>
- (b) HBr + Sr(OH)<sub>2</sub> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- molecular equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_2_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_2_1184109" name="RB_1180292_8_2_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_3_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_3_1184109" name="RB_1180292_8_3_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- <br>
- (c) Ba(OH)<sub>2</sub> + HC<sub>2</sub>H<sub>3</sub>O<sub>2</sub> <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- molecular equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_4_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_4_1184109" name="RB_1180292_8_4_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_5_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_5_1184109" name="RB_1180292_8_5_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- <br>
- (d) HNO<sub>3</sub> + KOH <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span><br>
- molecular equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_6_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_6_1184109" name="RB_1180292_8_6_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br>
- net ionic equation<br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1180292_8_7_1184109">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container">
- <span class="chemPreview"> </span>
- </div>
- <input type="text" value="" id="RB_1180292_8_7_1184109" name="RB_1180292_8_7_1184109" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left"> </p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=130','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/2845.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('BmAbArEkDXBIuUBcAYDPEBApAIAAAeDyAGEXCaEOBpBlEwEhEEBcAPBpEgDAAaBxEWDJEyDsCqDOEdADDBClEqDkEsEIEvCjAGCBDsAbBlAgECCHEYCyzZDXExAIBECgENAHAfAqCfDrAkBVEiDfEmEiCiALBVBICjCeAwBmCIChDGEeBOENDIAPCeBxAOCdAEBRCwCnBi',true,'');" class="sButton" value="Submit New Answers To Question 9" name="Submit8" id="sub8">
- <input type="submit" onclick="return submit_this('CtAnBHBGBDBGBLCDDrDgCCARCEExBIElBGBCDkBtCfDTDoABCFBHBHEnATAqDnDwBOBFDAEdEjACElDNANANDEDfDhAVzUAGEIBkEiBXBtEeCPCTABBIBiAQAUBgDXEmDeEeCDyYBwEWEtCTEKERDaCXCBBqDkAwBRCwDPDADMDrEDCGAgBdCHBmErBcCNBGCdAE',true,'')" class="sButton" value="Save Work" name="Save8">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question10">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">10.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('9')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_9">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=BDBcBSEVECApDXEhEUAmDWBQBsDMCXAGEMEMBrvVCoCqEREQCevVEWDgvVAvCVCXAiAbDOBmCTEJDNAcEWDJuUBkBaECEREUEPBKDQBVDfBwEpDMBMAECmDXCODPDVDwDuDBDqBKEADkDRCgAhAhBjBrCdBuEmADCFCFCoBvEsAFAuCvDiDxAXDCBuETDdEeDNCECBEHCv&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_9','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=9&struct=DHBFBmDEEqDdEFBxDADCBxCVCABhBWBlDnBlBvApAABVADBKEIErCBCcEYBABlCaDmDyDSCFBODcDdAsDMDXAiASBHAMDtBPEcCYArAjBOASBqAJDRBKCMBQEHBYvVEcCmCEDFBkBlDxCADGECBmDsAiDYELAIANEpChCyBaAmBrAGDfAJAVCgEtEqBMAABgArEDChEeDU&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_9','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_9">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.055.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_9">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q10"></a>
- Obtain the oxidation number for the element noted in each of the following.
- <div class="indent">
- (a) Ga in Ga<sub>2</sub>O<sub>3</sub> <br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821764_9_0_825581','%2B3')}" dir="" id="RB_821764_9_0_825581" autocomplete="off" size="4" value="+3" name="RB_821764_9_0_825581"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821764_9_0_825581"><br><br>
- (b) Nb in NbO<sub>2</sub><br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">2</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821764_9_1_825581','%2B4')}" dir="" id="RB_821764_9_1_825581" autocomplete="off" size="4" value="+4" name="RB_821764_9_1_825581"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821764_9_1_825581"><br><br>
- (c) Br in KBrO<sub>4</sub> <br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">3</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821764_9_2_825581','%2B7')}" dir="" id="RB_821764_9_2_825581" autocomplete="off" size="4" value="+7" name="RB_821764_9_2_825581"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821764_9_2_825581"><br><br>
- (d) Mn in K<sub>2</sub>MnO<sub>4</sub><br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">4</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821764_9_3_825581','%2B6')}" dir="" id="RB_821764_9_3_825581" autocomplete="off" size="4" value="+6" name="RB_821764_9_3_825581"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821764_9_3_825581">
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=144','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/3008.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('CuDUEfEXElDLASEGEIDUCQCGEtBPCfDaDpEcEOvVARAlApEKDfDGDPDoBXDkEFCCCwDwCABiDEDeBrAOEwAIDKDGEnDcAoCyDbEBCHCUDkAFDmDyAIBfCsElACDFCGEpDOEeCcvVCNBDAqEEEgDWAyBHCrDwBOAmEtCYATBsEOAGBuBfDBAoClAqCjEVEiArEmESEEAh',true,'');" class="sButton" value="Submit New Answers To Question 10" name="Submit9" id="sub9">
- <input type="submit" onclick="return submit_this('AABDCiEeAuByDqDdBpEbDJCvCQAlClBHBvEABgDjAgCgCFCXCXENEsChEGBSAKAnAJAeEGAMCYBfDADhBIEyBrDCClDeAhBAETEjBBCmDLAMEbETApDIEGBJEKzUEFCgASDaDjCLBkCPEQDXCXCfAvDWCKCjBgCIAGCmDmAQDLBqDfAcBrEQAaBqBQDhDYArwW',true,'')" class="sButton" value="Save Work" name="Save9">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question11">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">11.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('10')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_10">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CmAjBOAsDPDfCXCRBxAnAdAuErCmDbDwEDAfACCkBHCqDaAcDqEyDlByBJEUwWAfBDCbBGCVBVEtBmCFBiDXDLCGAuBhBdDVBIvVBWAYBkDKADCKBPCNDLEEAaCnDvEKAKDFDKCBAVDbERBQCLBlCxAGAhAlBeAbATChByAVBaADEpAYBTBRDcBPARBwDnEJAeDpEJAGDv&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_10','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=10&struct=ErEBEdAnBkBjDSEMDEBCAIEdEkBvCiCyDRAODAEMBdCNChCpBiDrDnDWAezZAHDnBoCaBDBhCQEnCpCNEYAkCfAOAKCeBLDxCcBlAhCLEtDfCqClBNBVCdBSBpzZAAEcDhCxEJAkCjCbCNBTEuBjDUAfCRCOArDpARChEbEnABCDBGCbDWCUDFEMEGEtEiAPEvEeCfAHDy&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_10','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_10">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.057.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_10">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 2/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q11"></a>
- Obtain the oxidation number for the element noted in each of the following. (Type your answer using the format 2 or -1.)
- <div class="indent">
- (a) <font color="red">Mn in MnO<sub>4</sub>‾</font><br>
- <span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821757_10_0_825574','%2B7')}" dir="" id="RB_821757_10_0_825574" autocomplete="off" size="12" value="+7" name="RB_821757_10_0_825574"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821757_10_0_825574"><br>
- <br>
- (b) <font color="red">I in IO<sub>3</sub>‾</font><br>
- <span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">2</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821757_10_1_825574','%2B5')}" dir="" id="RB_821757_10_1_825574" autocomplete="off" size="12" value="+5" name="RB_821757_10_1_825574"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821757_10_1_825574"><br>
- <br>
- (c) <font color="red">Cl in HClO<sub>4</sub></font><br>
- <span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">3</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821757_10_2_825574','%2B7')}" dir="" id="RB_821757_10_2_825574" autocomplete="off" size="12" value="+7" name="RB_821757_10_2_825574"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821757_10_2_825574"><br>
- <br>
- (d) <font color="red">Cl in ClO<sub>3</sub>‾</font><br>
- <span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">4</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_821757_10_3_825574','%2B5')}" dir="" id="RB_821757_10_3_825574" autocomplete="off" size="12" value="+5" name="RB_821757_10_3_825574"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_821757_10_3_825574">
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=144','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/3008.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('DmAlAFATAWEaCgDWBaEfDdEuDiCIyYDtDLBmAyBdCTCLCcExBsBVBtBoErzZDNzZBSCABiEdEYAcBSDWDhCQCpAcESEPAlByBNEnECDsECCfCXDQDHCWEREwBpCMExAsDiCvDWDXCSEcDtBOAnDJBhDyElBxBDDdBBCABsChAnCpDECNEVBuAWBkBICqEpCJAYADCyDB',true,'');" class="sButton" value="Submit New Answers To Question 11" name="Submit10" id="sub10">
- <input type="submit" onclick="return submit_this('CIAFEYEgCCAOAYBhAgDLAyDSAPBRwWCVDWAaAxAvDCAABGAmBYDeCIAAEMCBBLDxEPDWAdEQAbEbEDDFDaBcErCuDkBtESBWCyEQCtAcAbCaBRChBkDUArCvCsBPAeAvBqAGAUElAqDGAACOBqBVDwCcBdCCArDuBWANCpDABpEPDcBjBFzUDYEnCSDJEKyYDq',true,'')" class="sButton" value="Save Work" name="Save10">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=BLBxBRAwEmEJDUvVCUDDEsEkDHBQEaDNCEEEEqBiBqCcEGCNBqCQDICHDnAsDVERChBJATDGBjDsEXCWCbBeCqBIBuEACgAbEKAICdCgChCyDUCUBSCQDABKBtCVAnCvCYCBDPAqATBgDBBTBrBBAlEhEHDvCMDFBTAJCoETEJBuEgCOEwDeEXDjEsAHCpDRCqDsCvDRCBBJEyEtDLCMBkDEEnEpCfAPyYCrEOEGAvBuDDER&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice10','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice10" id="Practice10">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question12">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">12.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('11')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_11">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=uUBKCOCQDeChBhCjCNDNCyEODHCYBRCmCLADDnCwDlAeBlAGEfBKCkDfDTBuEDBqBtCqwWAADyDpEhCYEoCiAqBBBYDRDlBFEvDoDhBSAgCSDjADEwBQAfBEBdDYCUEHEOAiDqEbBuEoEvAmEyEDBmDiBkDGASAqDDDxESDHDxwWDqDsEmEnDtDnAnBWBYAUAeDyAcDfAh&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_11','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=11&struct=BGBiBjChDiBdCYCxAFBUAgDaAUBKCWEVBAClzUEXCjChAHCLDkEgAQCPEfDjCxEoEYBABRCnEeEsBhEfAWCSBJzZDtATEcCvAjAIBwAXAnCiAyBYAjCyDyDqBIADAhETEMwWAvDmBXAJBqELBTDOAoBVAiBtBGCoCyDxDKAIEQDADWBTEdATAoEaEaBKEDDWAvCkDuBLDT&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_11','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_11">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.068.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_11">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q12"></a>
- A <font color="red">54.0</font>-mL volume of AgNO<sub>3</sub> solution contains <font color="red">0.0269</font> mol AgNO<sub>3</sub> (silver nitrate). What is the molarity of the solution?<br><a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 5/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_821649_11_0_825466','.498')}" dir="ltr" id="RN_821649_11_0_825466" autocomplete="off" size="10" value=".498" name="RN_821649_11_0_825466"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RN_821649_11_0_825466"> <i>M</i><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=154','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/5552.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('CJARBtCXCYDBDQAdBeCtBxDaCdAYDsAIEjExDxCPDNCyCvCICqDdClCYApATDiDyAvBTEvEYBgAnEyBRDQDgCoBbBNArBNDRCwDqBDDfBrAiAjBNCNBLAOCoCkAkAPAaEEBHBpCBEjCsCOExAdDLBkCGAxAFEmBlEIArDxAdCSDABtAbAeCbBsAuCHDkASCtCqDBCECl',true,'');" class="sButton" value="Submit New Answers To Question 12" name="Submit11" id="sub11">
- <input type="submit" onclick="return submit_this('EXBQDSBLCwDAAuAJDfBaATDQEnEQAQDVDHDjBVDGDgDUAtAaAtEDBKCnBLBuESCwELCXCQBbBNEUEPDLCkDEBdDVBTCCEGBXANCQAlCoEfCBBxElDRElANBIApDcBCCdDmAYEdCfAhCREQEYBsErBTDSEODXEUEABECUCkBDCuDevVBkDLDkAjCeDeBEECBIBV',true,'')" class="sButton" value="Save Work" name="Save11">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=ADDnENDECgAPAsANEPASBYCSEIuUBuAwByCDCaEmyYDuCBCQCrEdBaBHCXBoABBNCGDyCFDFBhCsAAEIEcBlDVCYEUCeAPCODdAXDwBjEGEuExBOEoAdAtCWCVCmBVDgAyyYvVCaCuDQEHEmEWAxCeDEBWCjERCeAhAhCdAlBpBQCpAbASCvDlDSCRAMAWEQDTEfCUEqEMDxBHAvAsBqCEBoAhBBCBDQCQArAuEFDxCkCDBl&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice11','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice11" id="Practice11">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question13">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">13.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('12')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_12">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CHBjAtAFDvDWAwBNDEBpAEDKCPDNAjEHDLCWBXEsCxAJDeCtElEWDHAJAJENExCyCyBGEEDPAkAvEvBHDXzZCqAiDcEnDJCcCiEsCaASDPEeDWEHErCgzZDCCfEsALEkDACgAjEvDpAWBgCQCQAgDPBIEFDSBxBcEPAkEAzUEEEXCsAuzZDdCvEuCpDuDkDjBaDJAPAGAL&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_12','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=12&struct=DACyAQAVENEPDkEcANEsDPAkEHBPBYAwAlAcAEyYEYAQCSDfAdDrCkCBAeCtAoCSAhBMARCaEjEgEaANAhBVBPEwDyEWCuCDvVEgCHETAtDIDtCHACCIAPCjDsCgBUAfEoAHBlCiEmEtEyBuDRBgBpBUEKAUBJAvAPAIBaEvDAEBCKEdBfBSDRAtEgBKCuDQBwwWAvBwBB&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_12','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_12">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.073.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_12">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q13"></a>
- An experiment calls for <font color="red">0.0388</font> g of potassium hydroxide, KOH. How many milliliters of <font color="red">0.0180</font> <i>M</i> KOH are required?<br><a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 5/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_821766_12_0_825583','38.4')}" dir="ltr" id="RN_821766_12_0_825583" autocomplete="off" size="10" value="38.4" name="RN_821766_12_0_825583"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RN_821766_12_0_825583"> mL<br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=154','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/5552.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('DRBrCUBcCsBPEaEeDnDYESDKENCvEXCmEJANDnDyDVBfDOEeBkENBFDyElBWAeuUCtCkEwDXCMARDTErCqDqBKARCfDtETEaEnDjBnAjDGEWChDxARBsAiBkCRAgDEAnBVCeENAjCXAmAWAbCIBjDQBFCYAjDVEFDUENCjDHAdEiCwCHEPECAOBfEQAoDIBoCnAmEoEh',true,'');" class="sButton" value="Submit New Answers To Question 13" name="Submit12" id="sub12">
- <input type="submit" onclick="return submit_this('BSBWBHDgEREPBjALEwAfDgAIEpDLBLDgAsAbEGAXClDOAIDVDhBFDjBODYzUEUAUBiDnChDICDDtCDDVBqAFCsBpBlCECUBnCGBmCjDADVAdAoDQBQAJBcDIEWEFECDaBsExEMAxBSCMAsDQAsAHBXCcEJEnDkBvCCAGBxDsADDhALDKEeDLDDDAEJAoDCBoAa',true,'')" class="sButton" value="Save Work" name="Save12">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=BCEpEbBDBgENEkCOAeDnwWEtCkCYDSBlCVCXEiAOCUBuAFEqCUAGEPCYBkBSDoENDGCbAiEaCBDUDCCWDaBmCwChBJBUCAAuCECeEhCuDlCfCMEBCGEbBkBcCdEtDGAWEWBYAMCOCXDmBIDiDgAOAfzZEwBECoDFCODTACESzUDSAyDPDhAsDWBxAqEWEhANAbDyCqDduUBRBjBQBcBQAMAtErApvVzZCcAJAoCxAczZAjCC&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice12','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice12" id="Practice12">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question14">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">14.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('13')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_13">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=ETEWBYDYEIEEDhBpEAEIApEHDrBjDfAwBhAKADBjAQAsAUAWBEErEqDTAgDNDRCHCIBtCcBwAdBtDKATCjAiEkDnDUBjDtBPClApCvCdBkDUEXBBBsAwCYEyBcAFAuBLEdEQELEWCaBCCKDeAiAuEDEjvVAyBEBbCQDeCcBpEFAcALDQACDhChCLBFAPEwAwEuzZBjuUEd&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_13','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=13&struct=EPBrwWDrBNCtDKAuAFDHAREnCNCNEyEQCrERAqBREHBMCbBjEtBpCtEnCDBjAfDFBGDRCGCwEbBxDPBMAvECCCExDVANDbBdCXEMAlDjAJEdBMBaCIElAxCHAWESAkDrCrDxETBJEfEGDjBbEgCSBGAcEGBaEjAUBxBCERBaCDEMEjAfCSEsEFCYDmEeBJDxAEEYAoBqAE&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_13','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_13">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.079.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_13">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q14"></a>
- You wish to prepare <font color="red">0.12</font> <i>M</i> HNO<sub>3</sub> from a stock solution of nitric acid that is <font color="red">15.0</font> <i>M</i>. How many milliliters of the stock solution do you require to make up 1.00 L of <font color="red">0.12</font> <i>M</i> HNO<sub>3</sub>?<br><a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 5/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_821716_13_0_825533','8.0')}" dir="ltr" id="RN_821716_13_0_825533" autocomplete="off" size="10" value="8.0" name="RN_821716_13_0_825533"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RN_821716_13_0_825533"> mL<br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=156','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/5552.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('CEBPCqELCkCyCFEFErCcALCwDmDUAtDnCgAkAoDEDGEDAVAoCvChCQDWDaDHAYEoBsCsALDrAGCBAMDIEVDPBeAtCFBFEIAuELDTAJEKERzZAlCQBbCcCmAtEVAGAcESCcDMEYCTBDEuAaEgEKDVDXEOACAyDlBNBKDdECEsAUEPEoAPDFExDOAxAICYCqCTDbEoCKEP',true,'');" class="sButton" value="Submit New Answers To Question 14" name="Submit13" id="sub13">
- <input type="submit" onclick="return submit_this('AlBpBJBRDAEpCaARBWDjCRAMCPAsBJDfBXBmBoDfAFBvCiCJDoCuBeAMDBCTBjEMCEAjDvCeDABJBgCuEXBOEyCLCcDCEeEEABEaAnANBNAdAAEqEQBhBqBJAUCIBbEIEOzZCYuUAhBQAsCdAsBAElCBBQExBwCWArEADJEVDpzUCaBQAjCMCfCgDuDcErDkBN',true,'')" class="sButton" value="Save Work" name="Save13">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=EiBPCdAPCHCSAwCOBSERBWDlAPAxBpAsDaCeDVCfCbErBMEKBKEiDgCUChCPDpDMEsCYDuCkArBMDkBLDvCjDfADBTAsBrAeDgCwEKEPDfAXBIEeBUzZBVBXDJCCBjAvEYAHDkDsBcCrAqBMEQDfDICNEPCdDFDGACCREQDUBYEGAwBUBMDiCaCmAbEtCGBfAqDYAhCmDQCMEEAcBnAqAIEbEmAgCUDKEHAmEBDICCAfEmDp&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice13','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice13" id="Practice13">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question15">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">15.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('14')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_14">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CkElAwBaBqCTAvAcDKEgAvBFCTAXDfEGEqAKDkBuAWAhDsETDjAFBvEGBfBWCVEmEJATElEpDLBYAeABAgAPBoEWEQAVDvAkBfCYBXAwAsDjDJCtDoAnCTCQCdBpDCDBEJDjBVDhCxBOArBAAaEcArCTBfEgBIDbDRAcCuDACOETDABtALCMEQDMAsCDEbDyCKCxBkEjAj&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_14','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=14&struct=EwCgDaCEDUAcDbCLEJEgDNuUCpDqCvCfBpCTCmCUCLBaCdDcDhCLBXBKDxDCDeBMDYChACAfCmCKDxCpBOwWAQAqEUCQDODDBVAOCKBWEBEmCxDVEfDHExwWEJCtzZDrwWDuDFEsCRBHvVAiBAEHAbDsExAVElClDPCXEoBSCACDDNEOCjDkEuABCNCRANBeDnAaAcBpDA&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_14','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_14">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.080.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_14">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q15"></a>
- A chemist wants to prepare <font color="red">0.59</font> <i>M</i> HCl. Commercial hydrochloric acid is 12.4 <i>M</i>. How many milliliters of the commercial acid does the chemist require to make up <font color="red">1.54</font> L of the dilute acid?<br>
- <a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 5/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_817555_14_0_821372','73')}" dir="ltr" id="RN_817555_14_0_821372" autocomplete="off" size="10" value="73" name="RN_817555_14_0_821372"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RN_817555_14_0_821372"> mL<br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=156','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/5552.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('CuDtAFBxEeDoEdETCGBIAQCcBtAVEKBHEaBSEkBLElEWBLEJEACiByAbCABcETClECBDEmDcDDCjCkBhEOABDSBaEDCbBvELCTBmECDUBSCVCQCmBjDKApDaDoCiCFEIBeAxAvDJCHDbBrCEEXEHBKAsCgEcBWEoEmAECUCuAvDKBRCCBtEHDiADDnBrBWCeEXBlDMDH',true,'');" class="sButton" value="Submit New Answers To Question 15" name="Submit14" id="sub14">
- <input type="submit" onclick="return submit_this('AlDxAeARDSuUCMCHAaDhBqDrBuDUDozZBYEBAwDTCDBKDxETCpDHDbCiEiETErALAtCuAmBxDDBADSENASDFBmEvBjEoEPAqEgAMCfBgDyAtyYAcByBIBwCqAJANDhADEiBIExDIBREEDEAXDrDyATCJEEzZCgAlCYEeBXCUAuETDhEXCcBoELCnEuBHEHBLED',true,'')" class="sButton" value="Save Work" name="Save14">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=DlBSAMERCqAWCKDFBmEFBJEbEABLCTAACBAxDdAFzZCQAuAfASANBJDGBWDeCWAkDywWDeAYCaBTCrATBhAmBJCBEmDABAEdDQDcCgCgBxDdDxEiEyBABRDNDRBLAFBTAXCLvVCQEiDKEJBtAqCBBdCBAeCFBpCiDkBjEFDjCsBiDPBuBaBmDWEqBDDFEjALCqERBvCnBxDSzZBrDdEeEqCOASDPCnAnDFAgAQCoCtCkEQCL&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice14','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice14" id="Practice14">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question16">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">16.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('15')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_15">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=CXCbBEEGBuENEXEHBTDtCkCPEkAmCsEaBeCdEdDbATCjDeBGApAJDgBlAKEwBCDsDhBjAACTEOCBBiDIEyEGByDTEYBUCTCeDkDRBPDfBLAvErBXDTCoBRDMAcEqEKDeCSASEABRDCBfDCBXDMARDsDUAIEcAAAgEnDcEdEwAWAgBsEWENEpDhBjEMDxDCDREgBLDFAeAk&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_15','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=15&struct=DEExEsCJALEiELBQEhEuEBBbDFBmCNEEEWAdCpDSDODxDlACCLBIEsAHDsCBBDCLCjDkEuBFCFAyEKAMDECPBvAPEmDhCcAWBbDjDLBWDUCUEyEWASDcCQAHCUEbAECuEaBtEdEfANDiEOEtEwChBRAODkEIDrEKANBiEFDmBhBhDSDCEAAxCVCvAJAQDkBMEwAMEjCFCo&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_15','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_15">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.090.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_15">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q16"></a>
- A flask contains <font color="red">51.4</font> mL of 0.150 <i>M</i> Ca(OH)<sub>2</sub> (calcium hydroxide). How many milliliters of <font color="red">0.343</font> <i>M</i> Na<sub>2</sub>CO<sub>3</sub> (sodium carbonate) are required to react completely with the calcium hydroxide in the following reaction?
- <div class="figure">
- Na<sub>2</sub>CO<sub>3</sub>(<i>aq</i>) + Ca(OH)<sub>2</sub>(<i>aq</i>) <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> CaCO<sub>3</sub>(<i>s</i>) + 2 NaOH(<i>aq</i>)
- </div>
- <a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 5/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_817546_15_0_821363','22.5')}" dir="ltr" id="RN_817546_15_0_821363" autocomplete="off" size="10" value="22.5" name="RN_817546_15_0_821363"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RN_817546_15_0_821363"> mL<br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=160','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('EuCRAODmBgDmCUCJBADCAWDEAMEKEgEtATDRCmAvCdDoCRDDDRBsERAeBaCEBWDrCpAUEKELCxDACYBTBtEhBwEiABDuEkCMDXChCfESDxvVAWAmAwAUEUEcDgEvEoECALzUBRAGAACTArDmBAEUBDDnAgCUDGDtETAUzZBHAbDgBLBjEFBVDlCeBuBVEbDuAlCnBqCb',true,'');" class="sButton" value="Submit New Answers To Question 16" name="Submit15" id="sub15">
- <input type="submit" onclick="return submit_this('EgEtEHBqEkBJDgAvBTBIBmAEDREoCcCmAlEIBmEaDfEeAEBpClAKDiAgCEEPAqAMAoCNDRAcEsAwErDqCgBWEjCKCDAEBBDHEGEjDRCbAPEkCPDLESCoAkCqDjAYAiEODsAECtCICKEtCECUCPARBIDlAbCjEHCHEOAkEMBOCeBqDsDnAbzUAKCPEoCFBDEjAi',true,'')" class="sButton" value="Save Work" name="Save15">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=COByBtEcBNEpDxAOAICbDFEvBHDXDuAAEODPDlAjCICgBxCCCqDODIDPBECbERCOAwDsEICdEbAeDEAVDVAGvVEBEmEGBsEyBKArAsCOEkBywWBxAfBGDwARADEqEgDcBTBLvVDCDKEhCDCTEvBcAABKCRBxEEDrEaCfAhBYEJDaCYyYDyEpAeCOCNAWCGCFDKDwCcDdBFEQBGCWAJArCYDhDsBWAlDCAgDaBlDiCGDICVEW&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice15','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice15" id="Practice15">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question17">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">17.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('16')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_16">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=BjCEDtAmCcDSBuBvEBDwCBBtALEUEMABCaCCAyDbyYCbCWBNCdCyBYCiDIEpAFAYwWAhCiDpEgELDhAVBvCkDSBtEmEaAyAqBhAfEUBVDgCrDLCKEaCEEoDtANCqDvCDEIERCUCIAxAECmCUCcAXDMAbAuEOEKAaBEBDBSBMDUBvzZBpAiBNEOEABHDACWAmEaASAOBqCI&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_16','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=16&struct=CwBVEVEaEfAPAQEWCrAxwWDQBBEyDXDKBeDJAIBYBMDTCbEsBOESCyBhAeBLDNBuAlCCBGDcDgBTAkDaBgEqCyAVBUEAEmAgDjBIESAkEECRAWEABACeBYALCgCvAICeEGBqEcDaAmCLBuClDlBpAWEGDlBDDVByEWEnCoDkDvDsDYEnCVBoBECfCTClENCkElClANBwAy&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_16','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_16">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.093.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_16">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q17"></a>
- A solution of hydrogen peroxide, H<sub>2</sub>O<sub>2</sub>, is titrated with a solution of potassium permanganate, KMnO<sub>4</sub>. The reaction is shown below.
- <p class="figure">
- 5 H<sub>2</sub>O<sub>2</sub>(<i>aq</i>) + 2 KMnO<sub>4</sub>(<i>aq</i>) + 3 H<sub>2</sub>SO<sub>4</sub>(<i>aq</i>) <span style="font: 1.3em/1.5em verdana,geneva,sans-serif;">→</span> 5 O<sub>2</sub>(<i>g</i>) + 2 MnSO<sub>4</sub>(<i>aq</i>) + K<sub>2</sub>SO<sub>4</sub>(<i>aq</i>) + 8 H<sub>2</sub>O(<i>l</i>)
- </p>
- It requires <font color="red">50.6</font> mL of <font color="red">0.125</font> <i>M</i> KMnO<sub>4</sub> to titrate <font color="red">20.0</font> g of the solution of hydrogen peroxide. What is the mass percentage of H<sub>2</sub>O<sub>2</sub> in the solution?<br>
- <a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 5/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_821720_16_0_825537','2.69')}" dir="ltr" id="RN_821720_16_0_825537" autocomplete="off" size="5" value="2.69" name="RN_821720_16_0_825537"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RN_821720_16_0_825537">%<br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=160','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('AeEiBqDqByDSBsCjETEhCsDQAOCTDuCuAGDNAJCcBOCtBJCKDUEIArDLAbEdEVEBDVBFBKAuCpEECkBsCjuUATELADDhAQBfBWBgCUBGBoDPCICkEfASEEBHEPAQCkCeEFAcDGDWESASDrzUClAoDBCGCyAODCAaAbApDuCRCFEGAlChACDEEVCgAyBDCSAODuBvBOET',true,'');" class="sButton" value="Submit New Answers To Question 17" name="Submit16" id="sub16">
- <input type="submit" onclick="return submit_this('AEBOBOAKBsDAADCIDIDNDdEXEUBQDQEAEEBVBIDVAkESDJDlCaBQAiCaAABhEjBWDdAGClAUEaBoAJAQDsEGDLBNDVCeCSDCDhECAdEuBRBnEqEWCsCbDXAcAuDFBwEgDqBVCOEFCMDRAFByEnAMBtCfAjEoAUCyEOEgEiAeBlBxCNCBAdEuDTCgEdBhCEEwCY',true,'')" class="sButton" value="Save Work" name="Save16">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=BMCiAvAIESEjBYEKCcAoChBbDoDlEPBcEVExDwDGCoCNBiAnCByYBQBaEXCLAwAtCBADCuBFBPBmBUEbExAyBkENDqCcAwEOEnApCpBuDjAJEvAGDXEhDKAnCmBsECBtECAtAsEPDwBRBXBJAJBPCMCIEjBABJAdCEESAUEHBaAuEUCWDTEOBoEaDlCPESCWBJAADlzUDEAuELBEEvBTElDVBqBjAUCrAyAxCPDxDxAvDeDO&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice16','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice16" id="Practice16">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question18">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">18.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('17')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_17">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=BmEyApDYEWEEDeDOABBHEyAuAjCPEgCtCaAIAsAbCiDyAMEWBeBvEyBhEVAiExBOCaAgEYEgEfAlCVDMAeAQEwCOAEAsDlBuDWABBHAIDFEIABBeBkCxAsBHDPDMDIEsDaAOBSEFAQClCbBMERBxECEYBpEkBTAGAnAqCMCtAgAdCEEABnAGBKCaAKCcEcCVEyBUBoBRAvCH&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_17','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=17&struct=CXAMEnAbCWExDmBVAtDyAVEDEjAYCTAGDrDaCCBUAuDjBRBaEWCkAcBICtAayYDaDQDgDMELDYATEXwWCtAmAHDsCyAHCiDnCYCxAQBCDIACEYDFBtDrCnABDOCSACEazUDOEMESEDCyBnEDCREQAjEBEaArDICRCaBfElAaESDRBDCsBXCUBiBnDhCoBSAYDMEvDAAICJDS&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_17','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_17">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.CP.028.
- </span>
- <span>
- <select onchange="document.forms[0].course.value='100098,141054';document.forms[0].sid.value='';document.forms[0].struct.value='AlASBoElEWCmBxCMDHAlDOEgAtClAEAcCGBnAxAdDNCyAuCLDICWBfCUDYAyBXDQClBkCABlDECICCCDEmDvBXCtCQBhDTBrEoAJEHCVAAADBtEmEcBkDWEVBGDQBauUBPALEDBHAiDm';document.forms[0].display_level.value='question';document.forms[0].submit(this);" id="viewing_17" name="viewing_17">
- <option selected="" value="c">View Last Response</option>
- <option value="s">View Saved Work</option></select>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_17">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 3/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q18"></a>
- If one mole of the following compounds were each placed into separate beakers containing the same amount of water, rank the <r>Cl</r>‾(<i>aq</i>) concentrations from highest to lowest (Use the appropriate <, =, or > symbol to separate substances in the list.)
- <div class="indent">
- KCl, AlCl<sub>3</sub>, PbCl<sub>2</sub>, NaCl, HCl
- </div><br>
- <!-- chemPad markup -->
- <div class="chemPad container" id="chemPadRB_1188809_17_0_1192626">
- <div class="top"><div><div></div></div></div>
- <div class="contentWrap container">
- <div class="titleBar container">
- <p class="left"><strong>chem</strong>Pad</p><p class="right"><a class="help" href="javascript:openWindow('http://www.webassign.net/v4cgi/help/pads/chem/chemHelp.tpl?UserPass=2cb13f32eb737e29050471a9799c6cbf','chemPadHelp','width=700,height=500,scrollbars=yes,resizable=yes');">Help</a></p>
- </div>
- <div class="content container">
- <div class="toolBar container">
- <ul class="tablet pad container" id="greekLowerWrap">
- <li class="sub subButton padButton"></li>
- <li class="sup supButton padButton"></li>
- <li class="forwardReaction forwardButton padButton"></li>
- <li class="equilibriumReaction equilibriumButton padButton"></li>
- <li class="reverseReaction reverseButton padButton"></li>
- <!--<li class='resonanceArrow resonanceArrowButton padButton'></li>-->
- </ul>
- <ul class="tablet greek pad container">
- <li class="expandButton">
- <ul class="small container">
- <li>
- <ul class="c4 container">
- <li class="deltaUpper sDeltaUpperCase padButton"></li>
- <li class="piUpper sPiUpperCase padButton"></li>
- <li class="sigmaUpper sSigmaUpperCase padButton"></li>
- <li class="omegaUpper sOmegaUpperCase padButton"></li>
- </ul>
- </li>
- <li>
- <ul class="c18 container">
- <li class="alphaLower sAlphaLowerCase padButton"></li>
- <li class="betaLower sBetaLowerCase padButton"></li>
- <li class="gammaLower sGammaLowerCase padButton"></li>
- <li class="deltaLower sDeltaLowerCase padButton"></li>
- <li class="epsilonLower sEpsilonLowerCase padButton"></li>
- <li class="zetaLower sZetaLowerCase padButton"></li>
- <li class="kappaLower sKappaLowerCase padButton"></li>
- <li class="lambdaLower sLambdaLowerCase padButton"></li>
- <li class="muLower sMuLowerCase padButton"></li>
- <li class="nuLower sNuLowerCase padButton"></li>
- <li class="piLower sPiLowerCase padButton"></li>
- <li class="sigmaLower sSigmaLowerCase padButton"></li>
- <li class="tauLower sTauLowerCase padButton"></li>
- <li class="phiLower sPhiLowerCase padButton"></li>
- <li class="chiLower sChiLowerCase padButton"></li>
- <li class="psiLower sPsiLowerCase padButton"></li>
- <li class="omegaLower sOmegaLowerCase padButton"></li>
- </ul>
- </li>
- </ul>
- </li>
- </ul>
- </div>
- <!-- console -->
- <div class="console">
- <div class="chemPreviewWrap container correct" style="margin: 0pt 0pt 1px;">
- <span class="chemPreview">AlCl<sub>3</sub> > HCl = KCl = NaCl > PbCl<sub>2</sub></span>
- </div>
- <input type="text" value="AlCl_{3} > HCl = KCl = NaCl > PbCl_{2}" id="RB_1188809_17_0_1192626" name="RB_1188809_17_0_1192626" class="chemInput">
- </div>
- <!-- -->
- </div>
- <div style="margin: 0pt; padding: 2px 4px 0pt;" class="feedback container">
- <p class="left" style="color: rgb(221, 0, 0);"><font color="green">Correct.</font></p>
- </div>
- </div>
- <div class="bottom"><div><div></div></div></div>
- </div>
- <!-- end of chemPad markup -->
- <br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=125','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/5552.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('BaCPELEuEmDgEKBaCpCLAXBtBEBeBEDVCoDEBdBxAwAyBMEsArEQDuBRAnAgEPzZEtBEEIAhAtCbBhBSAIEIElEGAeDdEyzZDVBKEcDPAmCLBdCKAREXDOBIBtBUBNEcEVEoANAbDqEYAMBxAqDmDyEXANCyASDJCLCpClDWCFCLCwDqBTCkEkDkAeDhACDcEJDVCyEGDB',true,'');" class="sButton" value="Submit New Answers To Question 18" name="Submit17" id="sub17">
- <input type="submit" onclick="return submit_this('DABLETEyDbBABwDACPBTDfBeBfDaDcAvDXCyDFAJEIDiBQDeCdAUDouUCgCkDJAiCLAcClCCCVCLEyBiAKElAFBhDKBmEeEXElBYAhBpEMBWDcBOAECwAYCsDjDEDqCBBvEFDiBUDpDGECBQuUBvDCDQCiEdEtEyBFBuDIEWAhAtBWEKCLCwDpDPAgAFDqBdBhED',true,'')" class="sButton" value="Save Work" name="Save17">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=APAxAYEFBFBXANBJCdENBdDiBKAAAnDpCUCdDHAxCHBtArCuDhEIBsBHBsBgAkAnEPDoEPDwAxDHBPBqCkCbBtCmBVAbCFBTEdCoCOBPCsBXCJDyDuCFDsErBEEsEiBYBjEkCIBOByClBAEOEQESBwChCPDJBbBtAwChCvDpCeAxDOBhBjDBDuCKCeCWEUBoCfEmErDfEJDFAJEXBPEhEeAQCLAeBTCaAOBOErBVBvDqCGDAEb&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice17','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice17" id="Practice17">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question19">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">19.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('18')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_18">
- <strong>
- 5/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/viewall?struct=AbAOEjEHEfDyDyBqEaDYzZBEBuDcBMDFDECgBVBXEHCjCIEkDHDDAlBBEgCqBiBWByDdCcDFEJEVAmCxDFCSAmBmDMABELErvVBPEQDyAdAyAcEBCUEcEpBdEyAMBtDfAnAOAGBaEIAYDgCeDAApDXEGEsAYDADaAyCxwWBuEJDiuUExBSDECLAiDiDuAyBaBmyYEnDLAA&UserPass=2cb13f32eb737e29050471a9799c6cbf','ViewAll_18','location=no,menubars=no,toolbars=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')">All Submissions</a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=18&struct=CKDrBxAKAHCUEJzZCmETExCXEPBCBsDpCuAaBeDxBLCNAeAoAeCTCFDjDhDtBuAJACDrDFENDiETAdExDxDpDAAKEiBYBoBFDKAJDyEoBMBoDsCLANExCqDmDjEdEFCACfDYzUApEFCPDrBOEWDBDkDxAXBQDkChDCAwEhEnDFDbAqBUCNBaDbCiBQAcBQBdEICLAeDGEr&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_18','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_18">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.058.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_18">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- <th align="center" class="partNumber">
- 2
- </th>
- <th align="center" class="partNumber">
- 3
- </th>
- <th align="center" class="partNumber">
- 4
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- <td align="center" class="partPoints">
- 1.25
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 2/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- <td align="center" class="partPoints">
- 1/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 5/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q19"></a>
- Obtain the oxidation number for the element noted in each of the following. (Type your answer using the format +1 and -2.)
- <div class="indent">
- (a) <r>Cl in ClO<sub>3</sub><sup>-</sup></r><br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_817548_18_0_821365','5')}" dir="" id="RB_817548_18_0_821365" autocomplete="off" size="12" value="5" name="RB_817548_18_0_821365"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_817548_18_0_821365"><br><br>
- (b) <r>As in H<sub>2</sub>AsO<sub>3</sub><sup>-</sup></r><br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">2</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_817548_18_1_821365','3')}" dir="" id="RB_817548_18_1_821365" autocomplete="off" size="12" value="3" name="RB_817548_18_1_821365"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_817548_18_1_821365"><br><br>
- (c) <r>Cr in CrO<sub>4</sub><sup>2-</sup></r><br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">3</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_817548_18_2_821365','6')}" dir="" id="RB_817548_18_2_821365" autocomplete="off" size="12" value="6" name="RB_817548_18_2_821365"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_817548_18_2_821365"><br><br>
- (d) <r>Zn in Zn(OH)<sub>4</sub><sup>2-</sup></r><br><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 1.25/1.25" style="display: none;">4</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RB_817548_18_3_821365','2')}" dir="" id="RB_817548_18_3_821365" autocomplete="off" size="12" value="2" name="RB_817548_18_3_821365"></span></span><img title="Your answer is correct." alt="Your answer is correct." src="/wastatic/common/img/tick.png" id="mark_RB_817548_18_3_821365">
- </div><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=144','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/3008.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('DlCwCwCwCjCKBtBSEJCCBYDjDeEdzUEaDOBFAjAWDaBKBGEmAQDmDPDDDABVEQEvDPEEAoCoDsAxBIAmAeBuBvAuADAjBPBoBLBgBlELEjCeCXCaCwCgBWDJDEBWEcAsEmDaEYCrECErDnCLBJAwEaCiAhCpEvCrENDGCqDGDnCjBQAwCqCOELCJBJCIuUDTBnCbBOCe',true,'');" class="sButton" value="Submit New Answers To Question 19" name="Submit18" id="sub18">
- <input type="submit" onclick="return submit_this('CwDFACCUAyCuEsCxDbDoEDCyBoCYDBDiAlDCEOCIDRBKBtDawWBpBRAtBvBnCqBbCrBCCAEGDRDXBYCPBqBPCqEoAPBBCDEHEBAtDNEqDREpyYClCCCGAkErAFAyAxDEAiARCWCyEjBMEnADDqEgDVEeCsAfAFAJCRELBSBCEVDNCPBuEiBhEDCVAhCIBfzZDo',true,'')" class="sButton" value="Save Work" name="Save18">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=uUBHAsEhDTAuEvAsDlALEEBdCfDYDrBEEEDuEVCVAhBaCDBdBtEgBmCNBKCvCIDjAqAGDmDOEgAEyYCwBHEyDmEECRArDlDhCbEVEsAoDYDuBBCBCeAjDxByAJBBDqAjDyEqwWCkCWEADOBqCgAlDswWDRDcEcBRELAfDsANDwCOAkDaEeDcEtEOENDpCXApCnDkDXzUDlDeAdEPAqAKBcAuAsEjCrAEBeBwDcCqCqEEBcBM&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice18','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice18" id="Practice18">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <br>
- <div class="waQBox container" id="question20">
- <div class="top container">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- <div class="title">
- <span class="qNum">20.</span>
- <span width="100%" class="leftBarTitle">
- <span style="margin-right: 15px;" class="pageLeft">
- <a href="javascript:doDetail('19')" class="qdetails_link" style="background: url("/wastatic/common/img/plus_icon.png") no-repeat scroll left center transparent; padding-left: 20px;" id="detail_link_19">
- <strong>
- –/5 points
- </strong>
- </a>
- </span>
- <span class="dashBoardItem">
- <a href="javascript:openWindow('/v4cgi/student/assignment/notes?pos=19&struct=EyBYEhAdDUExCKEXBtBuEtBiBkADEFBbBvDmDyDfBnEOAjEeEFBwAfEcAACVCXDTBxCgDCCWBHDnAvAuErBLvVAJEHBaDFCaAbBUAvDLBNCIBSAKDdChDhDvEUCqAoDYBeCIDfDQCcEeCyAWBsAhAkAkApCtCiCiCcBVAgBdBMEiDVDuAmBxDiAGEmEpBEEJDVDbEKEADM&UserPass=2cb13f32eb737e29050471a9799c6cbf','Notes_19','location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,width=670,height=560')" style="background: url("/wastatic/common/img/page_white.png") no-repeat scroll left center transparent; padding: 2px 0pt 2px 20px;" id="notes_link_19">
- <strong>Notes</strong>
- </a>
- </span>
- </span>
- <span class="qTitleRight">
- <span class="dashBoardItem">
- Question: EbGam9 4.PP.069.
- </span>
- <span>
- </span>
- </span>
- </div>
- </div>
- <div class="bottom">
- <div class="left"></div>
- <div class="right"></div>
- <div class="border"></div>
- </div>
- <div class="preContent container">
- <div class="qdetails container" id="detail_19">
- <div class="container questionPartNumberRow">
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- Question part
- </div>
- <div style="border-top: 0px none;" class="label">
- Points
- </div>
- <div style="border-top: 0px none;" class="label">
- Submissions
- </div>
- </div>
- <div class="pageLeft scrollable questionNumbers">
- <table>
- <tbody><tr>
- <th align="center" class="partNumber">
- 1
- </th>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/5
- </td>
- </tr>
- <tr>
- <td align="center" class="partPoints">
- 0/10
- </td>
- </tr>
- </tbody></table>
- </div>
- <div class="pageLeft">
- <div style="border-top: 0px none;" class="label">
- <strong>Total</strong>
- </div>
- <div style="border-top: 0px none;" class="label">
- <strong>
- 0/5
- </strong>
- </div>
- <div style="border-top: 0px none;" class="label">
-
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="standard qContent container">
- <div class="studentQuestionBox studentQuestionContent">
- <a name="Q20"></a>
- An aqueous solution is made from <font color="red">0.827</font> g of potassium permanganate, KMnO<sub>4</sub>. If the volume of solution is <font color="red">56.0</font> mL, what is the molarity of KMnO<sub>4</sub> in the solution?<br><a href="javascript:SIGFIGS_HELP()"><img border="0" title="WebAssign will check your answer for the correct number of significant figures." alt="WebAssign will check your answer for the correct number of significant figures." src="/v4images/sigfigs.gif"></a><span class="qTextField"><span class="tooltipBox">
- <span class="box_num" title="Points: 0/5" style="display: none;">1</span><input type="text" onkeyup="if(typeof change_mark == 'function'){change_mark('RN_821658_19_0_825475','')}" dir="ltr" id="RN_821658_19_0_825475" autocomplete="off" size="10" value="" name="RN_821658_19_0_825475"></span></span> <i>M</i><br><div class="extraContent">
- <p style="padding-left: 4px; padding-top: 12px;">
- <img title="Need Help?" alt="Need Help?" src="/tusseyvids/Help_00.gif">
- <a onclick="return openEbook('v4cgi','http://img.webassign.net/ebooks/ebgam9/toc.html&type=vpage&id=68&page=154','68','on')" href="#"><img border="0" title="Read It" alt="Read It" onmouseout="this.src='/tusseyvids/Help_btn_01_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_01_2.gif'" src="/tusseyvids/Help_btn_01_1.gif"></a>
- <a href="javascript:open_bc_enhanced('watch_it', 'http://college.cengage.com/chemistry/discipline/thinkwell/5552.html', 1)"><img border="0" title="Watch It" alt="Watch It" onmouseout="this.src='/tusseyvids/Help_btn_02_1.gif'" onmouseover="this.src='/tusseyvids/Help_btn_02_2.gif'" src="/tusseyvids/Help_btn_02_1.gif"></a>
- </p><p>
- </p></div>
- <div class="qButtons container">
- <input type="submit" onclick="return submit_this('uUCbDtCGCmCkCtCyEKBXDaCnALDuAfExEiDoBjBjExDyCGBDCeBYCADRDQCpAWAQCJBtAhCwExAsEXEXEQBHCVCHCpEJCWBoBWEUAQDDERCnAwCkAgCNCDDhCGEmDpErBvCAyYDtEVDjEuBRCEDjEsAUBMEeDBDqDPElBLCIBUBcAtCWBOEIBnDOClEyBHEDDSBuAdBb',true,'');" class="sButton" value="Submit New Answers To Question 20" name="Submit19" id="sub19">
- <input type="submit" onclick="return submit_this('BXEmEADbEHCwAVAyCCEaDUBFDGAUChEgCAArCKDSASEjEpExDFERBLCdELCNEJBSEqDsCCzZEfDgCdyYDUDyBTDqBWCKClCQBDAnENDgAWEdCJBlAJAjAcDXBeDdDCEbAJBuBqAFAMDhDkAEyYAQBLAlDgBAEPDGCOAhDJDqAxAbBvEwEOAfCKDmAREyDLANDd',true,'')" class="sButton" value="Save Work" name="Save19">
- <input type="submit" onclick="openWindow('/v4cgi/student/practice.tpl?struct=AkDEDGBQEqEpERCJEuBAAyBjBlEUAqAQCcDqCsEJEhBSCgBbDLCUCREVBgCbBWDoEMBKAICfDCEFETDhDSDtBLEFEgCFBvBxDHDvAHBCCrCeEeDKzZCouUBbEEAADACvEvCyEhACEFBWBXBtBUDlApCCBWCoEUCQCIDGCREdCAAOCLAMAUABBvEVDnARDwEIAuDYAbBqATCYExBXBXCDCUCoDMAiBdBSDKBfBmDvDjAuDIAi&UserPass=2cb13f32eb737e29050471a9799c6cbf','Practice19','width=740,height=620,scrollbars=yes,resizable=yes'); return false" class="sButton" value="Practice Another Version" name="Practice19" id="Practice19">
- </div>
- </div>
- </div>
- <div class="qButtons container"></div>
- </div>
- <a name="submit_anchor"></a>
- <div class="finalSubmitBox container">
- <div class="rTopCorner">
- <div class="lTopCorner">
- <div class="tBorder"></div>
- </div>
- </div>
- <div class="finalSubmitBoxBorder container">
- <div class="studentButtonBox">
- <div class="fButtons container">
- <input type="submit" onclick="return submit_this('AHBYDYyYAnAVAeElEtCeDGDlDGAUBHCtBOAkCnEjAYEEAwEjCyAjEWBNBmArDOBOAAEkEcCXBPATCqAODEBaCIDIEODjDhECBVDgANBPBnEJDGBJCkDmBqBeDUEyzUBrDDCoEpBPBREFAtAjAMBKAKDABd',false,'2b629916af7c4340b92ae22fd27ce248')" class="fButton" value="Submit All New Answers" name="SubmitAll">
- <input type="submit" onclick="return submit_this('AlBjAYBICsDpDLCNDACjBBAUCiEoBqAeEfEfAWAMDfBbBMAmAOCdALDACoCGEtDvCaErBtCWCPDjBjElAqCKEmEHAhBuCTEICHECEJDyAADJCLEYEvDSChEKDEBMArBwDxBJEgAxCNBjDJDQCJES',false,'')" class="fButton" value="Save All Work" name="SaveAll">
- </div>
- </div>
- </div>
- <div class="bBox">
- <div class="borderWrap">
- <div class="bBorder"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="finalLinks">
- <a href="javascript:onClick=document.forms[0].course.value='100098,141054';
- document.forms[0].sid.value=''; click_link('AKEyDHEiBoDuATAjAVBrCiACyYAyApAnAwBRAsAcCXERCKCwAfBlCHAUCHAHyYBBAICcAXCmBnDyEiDvDqEHEWCxATDEAYAyAPBVEtDnCd')">Home</a>
- <a href="javascript:onClick=document.forms[0].course.value='100098,141054';
- document.forms[0].sid.value=''; click_link('ABAbDsEEBFuUAVEMErAoCcBXDvDtETEACxDyBbAPCkDcDACXBIDRAcArCSBGDBCOCuEmEFBDDmCUCrBCDJArCKBNCWuUEiEBDJBYDpDWEhDCABCBELEtAfBsAy')">My Assignments</a>
- </div>
- <input type="hidden" id="sid" value="" name="sid">
- </div>
- <!-- End page -->
- <div class="container" id="footerBox">
- <p id="copyright">WebAssign® 4.0 © 1997-2003 by North Carolina State University. Portions © 2003-2010 by Advanced Instructional Systems, Inc. All rights reserved.
- </p>
- </div>
- </form>
- <div class="y-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div><div class="tool-tip" style="visibility: hidden; display: none; position: absolute; top: 0px; left: 0px;"><div class="tip-top"></div><div class="tip"></div><div class="tip-bottom"></div></div></body></html>
- Home :: Send a comment :: Discuss
- ©2007 - 2010 Veign, LLC All Rights Reserved :: Designed & Developed by Veign
- Online Password Generator :: Online Image Resizer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement