• 2022-07-25 问题

    小麦一生中各张叶片因其发生时间、着生部位和功能不同,可以分为三组,对于主茎13叶、5个伸长节间品种,()为上层叶组。 A: 9/0—13/0\n B: 、10/0—13/0\n C: 11/0—13/0\n D: 12/0—13/0

    小麦一生中各张叶片因其发生时间、着生部位和功能不同,可以分为三组,对于主茎13叶、5个伸长节间品种,()为上层叶组。 A: 9/0—13/0\n B: 、10/0—13/0\n C: 11/0—13/0\n D: 12/0—13/0

  • 2022-06-06 问题

    一元二次方程3x2-x=0的解是(  ) A: x=0 B: x1=0,x2=3 C: x1=0,x2=13 D: x=13

    一元二次方程3x2-x=0的解是(  ) A: x=0 B: x1=0,x2=3 C: x1=0,x2=13 D: x=13

  • 2022-06-01 问题

    !(4-9)的结果是() A: 13 B: -13 C: 1 D: 0

    !(4-9)的结果是() A: 13 B: -13 C: 1 D: 0

  • 2022-05-30 问题

    a=14>12?13:14>12?1:0;执行之后a等于( )。 A: 14 B: 13 C: 0 D: 1

    a=14>12?13:14>12?1:0;执行之后a等于( )。 A: 14 B: 13 C: 0 D: 1

  • 2022-06-03 问题

    for i in range(1,13): A: 1至13 B: 1至12 C: 0至13 D: 0至12

    for i in range(1,13): A: 1至13 B: 1至12 C: 0至13 D: 0至12

  • 2022-06-27 问题

    表达式12>=13的值是多少? A: 12 B: 13 C: 0 D: true

    表达式12>=13的值是多少? A: 12 B: 13 C: 0 D: true

  • 2022-06-05 问题

    按照IPV6地址压缩规则此地址:2001:0000:0000:0013:0000:0000:0b0c:3701压缩后() A: 2001::13:0:0:b0c:3701 B: 2001:0:0:13::b0c:3701 C: 2001::13::b0c:3701 D: 2001::0013::b0c:3701

    按照IPV6地址压缩规则此地址:2001:0000:0000:0013:0000:0000:0b0c:3701压缩后() A: 2001::13:0:0:b0c:3701 B: 2001:0:0:13::b0c:3701 C: 2001::13::b0c:3701 D: 2001::0013::b0c:3701

  • 2022-07-28 问题

    x = 13,y=-13,执行语句x,y=y,x后,变量x的值为( ) A: 13 B: 0 C: -13 D: 出错

    x = 13,y=-13,执行语句x,y=y,x后,变量x的值为( ) A: 13 B: 0 C: -13 D: 出错

  • 2021-04-14 问题

    在HTML中 标记的作用是 A. 在窗口中划一条水平线 B. 换行 C. 设置链接 D. 插入表格 正确答案:D 学生答案:B 错误 得分:0.0 分 取消 确定 
 Zepto(function($){
 
 //$("img:not(.ans-formula-moudle,.goTop)").on('click',function(){
 $("img:not(.ans-formula-moudle)").not('.goTop').on('click',function(){
 var url = $(this).attr("src");
 jsBridge.postNotification("CLIENT_PREVIEW_IMAGES", {
 imageUrls : [{
 imageUrl : url,
 getOriginSize : 1
 }],
 showIndex : 0
 });
 });
 
 
 $('.folding').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().hide();
 zlo_opened.removeClass("zlo_opened");
 }else{
 folding.next().show();
 zlo_opened.addClass("zlo_opened");
 }
 });
 });
 
 });
 
 $('.folding2').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().fadeOut();
 zlo_opened.removeClass("zlo_opened");
 $(folding.next()).data("loaded",true);
 }else{
 folding.next().fadeIn();
 zlo_opened.addClass("zlo_opened");
 if(!$(folding.next()).data("loaded")){
 voteStatistic(folding.next(),zlo_opened.attr("data"));
 }
 }
 });
 });
 
 function _jsBridgeReady() {
 var icon = ServerHost.moocDomain + "/images/work/phone/reWork.png";
 jsBridge.postNotification('CLIENT_CUSTOM_MENU', {
 show : '1',
 icon : icon,
 menu : '',
 option : "rework()",
 index : '0',
 width : '65',
 height : '18'
 });
 
 jsBridge.bind('CLIENT_REFRESH_EVENT', function(object){
 window.location.reload();
 });
 }
 
 function rework() {
 var answerId = $("#examAnswerId").val();
 var relationId = $("#examRelationId").val();
 var courseId = $("#courseId").val();
 var classId = $("#classId").val();
 
 $(".cx_alert-txt").html("打回后学生需要重新提交考试!");
 $("#okBtn").html("打回");
 $(".cx_alert").css("display", "block");
 $(".cx_alert-box").css("display", "block");
 $("#okBtn").unbind();
 $("#cancelBtn").unbind();
 $("#okBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 var url = "/exam/phone/reTest?classId=" + classId + "&answerId=" + answerId + "&relationId=" + relationId + "&courseId=" + courseId;
 $.ajax({
 url : url,
 type : 'get',
 dataType : 'json',
 success : function(data) {
 openWindowHintClient(1, data.msg, function() {
 jsBridge.postNotification("CLIENT_REFRESH_STATUS", {
 "status" : 1
 });
 jsBridge.postNotification('CLIENT_EXIT_LEVEL', {
 message : ''
 });
 }, 1000);
 }
 });
 });
 $("#cancelBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 });
 }
 
/images/phone/goTop.png

    在HTML中 标记的作用是 A. 在窗口中划一条水平线 B. 换行 C. 设置链接 D. 插入表格 正确答案:D 学生答案:B 错误 得分:0.0 分 取消 确定 
 Zepto(function($){
 
 //$("img:not(.ans-formula-moudle,.goTop)").on('click',function(){
 $("img:not(.ans-formula-moudle)").not('.goTop').on('click',function(){
 var url = $(this).attr("src");
 jsBridge.postNotification("CLIENT_PREVIEW_IMAGES", {
 imageUrls : [{
 imageUrl : url,
 getOriginSize : 1
 }],
 showIndex : 0
 });
 });
 
 
 $('.folding').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().hide();
 zlo_opened.removeClass("zlo_opened");
 }else{
 folding.next().show();
 zlo_opened.addClass("zlo_opened");
 }
 });
 });
 
 });
 
 $('.folding2').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().fadeOut();
 zlo_opened.removeClass("zlo_opened");
 $(folding.next()).data("loaded",true);
 }else{
 folding.next().fadeIn();
 zlo_opened.addClass("zlo_opened");
 if(!$(folding.next()).data("loaded")){
 voteStatistic(folding.next(),zlo_opened.attr("data"));
 }
 }
 });
 });
 
 function _jsBridgeReady() {
 var icon = ServerHost.moocDomain + "/images/work/phone/reWork.png";
 jsBridge.postNotification('CLIENT_CUSTOM_MENU', {
 show : '1',
 icon : icon,
 menu : '',
 option : "rework()",
 index : '0',
 width : '65',
 height : '18'
 });
 
 jsBridge.bind('CLIENT_REFRESH_EVENT', function(object){
 window.location.reload();
 });
 }
 
 function rework() {
 var answerId = $("#examAnswerId").val();
 var relationId = $("#examRelationId").val();
 var courseId = $("#courseId").val();
 var classId = $("#classId").val();
 
 $(".cx_alert-txt").html("打回后学生需要重新提交考试!");
 $("#okBtn").html("打回");
 $(".cx_alert").css("display", "block");
 $(".cx_alert-box").css("display", "block");
 $("#okBtn").unbind();
 $("#cancelBtn").unbind();
 $("#okBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 var url = "/exam/phone/reTest?classId=" + classId + "&answerId=" + answerId + "&relationId=" + relationId + "&courseId=" + courseId;
 $.ajax({
 url : url,
 type : 'get',
 dataType : 'json',
 success : function(data) {
 openWindowHintClient(1, data.msg, function() {
 jsBridge.postNotification("CLIENT_REFRESH_STATUS", {
 "status" : 1
 });
 jsBridge.postNotification('CLIENT_EXIT_LEVEL', {
 message : ''
 });
 }, 1000);
 }
 });
 });
 $("#cancelBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 });
 }
 
/images/phone/goTop.png

  • 2022-10-24 问题

    当车削 Φ14其上偏差为-0 .2,下偏差为 -0 .5的外圆尺寸时,下列加工尺寸合格的是( )。 A: Φ13 .5~Φ14 .5 B: Φ13 .5~Φ14 .2 C: Φ13 .8~Φ14 .2 D: Φ13 .5~Φ13 .8

    当车削 Φ14其上偏差为-0 .2,下偏差为 -0 .5的外圆尺寸时,下列加工尺寸合格的是( )。 A: Φ13 .5~Φ14 .5 B: Φ13 .5~Φ14 .2 C: Φ13 .8~Φ14 .2 D: Φ13 .5~Φ13 .8

  • 1 2 3 4 5 6 7 8 9 10