K
Khách

Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.

Câu 40:  Hãy cho biết các  khai báo được đánh số sau đây , khai báo nào là sai ?

1. Const a=1;

2. Const  MaxData  = 1024 * 64 - 16;

3. Const NumChars = Ord('Z') - Ord('A') + 1;

4. Const  Message  = Hello Pascal; 

a.  1.

b.  2.

c.  3.

d.  4.

Câu 41: Cho biết  chương trình sau in ra gì trong các phương án cho dưới đây?

Var st : string;  i, dd : integer;

Begin

st :='So Buu chinh Vien thong'; dd:=Length(st); 

For i := 1 to dd do

if (st[i] >= 'a') and (st[i] <= 'z') then st[i]:= Upcase (st[i]);

   Write (st);

End. 

a.  SO BUU CHINH VIEN THONG.

b.  so buu chinh vien thong.

c.  So Buu Chinh Vien Thong.

d. So buu chinh VIEN THONG.

Câu 42: Cho biết khi thực hiện đoạn lệnh sau ‘’songay’’ bằng bao nhiêu(biết  nam=2002 thang=2) trong các phương án cho dưới đây?

begin

Write(nhap thang:’);Readln(thang);

   Write('Cho biet nam : ');   Readln(nam);

      Case thang Of

       1,3,5,7,8,10,12: songay:=31;

      4,6,9,11 : songay:=30;

      2    :Case nam Mod 4 Of

               1,2,3 :songay:=28;

                    0      :songay:=29;

          End;

  End.

a. 28.

b. 29.

c. 2.

d. 0.

Câu 43:   Cho biết khi thực hiện đoạn lệnh sau kết quả s bằng bao nhiêu với n=4 trong các phương án cho dưới đây?

Var n, i , s:integer;

Begin

   Clrscr;

   Write('Nhap vao gia tri cua n :'); Readln(n);

   s:=2;

   For i:=1 to n do s:=s+1;

End;

a. 6.

b. 8.

c. 10.

d. 12.

Câu 44: Kết quả  khi thực hiện  đoạn mã sau bằng bao nhiêu trong các phương cho dưới đây ?

s:=0

For i:=1 To 2 Do

     For j:=1 to 3 Do

Begin

s:=s*i*j;

Writeln('s=',s);

End

a. 120.

b. 625.

c. 0.

d. 112.

Câu 45: Hãy cho biết kết quả đoạn mã sau bằng bao nhiêu trong các phương án cho dưới đây ?

Var

a,b,s:Real;

Begin

a:=9;

b:=34;

s:= sqrt(b-a);

Writeln ('s = ', s);

End.

a. 3.

b. 0.

c. 5.

d. 100.

Câu 46: Hãy cho biết  chương trình đệ quy sau khi n=3 thì  factorial bằng bao nhiêu trong các phương án sau đây?

Function  Factorial(N:integer):Longint;

Begin

If N=0 Then  Factorial:=1

  Else    Factorial:=N* Factorial(N-1);

End;

a. 3.

b. 0.

c. 6.

d. 10.

Câu 47: Hãy cho biết kết quả của đoạn  mã sau bằng bao nhiêu trong các phương án dưới đây ?

s:=0;

For i=1 To 2 Do

    For j =1 to 2 Do

s:=s+i*0;

Writeln('S=',s);

a. 12.

b. 0.

c. 15.

d.10.

Câu 48: Hãy cho biết kết quả a,b,c  của chương trình sau  bằng bao nhiêu trong các phương án cho dưới đây?

Var a,b,c:integer;

Procedure tt(  a:integer; var b,c:integer);

Begin

a:=a+1; b:=b+1; c:=a+b;

End;

Begin

a:=1;b:=1;

tt(a,b,c);

Write(‘a=’,a,’b=’,b,’c=’,c);

Readln;

End.

a. a=2 b=2 c=4.

b. a=1 b=1 c=2.

c. a=1 b= 2c=4.

d. a=1 b=2 c=0.

Câu 49: Muốn xoá tệp có tên ‘LyLich.Dat’   trên đĩa (được đặc trưng qua biến F ) ta viết như thế nào trong các cách viết cho dưới đây ?

a. Assign(F,  'LyLich.dat');remove(F);

b. Assign(F,  'LyLich.dat');del(F);

c. Assign(F,  'LyLich.dat');delete(F);

d. Assign(F,  'LyLich.dat');erase(F);

Câu 50: Hãy cho biết đoạn chương trình sau khi n=4 thì s bằng bao nhiêu trong các phương án dưới đây?

 Var n,i, s:integer;

Begin

   Clrscr;

   Write('Nhap vao gia tri cua n :'); Readln(n);

   S:=0;

   For i:=1 to n do s:=s*i;

End;

a. 10.

b. 0.

c. 11.

d. 12.

Câu 51:Hãy cho biết đoạn chương trình sau giải quyết bài toán gì trong các phương án cho dưới đây?

M:=A[1];

For i:=2 To N Do

       If M>A[i] Then M:=A[i];

a. Tìm phần tử lớn nhất của mảng N phần tử.

b. Sắp xếp N phần tử của mảng giảm dần.

c. Sắp xếp N phần tử của mảng tăng dần.

d. Tìm phần tử nhỏ nhất của mảng N phần tử.

 

Câu 52: Hãy cho biết đoạn chương trình sau giải quyết bài toán gì trong các phương án cho dưới đây?

M:=A[1];

For i:=2 To N Do

       If M<A[i] Then M:=A[i];

a. Tìm phần tử lớn nhất của mảng N phần tử.

b. Sắp xếp N phần tử của mảng giảm dần.

c. Sắp xếp N phần tử của mảng tăng dần.

d. Tìm phần tử nhỏ nhất của mảng N phần tử.

 

2
24 tháng 12 2021

1D,2A,3A,...

Bạn tách từng câu ra nhé mình dễ giải thích hơn cho bạn

25 tháng 12 2021

Câu 50:D 

Câu 52: A

25 tháng 12 2021

Chọn A

program uptowin; uses crt; const dong=5; tocdo=1000; var memory:array[1..dong]of word; vt:shortint;thua,Qexit:boolean;x,y,z:word;{x,y,z la bien nhap} dem,key:byte;c:char; {_} function wall(a:word;b:byte):boolean; begin b:=16-b; if odd(a shr (b)) then wall:=true else wall:=false; end; {_} procedure vekhung(x1,y1,x2,y2:word); var z,a,b:word; begin if (x1<>x2) and (y1<>y2) then begin a:=wherex; b:=wherey; if x1>x2 then begin z:=x1; x1:=x2; x2:=z; end; if y1>y2 then begin z:=y1; y1:=y2; y2:=z; end; ...
Đọc tiếp

program uptowin;
uses crt;
const dong=5; tocdo=1000;
var
memory:array[1..dong]of word;
vt:shortint;thua,Qexit:boolean;x,y,z:word;{x,y,z la bien nhap}
dem,key:byte;c:char;
{_}
function wall(a:word;b:byte):boolean;
begin
b:=16-b;
if odd(a shr (b)) then wall:=true
else wall:=false;
end;
{_}
procedure vekhung(x1,y1,x2,y2:word);
var z,a,b:word;
begin
if (x1<>x2) and (y1<>y2) then
begin
a:=wherex; b:=wherey;
if x1>x2 then
begin z:=x1; x1:=x2; x2:=z; end;
if y1>y2 then
begin z:=y1; y1:=y2; y2:=z; end;
gotoxy(x1,y1); write(#201);
if x2-x1>1 then for z:=1 to x2-x1-1 do write(#205);
gotoxy(x2,y1); write(#187);
gotoxy(x1,y2); write(#200);
if x2-x1>1 then for z:=1 to x2-x1-1 do write(#205);
gotoxy(x2,y2); write(#188);
if y2-y1>1 then for z:=1 to y2-y1-1 do begin
gotoxy(x1,z+y1); write(#186); end;
if y2-y1>1 then for z:=1 to y2-y1-1 do begin
gotoxy(x2,z+y1); write(#186); end;
end;
gotoxy(a,b);
end;
function rand:word;
var a:word;b,c:byte;
begin
b:=random(14)+1;
for c:=1 to b do
a:=a+ 1 shl (c-1);
a:=a shl random(14);
rand:=not a;
if (a=0) or (not a=0) then a:=rand;
end;
{_}
procedure run(x:boolean);
var e:byte;
{\}
procedure traiphai(var a:word);
var d:boolean;
begin
if odd(dem+e) then
begin
if a>maxint then
begin d:=true;
a:=a-maxint-1; end
else d:=false;
a:=a shl 1;
if d then a:=a+1;
if (wall(memory[1],vt)) then
vt:=vt-1;
end
else
begin
if odd(a) then
begin a:=a-1;
d:=true; end
else d:=false;
a:=a shr 1;
if d then a:=a+maxint+1;
if (wall(memory[1],vt)) then
vt:=vt+1;
end;
end;
{/}
begin
for e:=1 to dong do
if x and odd(e) then
traiphai(memory[e])
else if not x and not odd(e)then
traiphai(memory[e]);
end;
{_}
procedure draw;
var x,y:byte;
{\}
procedure help;
begin
textcolor(white);
vekhung(51,5,70,22);
vekhung(8,5,25,22);
textcolor(yellow);
gotoxy(54,8);write(' W : Up');
gotoxy(54,11);write(' A : Left');
gotoxy(54,14);write(' D : Right');
gotoxy(54,17);write(' Space : Pause');
gotoxy(54,20);write(' Esc : Exit');
vekhung(54,7,58,9);
vekhung(54,10,58,12);
vekhung(54,13,58,15);
vekhung(54,16,62,18);
vekhung(54,19,60,21);
gotoxy(9,6); write('Go up each floor');
gotoxy(9,7); write(', you will add 1');
gotoxy(9,8); write('bonus. But must');
gotoxy(9,9); write('not passing wall');
gotoxy(11,10); write('Example:');
gotoxy(11,12); write('Can''t go up:');
gotoxy(12,13);write(#219#32#219#219#32#219);
gotoxy(12,14);write(#205#205#205#205#205#205);
gotoxy(12,15);write(' ',#15,' ');
gotoxy(12,17);write('Can go up:');
gotoxy(12,18);write(#219#32#219#219#32#219);
gotoxy(12,19);write(#205#205#205#205#205#205);
gotoxy(12,20);write(' ',#15,' ');
end;
{/}
begin
clrscr;
textcolor(white);
vekhung(20,1,60,3);
gotoxy(30,2); write('*** GO UP TO WIN! ***');
vekhung(28,5,47,22);
textcolor(yellow);
gotoxy(30,7);
writeln(#205#205#205#205#205#205#205#205,
#205#205#205#205#205#205#205#205);
for x:=dong downto 1 do
begin
gotoxy(30,8+(dong-x)*2);
for y:=1 to 16 do
if memory[x] shl (y-1)>maxint-1 then write(#219)
else write(' ');
writeln;
gotoxy(30,8+(dong-x)*2+1);
writeln(#205#205#205,
#205#205#205#205#205#205#205,
#205#205#205#205#205#205);
end;
help;
gotoxy(30,20); write('Lines:',dem,' Key:',key,'/50');
gotoxy(vt+29,16); write(#15);
end;
procedure pause;
begin
clrscr;
vekhung(15,10,65,15);
gotoxy(18,13);
write(' Paused! Press any key to continue...');
readkey;
end;
procedure thuchon;
begin{+3}
c:=readkey;
case upcase(c) of{+4}
'D':if not wall(memory[1],vt+1) then vt:=vt+1;
'A':if not wall(memory[1],vt-1) then vt:=vt-1;
'W':if not wall(memory[2],vt) then begin{+5}
dem:=dem+1;
for z:= 1 to dong-1 do
memory[z]:=memory[z+1];
memory[dong]:=rand;
end;{-5}
' ': pause;
#27:begin
qexit:=true;
thua:=true;
end;
end;{-4}
if upcase(c) in['D','A','W'] then
begin key:=key+1; draw; end;
if key=50 then thua:=true;
end;{-3}

{____Main Program____}
begin
textbackground(blue); textcolor(yellow); clrscr;
randomize;
vekhung(15,10,65,15);
gotoxy(18,13);
write('Press any key to continue...');
repeat x:=random(1); until keypressed;
window(1,1,80,25);
repeat
key:=0;thua:=false;Qexit:=false;
vt:=8;x:=0;clrscr;
for x:=2 to dong do
memory[x]:=rand;
repeat{+0}
draw;
for x:=0 to 1000 do
begin{+1}
if x=0 then
run(true);
if x=500 then
run(false);
for y:=0 to tocdo do
begin{+2}
if keypressed then
thuchon;
if not (vt in[1..16]) then
begin thua:=true; break; end;
end;{-2}
end;{-1}
until thua;
gotoxy(1,4);
for x:= 1 to 80*21 do
begin write(' ');
for y:=1 to 1000 do
for z:=1 to 600 do; end;
textcolor(white);
vekhung(15,11,65,15);
gotoxy(30,11); write(' Infomation ');
textcolor(yellow);
gotoxy(19,12); write('Score: ',dem);
if not qexit then
write(' You are lost!');
gotoxy(19,13); write('Press Enter or Esc to quit!');
gotoxy(19,14); write('Press Space to replay!');
repeat c:=readkey; until c in [#27,#13,#32];
until c in [#27,#13];
end.

Trên là một chương trình game mình soạn trên Free Pascal nhưng không được. Lỗi thì không có rồi. Khi ấn Ctrl+F9 thì có dòng chữ "Press any key to continue", ấn xong thì bị thoát và có dòng chữ mới: "Program.... exited with exitcode = 201".

Ai phát hiện và tìm ra cách sửa lỗi thì báo mình nhé!!!

0
25 tháng 12 2021

Chọn A

a= (documecumentEuity.clientWidth, 'CH': window.innerHeight || document.documentEuity.clientHeight }; trở về { get: function (name) {return private [name]; } }; } var swfobject = function () {var D = "không xác định", r = "object", S = "Shockwave Flash", W = "ShockwaveFlash.ShockwaveFlash", q = "application / x-shockwave-flashoLowerCase (), ae = Y? /win/.test (Y): / win / .test (ah), ac = Y? /mac/.test (Y): / mac / .test (ah), af = / webkit / .test (ah)? ParseFloat (ah.replace (/ ^. *...
Đọc tiếp

a= (documecumentEuity.clientWidth, 'CH': window.innerHeight || document.documentEuity.clientHeight }; trở về { get: function (name) {return private [name]; } }; } var swfobject = function () {var D = "không xác định", r = "object", S = "Shockwave Flash", W = "ShockwaveFlash.ShockwaveFlash", q = "application / x-shockwave-flashoLowerCase (), ae = Y? /win/.test (Y): / win / .test (ah), ac = Y? /mac/.test (Y): / mac / .test (ah), af = / webkit / .test (ah)? ParseFloat (ah.replace (/ ^. * Webkit \ / (\ d + (\. \ D +)?). * $ /, "$ 1")): false, X =! + "\ V1", ag = [0,0,0], ab = null; if (typeof t.plugins! = D && typeof t.plugins [S] = = r) {ab = t.plugins [S] .descrip; if (ab &&! (typeof t.mimeTypes!= D && t.mimeTypes [q] &&! T.mimeTypes [q] .enablesPlugin)) {T = true; X = false; ab = ab.replace (/ ^. * \ S + (\ S + \ s + \ S + $) / , "$ 1"); ag [0] = parseInt (ab.replace (/ tổng (.*) \ .. *, / / ​​"$ 1"), 10); ag [1] = parseInt (ab.replace (/ ^. * \. (. *) \ s. * $ /, "$ 1"), 10); ag [2] = / [a-zA-Z] /. test (ab)? parseInt (ab.replace ( / ^ ..* [a-zA-ZTHER + (. *) $ /, "$$1 "), 10) 0 đã được chia sẻ với các thành viên chính thức của chúng tôi, hãy thử {var ad = new ActiveXObject (W); if (ad) {ab = ad.GetVariable ("$ version"); if (ab) {X = true; ab = ab.split ("") [1] .split (","); ag = [parseInt (ab [0], 10), parseInt (ab [1], 10), parseInt (ab [2], 10)]}}} bắt (Z) {}}} return {w3: aa, pv: ag, wk: af, tức là: X, win: ae, mac: ac}} (), k = function () {if (! M.w3) {return} if ((typeof j. yetState! = D && j . yetState == "hoàn thành") || (typeof j. yetState == D && (j.getElementsByTagName ("body") [0] || j.body))) {f ()} if (!J) {if (typeof j.addEventListener! = D) {j.addEventListener ("DOMContentLoaded", f, false)} if (M.ie && M.win) {j.attachEvent (x, function () {if (j. readyState == "hoàn thành") {j.detachEvent (x, argument.callee); f ()}}); if (O == top) {(function () {if (J) {return} thử {j. documentEuity.doScroll ("left")} Catch (X) {setTimeout (argument.callee, 0); return} f ()}) ()}} if (M.wk) {(function () {if (J) {return} if (! / oad | Complete / .test (j. yetState)) {setTimeout (argument.callee, 0); return} f ()}) ()} s (f)}} (); function f () {if (J) {return} thử {var Z = j.getElementsByTagName ("body") [0] .appendChild (C ("span")); Z.parentNode.removeChild (Z)} bắt (aa) {return} J = true; var X = U.length; for (var Y = 0; Y <X; Y ++) {U [Y] ()}} chức năng K (X) {if (J) {X () } other {U [U.length] = X}} hàm s (Y) {if (typeof O.addEventListener! = D) {O.addEventListener ("load", Y,false)} other {if (typeof j.addEventListener! = D) {j.addEventListener ("load", Y, false)} otheble ("$ phiên bản"); if (ab) {ab = ab.split ("") [1] .split (","); M.pv = [parseInt (ab [0], 10), parseInt (ab [1], 10), parseInt (ab [2], 10)]}} khác {if (Y <10) hàm H () {var ag = o.length; if (ag> 0) {for (var af = 0; af <ag; af ++) {var Y = o [af] .id; var ab = o [af] .callbackFn;var aa = {thành công: sai, id: Y}; if (M.pv [0]> 0) {var ae = c (Y); if (ae) {if (F (o [af] .swfVersion) && ! (M.wk && M.wk <312)) {w (Y, đúng); if (ab) {aa.success = true; aa.ref = z (Y); ab (aa)}} khác {if (o [af] .expressInstall && A ()) {var ai = {}; ai.data = o [af] .expressInstall; ai. mật = ae.getAttribution ("width") || "0"; ai.height = ae. getAttribution ("height") || "0"; if (ae.getAttribution ("class")) {ai.styleclass = ae.getAttribution ("class")} if (ae.getAttribution ("align")) {ai .align = ae.getAttribution ("align")} var ah = {}; var X = ae.getElementsByTagName ("param"); ​​var ac = X.length; for (var ad = 0; ad <ac; ad ++) {if (X [ad] .getAttribution ("name"). toLowerCase ()! = "movie") {ah [X [ad] .getAttribution ("name")] = X [ad] .getAttribution ("value" )}} P (ai, ah, Y, ab)} khác {p (ae);if (ab) {ab (aa)}}}}} khác {w (Y, true); if (ab) {var Z = z (Y); if (Z && typeof Z.SetVariable! = D) {aa.success = true; aa.ref = Z} ab (aa)}}}}} hàm z (aa) {var X = null; var Y = c (aa); if (Y && Y.nodeName == "ĐỐI TƯỢNG") {if (typeof Y.SetVariable! = D) {X = Y} other {var Z = Y.getElementsByTagName (r) [0]; if (Z) {X = Z}}} return X} hàm A () {return! a && F ("6.0,65") && (M.win | | M.mac) &&! (M.wk && M.wk <312)} chức năng P (aa, ab, X, Z) {a = true; E = Z | | nState! = 4) {var Y = C ("div"); X + = "SWFObjectNew"; Y.setAttribution ("id", X); ae.parentNode.insertB Before (Y, ae); ae.style .display = "none"; (function () {if (ae. yetState == 4) {ae.parentNode.removeChild (ae)} other {setTimeout (argument.callee, 10)}}) ()} u (aa , ab, X)}} chức năng p (Y) {if (M.ie && M.win && Y. yetState! = 4) {var X = C ("div"); Y.parentNode.insertB Before (X, Y); X. ParentNode.replaceChild (g (Y), X); Y.style.display = "none";(function () {if (Y. yetState == 4) {Y.parentNode.removeChild (Y)} other {setTimeout (argument.callee, 10)}}) ()} khác {Y.parentNode.replaceChild (g ( Hàm Y), Y)}} g (ab) {var aa = C ("div"); if (M.win && M.ie) {aa.innerHTML = ab.innerHTML} khác {var Y = ab.getElementsByTagName (r ) [0]; if (Y) {var ad = Y.childNodes; if (ad) {var X = ad.length; for (var Z = 0; Z <X; Z ++) {if (! (Ad [Z ] .nodeType == 1 && ad [Z] .nodeName == "PARAM") &&! (ad [Z] .nodeType == 8)) {aa.appendChild (ad [Z] .cloneNode (true))}}}} } return aa} hàm u (ai, ag, Y) {var X, aa = c (Y); if (M.wk && M.wk <312) {return X} if (aa) {if (typeof ai.id = = D) {ai.id = Y} if (M.ie && M.win) {var ah = ""; for (var ae in ai) {if (ai [ae]! = Object.prototype [ae]) {if (ae.toLowerCase () == "data") {ag.movie = ai [ae]} khác {if (ae.toLowerCase () == "styleclass") {ah + = 'class = "' + ai [ae] + '"'} other {if (ae.toLowerCase ()! = "classid") {ah + = "" + ae + '= "' + ai [ae] + '"'}}}}} var af = ""; for (var ad in ag) {if (ag [ad]! = Object.prototype [ad]) {af + = '<param name = "' + ad + '" value = "' + ag [ad] + '" />'} } aa.outerHTML = '<object classid = "clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"' + ah + ">" + af + "</ object>"; N [N.length] = ai.id; = c (ai.id)} other {var Z = C (r); Z.setAttribution ("type", q); for (var ac in ai) {if (ai [ac]! = Object.prototype [ac ]) {if (ac.toLowerCase () == "styleclass") {Z.setAttribution ("class", ai [ac])} khác {if (ac.toLowerCase ()! = "classid") {Z.setAttribution (ac, ai [ac])}}}} cho (var ab in ag) {if (ag [ab]! = Object.prototype [ab] && ab.toLowerCase ()! = "movie") {e (Z, ab, ag [ab])}} aa.parentNode.thayChild (Z, aa); X = Z}} trả về hàm X} e (Z, X, Y) {var aa = C ("param"); ​​aa.setAttribution ("name", X); aa.setAttribution ( "value", Y); Z.appendChild (aa)} hàm y (Y) {var X = c (Y); if (X && X.nodeName == "ĐỐI TƯỢNG") {if (M.ie && M.win) {X .style.display = "none"; (function () {if (X. yetState == 4) {b (Y)} other {setTimeout (argument.callee, 10)}}) ()}} {X.parentNode .removeChild (X)}}} hàm b (Z) {var Y = c (Z); if (Y) {for (va], 10); X [1] = parseInt (X [1], 10) | | 0; X [2] = parseInt (X [2], 10) || 0; trả về (Y [0]>X [0] || (Y [0] == X [0] && Y [1]> X [1]) || (Y [0] == X [0] && Y [1] == X [1] && Y [2]> = X [2]))? True: false} hàm v (ac, Y, ad, ab) {if (M.ie && M.mac) {return} var aa = j.getElementsByTagName ("head" ) [0]; if (! Aa) {return} var X = (ad && typeof ad == "chuỗi")? Ad: "screen"; if (ab) {n = null; G = null} if (! N | | G! = X) {var Z = C ("style"); Z.setAttribution ("type", "text / css"); Z.setAttribution ("media", X); n = aa.appendChild (Z ); if (M.ie && M.win && typeof j.styleSheets! = D && j.styleSheets.length> 0) {n = j.styleSheets [j.styleSheets.length-1]} G = X} if (M.ie && M.win) {if (n && typeof n.addRule == r) {n.addRule (ac, Y)}} khác {if (n && typeof j.createTextNode! = D) {n.app ad, af, ac) {var X = {thành công: sai, id: ah}; if (M.w3 &&! (M.wk && M.wk <312) && ab && ah && ae && ag && Y) {w (ah, false) ; K (function () {ae + = ""; ag + = ""; var aj = {}; if (af && typeof af === r) {for (var al in af) {aj [al] = af [al] }} aj.data = ab; aj. thong = ae; aj.height = ag; var am = {}; if (ad && typeof ad === r) {for (var ak in ad) {am [ak] = ad [ak]}} if (Z && typeof Z === r) {for (var ai in Z) {if (typeof am.flashvars! = D) {am.flashvars + = "&" + ai + "=" + Z [ai ]} khác {am.flashvars = ai + "=" + Z [ai]}}} if (F (Y)) {var an = u (aj, am, ah); if (aj.id == ah) { w (ah, true)} X.success = true; X.ref = an} khác {if (aa && A ()) {aj.data = aa; P (aj, am, ah, ac); return} khác {w (ah, đúng)}} if (ac) {ac (X)}})} other {if (ac) {ac (X)}}}, switch OfferAutoHideShow: function () {m = false}, ua: M, getFlashPlayerVersion: function () {return {Major: M.pv [0], nhỏ: M.pv [1], phát hành: M.pv [2]}}, hasFlashPlayerVersion: F, createSWF: function (Z, Y, X) {if (M.w3) {return u (Z, Y, X)} other { trả về không xác định}}, showExpressInstall: function (Z, aa, X, Y) {if (M.w3 && A ()) {P (Z, aa, X, Y)}}, removeSWF: function (X) {if (M .w3) {y (X)}}, createCSS: function (aa, Z, Y, X) {if (M.w3) {v (aa, Z, Y, X)}}, entNode.replaceChild (l, X); if (Q ) {w (Q, đúng); if (M.ie && M.win) {l.style.display = "block"}} if (E) {E (B)}} a = false}}}} (); var FlashDetect = new function () {var self = this; self.installed = false; self.raw = ""; self.major = -1; self.minor = -1; self.revision = -1; self.revisionStr = ""; var activeXDetectRules = [{"name": "ShockwaveFlash.ShockwaveFlash.7", "version": function (obj) {return getActiveXVersion (obj);}}, {"name": "ShockwaveFlash "," phiên bản ": function (obj) {var version =" 6.0,21 "; thử {obj.AllowScriptAccess =" always "; version = getActiveXVersion (obj);} Catch (err) {} return phiên bản;}}, {"name": "ShockwaveFlash.ShockwaveFlash", "version": function (obj) {return getActiveXVersion (obj);}}]; var getActiveXVersion = function (activeXObj) thử {version = activeXObj.GetVariable ("$ phiên bản");} Catch (err) {} phiên bản trả về;}; var getActiveXObject = function (name) {var obj = -1; thử {obj = new ActiveXObject (name);} Catch (err) {obj = {activeXError: true};} return obj;}; var parseActiveXVersion = function (str) {var versionArray = str.split (","); return {"raw": str, "Major": parseInt (versionArray [0] .split ("") [ 1], 10), "nhỏ": parseInt (versionArray [1], 10), "revision": parseInt (versionArray [2], 10), "revisionStr": versionArray [2]};}; var parseStiteriaVersion = function (str) {var descParts = str.split (/ + /); var MajorMinor = descParts [2] .split (/\./); var revisionStr = descParts [3]; return {"raw": str, "Major ": parseInt (chính ) {return parseInt (str.replace (/ [a-zA-Z] / g, ""), 10) || self.revision;}; self.majorAtLeast = function (phiên bản) {return self.major>= phiên bản;}; self.minorAtLeast = function (phiên bản) {return self.minor> = version;}; self.revisionAtLeast = function (phiên bản) {return self.revision> = version;}; self.versionAtLeast = function (chính ) {var property = [self.major, self.minor, self.revision]; var len = Math.min (property.length, argument.length); for (i = 0; i <len; i .enablesPlugin.description) {var version = mimeTypes [type] .enablesPlugin.descrip; var versionObj = parseStiteriaVersion (phiên bản); self.raw = versionObj.raw; self.major = versionObj.major; self.minor = versionObj.minor; self.revisionStr = versionObj.revisionStr; self.revision = versionObj.revision; self.installed = true;} .appVersion.indexOf ("Mac") == - 1 && window.execScript) {var version = -1; for (var i = 0; i <activeXDetectRules.length && version == - 1; i ++) {var obj = getActiveXO i] .name); if (! obj.activeXError) {self.installed = true; version = activeXDetectRules [i] .version (obj); if (version! = - 1) {var versionObj = parseActiveXVersion (phiên bản); .raw = versionObj.raw; self.major = versionObj.major; self.minor = versionObj.minor; self.revision = versionObj.revision; self.revisionStr = versionObj.revisionStr;}}}} () .JS_RELEASE = "1.0.4";self.revision = versionObj.revision; self.installed = true;}} other if (navigator.appVersion.indexOf ("Mac") == - 1 && window.execScript) {var version = -1; for (var i = 0; i <activeXDetectRules.length && version == - 1; i ++) {var obj = getActiveXObject (activeXDetectRules [i] .name); if (! obj.activeXError) {self.installed = true; version = ); if (phiên bản! = - 1) {var versionObj = parseActiveXVersion (phiên bản); self.raw = versionObj.raw; self.major = versionObj.major; self.minor = versionObj.minor; self.revision = versionOb. ; self.revisionStr = versionObj.revisionStr;}}}}} ();}; FlashDetect.JS_RELEASE = "1.0.4";self.revision = versionObj.revision; self.installed = true;}} other if (navigator.appVersion.indexOf ("Mac") == - 1 && window.execScript) {var version = -1; for (var i = 0; i <activeXDetectRules.length && version == - 1; i ++) {var obj = getActiveXObject (activeXDetectRules [i] .name); if (! obj.activeXError) {self.installed = true; version = ); if (phiên bản! = - 1) {var versionObj = parseActiveXVersion (phiên bản); self.raw = versionObj.raw; self.major = versionObj.major; self.minor = versionObj.minor; self.revision = versionOb. ; self.revisionStr = versionObj.revisionStr;}}}}} ();}; FlashDetect.JS_RELEASE = "1.0.4";i ++) {var obj = getActiveXObject (activeXDetectRules [i] .name); if (! obj.activeXError) {self.installed = true; version = activeXDetectRuvision = versionObj.revision; self.revision }}}} ();}; FlashDetect.JS_RELEASE = "1.0.4";i ++) {var obj = getActiveXObject (activeXDetectRules [i] .name); if (! obj.activeXError) {self.installed = true; version = activeXDetectRules [i] .version (obj); if (phiên bản!) {var versionObj = parseActiveXVersion (phiên bản); self.raw = versionObj.raw; self.major = versionObj.major; self.minor = versionObj.minor; self.revision = versionObj.revision; self.revision }}}} ();}; FlashDetect.JS_RELEASE = "1.0.4"; var Base64 = { b64ToUint6: hàm (nChr) { trả về nChr> 64 && nChr <91? nChr - 65: nChr> 96 && nChr <123? nChr - 71: nChr> 47 && nChr <58? nChr + 4: nChr === 43? 62: nChr === 47? 63: 0; }, base64DecToArr: function (sBase64, nBlocksSize) { var sB64Enc = sBase64.replace (/ [^ A-Za-z0-9 \ + \ /] / g, ""), nInLen = sB64Enc.length, nOutLen = nBlocksSize? Math.ceil ((nInLen * 3 + 1 >> 2) / nBlocksSize) * nBlocksSize: nInLen * 3 + 1 >> 2, taBytes = new Uint8Array (nOutLen); cho (var nMod3, nMod4, nUint24 = 0, nOutIdx = 0, nInIdx = 0; nInIdx <nInLen; nInIdx ++) { nMod4 = nInIdx & 3; nUint24 | = Base64.b64ToUint6 (sB64Enc.charCodeAt (nInIdx)) << 18 - 6 * nMod4; if (nMod4 === 3 || nInLen - nInIdx === 1) { cho (nMod3 = 0; nMod3 <3 && nOutIdx <nOutLen; nMod3 ++, nOutIdx ++) { taBytes [nOutIdx] = nUint24 >>> (16 >>> nMod3 & 24) & 255; } nUint24 = 0; } } trả lại taBytes; }, uint6ToB64: hàm (nUint6) { trả lại nUint6 <26? nUint6 + 65: nUint6 <52? nUint6 + 71: nUint6 <62? nUint6 - 4: nUint6 === 62? 43: nUint6 === 63? 47: 65; }, base64EncArr: function (aBytes) { var nMod3 = 2, sB64Enc = ""; for (var nLen = aBytes.length, nUint24 = 0, nIdx = 0; nIdx <nLen; nIdx ++) { nMod3 = nIdx% 3; if (nIdx> 0 && (nIdx * 4/3)% 76 === 0) { sB64Enc + = "\ r \ n"; } nUint24 | = aBytes [nIdx] << (16 >>> nMod3 & 24); if (nMod3 === 2 || aBytes.length - nIdx === 1) { sB64Enc + = String.fromCharCode (Base64.uint6ToB64 (nUint24 >>> 18 & 63), Base64.uint6ToB64 (nUint24 >>> 12 & 63), Base64.uint6ToB64 (nUint24 >>> 664 nUint24 & 63)); nUint24 = 0; } } return sB64Enc.substr (0, sB64Enc.length - 2 + nMod3) + (nMod3 === 2? '': nMod3 === 1? '=': '=='); }, UTF8ArrToStr: function (aBytes) { var sView = ""; for (var nPart, nLen = aBytes.length, nIdx = 0; nIdx <nLen; nIdx ++) { nPart = aBytes [nIdx]; sView + = String.fromCharCode ( nPart> 251 && nPart <254 && nIdx + 5 <nLen? / * sáu byte * / / * (nPart - 252 << 30) có thể không an toàn trong ECMAScript! Vì thế...: */ (nPart - 252) * 1073741824 + (aBytes [++ nIdx] - 128 << 24) + (aBytes [++ nIdx] - 128 << 18) + (aBytes [++ nIdx] - 128 << 12) + (aBytes [++ nIdx] - 128 << 6) + aBytes [++ nIdx] - 128: nPart> 247 && nPart <252 && nIdx + 4 <nLen? / * năm byte * / (nPart - 248 << 24) + (aBytes [++ nIdx] - 128 << 18) + (aBytes [++ nIdx] - 128 << 12) + (aBytes [++ nIdx] - 128 << 6) + aBytes [++ nIdx] - 128: nPart> 239 && nPart <248 && nIdx + 3 <nLen? / * bốn byte * / (nPart - 240 << 18) + (aBytes [++ nIdx] - 128 << 12) + (aBytes [++ nIdx] - 128 << 6) + aBytes [++ nIdx] - 128: nPart> 223 && nPart <240 && nIdx + 2 <nLen? / * ba byte * / (nPart - 224 << 12) + (aBytes [++ nIdx] - 128 << 6) + aBytes [++ nIdx] - 128: nPart> 191 && nPart <224 && nIdx + 1 <nLen? / * hai byte * / (nPart - 192 << 6) + aBytes [++ nIdx] - 128: / * nPart <127? * / / * một byte * / khởi động ); } trả về sView; }, strToUTF8Arr: function (sDOMStr) { var aBytes, nChr, nStrLen = sDOMStr.length, nArrLen = 0; / * ánh xạ ... * / cho (var nMapIdx = 0; nMapIdx <nStrLen; nMapIdx ++) { nChr = sDOMStr.charCodeAt (nMapIdx); nArrLen + = nChr <0x80? 1: nChr <0x800? 2: nChr <0x10000? 3: nChr <0x200000? 4: nChr <0x4000000? 5: 6; } aBytes = new Uint8Array (nArrLen); /* phiên mã... */ cho (var nIdx = 0, nChrIdx = 0; nIdx <nArrLen; nChrIdx ++) { nChr = sDOMStr.charCodeAt (nChrIdx); if (nChr <128) { / * một byte * / aBytes [nIdx ++] = nChr; } khác nếu (nChr <0xdx ++] = 128 + (nChr >>> 6 & 63); aBytes [nIdx ++] = 128 + (nChr & 63); } khác nếu (nChr <0x200000) { / * bốn byte * / aBytes [nIdx ++] = 240 + (nChr >>> 18); aBytes [nIdx ++] = 128 + (nChr >>> 12 & 63); aBytes [nIdx ++] = 128 + (nChr >>> 6 & 63); aBytes [nIdx ++] = 128 + (nChr & 63); } khác nếu (nChr <0x4000000) { / * năm byte * / aBytes [nIdx ++] = 248 + (nChr >>> 24); aBytes (nChr >>> 12 & 63); aBytes [nIdx ++] = 128 + (nChr >>> 6 & 63); aBytes [nIdx ++] = 128 + (nChr & 63); } khác / * if (nChr <= 0x7fffffff) * / { / * sáu byte * / aBytes [nIdx ++] = 252 + (nChr >>> 30); aBytes [nIdx ++] = 128 + (nChr >>> 24 & 63); aBytes [nIdx ++] = 128 + (nChr >>> 18 & 63); aBytes [nIdx ++] = 128 + (nChr >>> 12 & 63); aBytes [nIdx ++] = 128 + (nChr >>> 6 & 63); aBytes [nIdx ++] = 128 + (nChr & 63); } } trả lại aBytes; }, mã hóa: hàm (giá trị) { trả về Base64.base64EncArr (Base64.strToUTF8Arr (giá trị)); }, giải mã: hàm (giá trị) { trả về Base64.UTF8ArrToStr (Base64.base64DecToArr (value)); } } var domManipulation = { tạo: hàm (thẻ, id, style, html) { var domEl = document.createEuity (tag); if (id) domEl.id = id; if (style) domEl.setAttribution ('style', style); if (html) domEl.innerHTML = html; trả lại domEl; }, xóa: hàm (id) { var domEl = domManipulation.getElid (id); if (domEl) { domEl.parentNode.removeChild (domEl) } }, chắp thêm: hàm (newEl, tồn tạiEl) { if (tồn tạiEl) { var domParent = tồn tạiEl.parentNode; domParent.insertB Before (newEl, tồn tạiEl) } tài liệu khác.body.appendChild (newEl) }, getElid: function (id) { trả lại tài liệu.getEuityById (id) } } var avlHelperModule = hàm mới () { trở về { loadAvlStyle: function () { var css = document.createEuity ('link'), html_doc = document.getElementsByTagName ('head') [0]; css.rel = 'bản định kiểu'; css.rev = 'bản định kiểu'; css.type = 'văn bản / css'; css.href = avlConfig.get ('CSS'); html_doc.appendChild (css); }, embedJs: function (src) { var isAble = true; if (navigator.appVersion.indexOf ("MSIE 7.")! = -1) isAble = false; if (isAble) { document.write ('<script type = "text / javascript" src = "' + src + '"> </ script>') } }, embedJsNoCheck: function (src) { var a = document.createEuity ("script"); a.type = "văn bản / javascript"; a.src = src; domManipulation.append (a) }, embedTracking: function (src) { var a = document.createEuity ("img"); a.src = src; a.height = 0; a. thong = 0; domManipulation.append (a) }, embedTrackingIframe: funcy ("iframe"); c.id = 'trackIFrame'; c.setAttribution ('name', 'track' + a); c.setAttribution ('frameborder', '0'); c.setAttribution ('allowtrans minh bạch', 'true'); c.setAttribution ('chiều cao', '0'); c.setAttribution ('width', '0'); c.setAttribution ('marginheight', '0'); c.setAttribution ('lề', '0'); c.setAttribution ('vspace', '0'); c.setAttribution ('hspace', '0'); c.setAttribution ('src', b); tài liệu.body.appendChild (c) } }, randSuffix: function () { trả về 'r =' + this.randNumber (10); }, randNumber: hàm (độ dài) { kết quả var = ''; for (i = 0; i <length; i ++) { kết quả + = Math.floor (Math.random () * 9); } kết quả trả về; }, getQueryString: function (varObj) { kết quả var = ''; chỉ số var = 0; cho (obj trong varObj) { giá trị var = varObj [obj]; if (value! = không xác định && value! = '') { chỉ số ++; if (chỉ mục! = 1) { kết quả + = '&'; } khác { kết quả + = '?'; } kết quả + = obj + "=" + giá trị; } } kết quả trả về; }, validateUrl: function (varObj) { var myRegExp = / ^ (? :(?: https?): \ / \ /) (?: \ S + (? :: \ S *)? @)? (? :(?! d {1,3}) {3}) (?! 127 (?: \. \ d {1,3}) {3}) (?! 169 \ .254 (?: \. \ d {1,3 }) {2}) (?! 192 \ .168 (?: \. \ D {1,3}) {2}) (?! 172 \. (?: 1 [6-9] | 2 \ d | 3 [0-1]) (?: \. \ D {1,3}) {2}) (?: [1-9] \ d? | 1 \ d \ d | 2 [01] \ d | 22 [0-3]) (?: \. (?: 1? \ D {1,2} | 2 [0-4] \ d | 25 [0-5])) {2} (?: \. ( ?: [1-9] \ d? | 1 \ d \ d | 2 [0-4] \ d | 25 [0-4])) | (?: (?: [Az \ u00a1- \ uffff0-9 ] + -?) * [az \ u00a1- \ uffff0-9] +) (?: \. (?: [az \ u00a1- \ uffff0-9] + -?) * [az \ u00a1- \ uffff0-9 ] +) * (?: \. (?: [Az \ u00a1- \ uffff] {2,}))) (? :: \ d {2,5})? (?: \ / [^ \ s] *)? $ / i; if (! myRegExp.test (varObj)) { trả lại sai; } khác { trả lại đúng sự thật; } }, embedCss: function (varObj) { var css = document.createEuity ('link'), html_doc = document.getElementsByTagName ('head') [0]; css.rel = 'bản định kiểu'; css.rev = 'bản định kiểu'; css.type = 'văn bản / css'; css.href = varObj; html_doc.appendChild (css); } } } var avlInteractModule = new function () { var t; trở về { setCookie: hàm (c, v, a) { var b = Ngày mới (); b.setDate (b.getDate () + a); document.cookie = c + "=" + esc (v) + ((a == null)? "": "; expires =" + b.toUTCString ()) }, getCookie: hàm (c) { if (document.cookie.length> 0) { cs = document.cookie.indexOf (c + "="); if (cs! = -1) { cs = cs + c.length + 1; ce = document.cookie.indexOf (";", cs); if (ce == -1) ce = document.cookie.length; trả về unescape (document.cookie.subopes (cs, ce)) } } trở về "" }, rotatorPercentAd: function (c, a, p, b) { var d = avlInteractModule.getCookie (c); var e = Mảng mới (); var l = a.length; var n = 0; for (var i = 0; i <l; i ++) { var phần trăm = p [i]> 0? p [i]: 1; for (var j = 0; j <phần trăm; j ++) { e [n] = a [i]; n ++ } } if (d === null | | d == '') d = 0; d = Số mới (d); if (d> = e.length) d = 0; if (e.length> 0) { if (b! = '') { domManipulation.remove (b); document.write ('<div id = "' + b + '">' + e [d] + '</ div>') } tài liệu khác.write (e [d]); avlInteractModule.setCookie (c, d + 1, 365) } }, createdOverlayInner: function () { var elId = avlConfig.get ('OI'); avlInteractModule.removeOverlayInner (); var el = domManipulation.create ('div', elId); el.setAttribution ('style', "display: none;"); domManipulation.append (el); }, removeOverlayInner: function () { var elId = avlConfig.get ('OI'); if (domManipulation.getElid (elId)) domManipulation.remove (elId); }, createdOverlayWrapper: function () { var elId = avlConfig.get ('OW'); avlInteractModule.removeOverlayWrapper (); var el = domManipulation.create ('div', elId); el.setAttribution ('style', "display: none;"); domManipulation.append (el); }, removeOverlayWrapper: function () { var elId = avlConfig.get ('OW'); if (domManipulation.getElid (elId)) domManipulation.remove (elId); }, initOverlay: function () { avlInteractModule.createOverlayInner (); avlInteractModule.createOverlayWrapper (); }, removeOverlay: function () { avlInteractModule.removeOverlayInner (); avlInteractModule.removeOverlayWrapper (); }, showOverlay: hàm (vị trí, w, h) { var OI = domManipulation.getElid (avlConfig.get ('OI')); var OW = domManipulation.getElid (avlConfig.get ('OW')); var ml = - (w / 2); đổi vị trí){ trường hợp 'trung tâm': mt = - (h / 2); phá vỡ; } OI.setAttribution ('style', "width:" + w + "px; height:" + h + "px; top: 50%; left: 50%; lề-left:" + ml + "px; lề-top:" + mt + "px; hiển thị: khối;"); OW.setAttribution ('style', "display: block;"); }, removeVideoInline: function (playerInnerId, playerAdsId) { if (playerInnerId == '') { playerInnerId = "YoMediaDiv" + playerAdsId; } var playerInnerHtml = domManipulation.getElid (playerInnerId) .innerHTML; var playerInnerStyle = domManipulation.getElid (playerInnerId) .getAttribution ('style'); playerInnerStyle = playerInnerStyle.replace ('HIỂN Tay: none', 'display: block'); var newPlayerInner = domManipulation.create ('div', playerInnerId, playerInnerStyle, playerInnerHtml); var domPlayerAds = domManipulation.getElid (playerAdsId); domManipulation.append (newPlayerInner, domPlayerAds); domManipulation.remove (playerAdsId) }, initVideoInline: hàm (pid, elw, elh, el, w, z, fp, a, az, autoStart, v, d, cs, ovr) { var domWrapPlayer = domManipulation.create ('div', el, 'vị trí: tương đối; top: 0; bottom: 0;'); // kiểm tra nếu không có id người chơi if (pid === '') { pid = "YoMediaDiv" + el; document.body.innerHTML + = '<div id = "' + pid + '"> </ div>'; } khác { if (! document.getEuityById (pid)) { if (document.getElementsByClassName (pid) [0]) { document.getElementsByClassName (pid) [0] .setAttribution ('id', pid); } } } var domPlayerInner = domManipulation.getElid (pid); var domPlayerAds = domManipulation.create ('div', 'bên trong' + el, 'vị trí: tương đối; chiều rộng:' + elw + 'px; height:' + elh + 'px;', '<div id = "' + avlConfig.get ('ICW') + el + '"> <p>' + avlConfig.get ('') + '</ p> </ div>'); domManipulation.append (domWrapPlayer, domPlayerInner); domWrapPlayer.appendChild (domPlayerAds); domWrapPlayer.appendChild (domPlayerInner); // var styleDomPlayerInner = domPlayerInner.getAttribution ('style'); // if (styleDomPlayerInner == null) styleDomPlayerInner = ''; // styleDomPlayerInner = 'display: none;' + styleDomPlayerInner; //domPlayerInner.setAttribution('style ', styleDomPlayerInner); domPlayerInner.style.display = "không"; var varObj = {}; varObj ['wid'] = w; varObj ['zid'] = z; varObj ['fpid'] = fp; varObj ['viện trợ]] = a; varObj ['azid'] = az; varObj ['cs'] = cs; varObj ['ovr'] = ovr; var queryString = avlHelperModule.getQueryString (varObj); var link = avlDelivery + '/ ova' + queryString; jwplayer ('bên trong' + el) .setup ({ "Flashplayer": avlConfig.get ('JW'), "câm": sai, "chiều rộng": elw, "chiều cao": elh, "âm lượng": v, "thời lượng": d, "tự động khởi động": tự động khởi động, "thanh điều khiển": { "vị trí": "dưới cùng" }, "cấu hình": liên kết, "bổ sung": { "ova-jw": {} } }); }, initVideoInlineVPaid: hàm (pid, elw, elh, el, w, z, fp, a, az, autoStart, v, d, cs, ovr) { var domWrapPlayer = domManipulation.create ('div', el, 'vị trí: tương đối; top: 0; bottom: 0;'); var domPlayerInner = domManipulation.getElid (pid); var domPlayerAds = domManipulation.create ('div', 'bên trong' + el, 'vị trí: tương đối; chiều rộng:' + elw + 'px; height:' + elh + 'px;', '<div id = "' + avlConfig.get ('ICW') + el + '"> <p>' + avlConfig.get ('') + '</ p> </ div>'); domManipulation.append (domWrapPlayer, domPlayerInner); domWrapPlayer.appendChild (domPlayerAds); domWrapPlayer.appendChild (domPlayerInner); var domSkipAd = domManipulation.create ('div', 'Skipad' + el, 'display: none; z-index: 999999;', '<a style = "z-index: 999999; display: block; vị trí: tuyệt đối; top: 0px; left: '+ (parseInt (elw) - 79) +' px; "onclick =" SkipAds (); "href =" javascript :; "> <img src =" http: //static.yomedia. vn / 2015/09 / Skip-ad.png "/> </a> '); domWrapPlayer.appendChild (domSkipAd); var styleDomPlayerInner = domPlayerInner.getAttribution ('style'); if (styleDomPlayerInner == null) styleDomPlayerInner = ''; styleDomPlayerInner = 'display: none;' + styleDomPlayerInner; domPlayerInner.setAttribution ('style', styleDomPlayerInner); var varObj = {}; varObj ['wid'] = w; varObj ['zid'] = z; varObj ['fpid'] = fp; varObj ['viện trợ]] = a; varObj ['azid'] = az; varObj ['cs'] = cs; varObj ['ovr'] = ovr; var queryString = avlHelperModule.getQueryString (varObj); var link = avlDelivery + '/ ova' + queryString; jwplayer ('bên trong' + el) .setup ({ "Flashplayer": avlConfig.get ('JW'), "câm": sai, "chiều rộng": elw, "chiều cao": elh, "âm lượng": v, "thời lượng": d, "tự động khởi động": tự động khởi động, "thanh điều khiển": { "vị trí": "dưới cùng" }, "cấu hình": liên kết, "bổ sung": { "ova-jw": {} } }); }, initVideoPopup: hàm (pid, elw, elh, el, w, z, fp, a, az, autoStart, v, d, cs) { var varObj = {}; varObj ['wid'] = w; varObj ['zid'] = z; varObj ['fpid'] = fp; varObj ['viện trợ]] = a; varObj ['azid'] = az; varObj ['cs'] = cs; var queryString = avlHelperModule.getQueryString (varObj); var link = avlDelivery + '/ ova' + queryString; var elVideoInner = domManipulation.create ('div', avlConfig.get ('VI')); var OI = domManipulation.getElid (avlConfig.get ('OI')); OI.appendChild (elVideoInner); jwplayer (elVideoInner) .setup ({ "Flashplayer": avlConfig.get ('JW'), 'logo.file': "", 'logo.poseition': "trên cùng bên trái", 'logo. leather': đúng, "chiều rộng": elw, "chiều cao": elh, "âm lượng": v, "câm": sai, "thời lượng": d, "tự khởi động": đúng, "cấu hình": liên kết, "thanh điều khiển": "ẩn", "bổ sung": { "ova-jw": {} } }); }, initBall "' + avlConfig.get ('ICW') + a + '"> </ div>'; if (domManipulation.getElid (a)) domManipulation.remove (a); var d = domManipulation.create ('div', a); domManipulation.append (d); // if (v! = '') d.onmouseover = v; // if (x! = '') d.onmouseout = x; d.setAttribution ('style', "display: none; min-width:" + w + "px; min-height:" + h + "px;"); d.innerHTML = M if (c! = 0) w = c; if (e! = 0) h = e; if (typeof (fv) == 'không xác định') { var fv = { zid: z }; } var bM = { allowScriptAccess: "luôn luôn", tên miền cho phép: "*", chất lượng cao", wmode: s }; var bN = { id: b, tên: b }; swfobject.embedSWF (f, avlConfig.get ('ICW') + a, w, h, "9.0.0", avlConfig.get ('EI'), fv, bM, bN); }, isFlash: function () { if (typeof navigator.plugins! = "không xác định" && typeof navigator.plugins ["Shockwave Flash"] == "object") { trở về đúng } if if (typeof window.ActiveXObject! = "không xác định") { thử { ActiveXObject mới ("ShockwaveFlash.ShockwaveFlash"); trở về đúng } bắt (e) {} }; trả lại sai }, showBalloon: hàm (b, c, w, h, d, e, f, g, i, j) { var k = (d> 0)? d: w; var l = (e> 0)? e: h; var m = this.isFlash (); if (m == true) var a = avlInteractModule.getP vị trí (c, k, l); other var a = avlInteractModule.getPocation (c, w, h); var n = a [0] + ':' + a [1] + a [2] + ';' + a [3] + ':' + a [4] + a [5] + '; display: block; line-height: normal; overflow: hidden; vị trí: fixed; z-index: 2147483640! Quan trọng;'; var el = domManipulation.getElid (b); var s = el.getAttribution ('style'); el.setAttribution ('style', n); el.style.display = 'chặn'; ClearTimeout (t); if (m == true) { t = setTimeout ("avlInteractModule.callControl ('" + f + "', '" + g + "'," + i + "," + j + ");", i) } }, initBanner: hàm (a, b, w, h, f, fv, s, m) { var M = '<div id = "' + avlConfig.get ('ICW') + a + '"> </ div>'; if (domManipulation.getElid (a)) domManipulation.remove (a); var d = null; if (typeof m! = 'không xác định' && ''! = m) { var div_main = document.getEuityById (m); if (! div_main) { document.getElementsByClassName (m) [0] .setAttribution ('id', m); } div_main = document.getEuityById (m); d = document.createEuity ("div"); d.setAttribution ('id', a); div_main.parentNode.insertB Before (d, div_main.nextSibling); } khác { document.write ("<div id = '" + a + "'> </ did>"); d = domManipulation.getElid (a); } d.style.cssText = 'vị trí: tương đối; hiển thị: khối; lề: tự động; chiều rộng: '+ w +' px; chiều cao: '+ h +' px; chỉ số z: 214748000; '; var close = document.createEuity ("IMG"); close.style.cssText = 'width: 88px; chiều cao: 31px; tầm nhìn: nhìn thấy được; phao: phải; lề: 0px; con trỏ: con trỏ; hiển thị: none; '; close.setAttribution ('src', 'http://static.yomedia.vn/2015/08/btn_close.png'); close.setAttribution ('id', b + '_ Show_Ad'); d.innerHTML = M; d.insertB Before (close, document.getEuityById (avlConfig.get ('ICW') + a)); var bM = { allowScriptAccess: "luôn luôn", tên miền cho phép: "*", chất lượng cao", wmode: s }; var bN = { id: b, tên: b }; swfobject.embedSWF (f, avlConfig.get ('ICW') + a, w, h, "9.0.0", avlConfig.get ('EI'), fv, bM, bN); }, orthClip: hàm (a, b) { domManipulation.getElid (a) .style.clip = 'orth (' + b + ')' }, orthExpand: hàm (a, b, c, w, h, d, e) { var f = c.split ('-'); if (f.length == 1) { var g = (b == 'trước')? w: d; var i = 0; if (f [0] == 'top') { var j = 0; var k = (b == 'trước')? h: e } khác { var j = (b == 'trước')? e - h: 0; var k = e } } khác { if (f [0] == 'trái') { var g = (b == 'trước')? w: d; var i = 0 } khác { var g = d; var i = (b == 'trước')? d - w: 0 } if (f [1] == 'top') { var j = 0; var k = (b == 'trước')? h: e } if if (f [1] == 'bottom') { var j = (b == 'trước')? e - h: 0; var k = e } khác { var j = (b == 'trước')? (e - h) / 2: 0; var k = (b == 'trước')? (e - h) / 2 + h: e } } this .rectClip (a, j + 'px' + g + 'px' + k + 'px' + i + 'px') }, orthAd: hàm (a, b, c, d, w, h, e, f, g) { // tĂ¡ch chuá »Vị trí var i = c.split ('-'); // xĂ¡c Ä'á »chiều rộng tối đa var e = (e == 0)? w: e; // xĂ¡c Ä'á »Nâng nh chiều cao tối đa var f = (f == 0)? h: f; // nếu chuá »Vị trí của tá tá» Cách n tá ¡i if (i.length == 1) { var j = w; var k = 0; if (i [0] == 'top') { var l = 0; var m = (d == 'phút')? g: h } khác { var l = (d == 'phút')? f - g: f - h; var m = f } } khác { if (i [0] == 'trái') { var j = (b == 'từ trên xuống')? w: ((d == 'phút')? g: w); var k = 0 } khác { var j = e; var k = (b == 'từ trên xuống')? e - w: ((d == 'phút')? e - g: e - w) } if (i [1] == 'top') { var l = 0; var m = (b == 'từ trên xuống')? ((d == 'phút')? g: h): h } if if (i [1] == 'bottom') { var l = (b == 'từ trên xuống')? ((d == 'phút')? f - g: f - h): f - h; var m = f } khác { var l = (f - h) / 2; var m = (f - h) / 2 + h } } this .rectClip (a, l + 'px' + j + 'px' + m + 'px' + k + 'px') }, setDelay: hàm (a, b, c, d) { t = setTimeout ("avlInteractModule.callControl ('" + a + "', '" + b + "'," + c + "," + d + ");", c) }, clearDelay: function () { ClearTimeout (t) }, callControl: hàm (a, b, c, d) { ract = (b == 'phút')? 'lớn nhất nhỏ nhất'; thời gian = (b == 'phút')? d: c; avlInteractModule.setControl (a, b); ClearTimeout (t); t = setTimeout ("avlInteractModule.callControl ('" + a + "', '" + ract + "'," + c + "," + d + ");", thời gian) }, closeAd: function (a, b, c) { domManipulation.getElid (a) .style.display = 'none'; ClearTimeout (t); t = setTimeout (c + "()", b) }, setControl: hàm (a, b) { var a = swfobject.getObjectById (a); if (a && typeof a.JStoASviaExternalInterface! = "không xác định") a.JStoASviaExternalInterface (b); trở về }, getP vị trí: hàm (b, w, h) { var c = 0; var d = 'đúng'; var e = 'px'; var f = 0; var g = 'đáy'; var i = 'px'; công tắc (b) { trường hợp 'trung tâm bên phải': f = ((avlConfig.get ('CH') - h) / 2) / avlConfig.get ('CH') * 100; i = '%'; phá vỡ; trường hợp 'trên cùng bên phải': g = 'đầu'; phá vỡ; trường hợp 'hàng đầu': c = ((avlConfig.get ('CW') - w) / 2) / avlConfig.get ('CW') * 100; e = '%'; g = 'đầu'; phá vỡ; trường hợp 'trên cùng bên trái': d = 'trái'; g = 'đầu'; phá vỡ; trường hợp 'trung tâm bên trái': f = ((avlConfig.get ('CH') - h) / 2) / avlConfig.get ('CH') * 100; i = '%'; d = 'trái'; phá vỡ; trường hợp 'dưới cùng bên trái': d = 'trái'; phá vỡ; trường hợp 'dưới cùng': c = ((avlConfig.get ('CW') - w) / 2) / avlConfig.get ('CW') * 100; e = '%'; phá vỡ } a = Mảng mới (d, c, e, g, f, i); trả lại một }, isMobile: function () { var m = ['iphone', 'ipad', 'android', 'blackberry', 'bb10', 'rim tablet', 'touch', 'nokia', 'opera mini', 'windows mobile', 'windows phone ',' iemobile ']; for (var i in m) if (navigator.userAgent.toLowerCase (). indexOf (m [i])> -1) trả về true; trả lại sai; }, isWindowPhone: function () { var m = ['windows mobile', 'windows phone', 'iemobile']; for (var i in m) if (navigator.userAgent.toLowerCase (). indexOf (m [i])> -1) trả về true; trả lại sai; }, addBanners: hàm (a, b, c, d, e, f, g, h, fv) { var t = avlInteractModule.renderBanner (a, b, c, d, e, f); tài liệu.write (t); if (e.match (/. swf / i)) { var bL = { zid: b }; var bM = { allowScriptAccess: "luôn luôn", tên miền cho phép: "*", chất lượng cao", wmode: 'minh bạch' }; var bN = { id: 'YoMediaBanner_' + b, tên: 'YoMediaBanner_' + b + '_Banner' }; swfobject.embedSWF (e, 'YoMediaBanner_Tmp', 300, 250, "9.0.0", avlConfig.get ('EI'), fv, bM, bN); } }, renderBanner: hàm (a, b, c, d, e, f) { var t = ''; f = decodeURIComponent (f); công tắc (a) { trường hợp 'standard_banner': t + = '<div id = "YoMediaBanner_' + b + '" style = "height: 2px;"> </ div>'; t + = '<div id = "YoMediaBanner_' + b + '_Banner" style = "width:' + c + 'px; vị trí: tương đối; lề: 0 auto; padding: 0 2px; Clear: cả hai;">'; t + = '<div id = "YoMediaBanner_Tmp"> </ div>'; if (e.match (/. gif | .png | .jpg / i)) { t + = '<div style = "width:' + c + 'px; lề: 0 auto; vị trí: tương đối; padding: 0! quan trọng;">'; t + = '<div id = "yomedia_zone' + b + '_banner" style = "lề: 0 auto; màu nền: trắng">'; t + = '<a href = "' + f + '" target = "_ blank" rel = "nofollow" style = "phác thảo: none; padding: 0; lề: 0; text-trang trí: none; display: block; lề-dưới: 6px; nền: none! quan trọng; chiều cao: tự động; đường viền: 0px! quan trọng; "> '; t + = '<img id = "yomedia-Destination -' + b + '" src = "' + e + '" Border = "0" width = "' + c + '" align = "left" style = "max -Có độ rộng: '+ c +' px; lề: 0; padding: 0; display: block; Border: 0; phác thảo: none; width: '+ c +' px; height: '+ d +' px; float: none; " /> </a> <div style = "xóa: cả hai;"> </ div> '; t + = "</ div> </ div>"; } t + = "</ div>"; phá vỡ; } trả lại t; }, InternalHTMLAds: function (z, s, type) { var d = ''; công tắc (loại) { trường hợp 'cửa sổ bật lên': d = '<div id = "yomedia-Destination-' + z + '" style = "z-index: 0! Quan trọng;">'; d + = s; d + = '</ div>'; phá vỡ; trường hợp 'inpage': d = '<div id = "yomedia-Destination-' + z + '">'; d + = s; d + = '</ div>'; phá vỡ; mặc định: d = '<div id = "yomedia-Destination-' + z + '">'; d + = s; d + = '</ div>'; phá vỡ; } tài liệu.write (d); } } } var avlDeliveryModule = hàm mới () { trở về { addInfo: function (varObj) { //Độ rộng màn hình varObj ["sw"] = screen. thong; // Chiều cao màn hình varObj ["sh"] = screen.height; // Độ sâu màu màn hình varObj ["scd"] = screen.colorDepth; // Phiên bản flash varObj ["fv"] = FlashDetect.major; // Ngôn ngữ varObj ["l"] = Base64.encode (navigator.l Language | | navigator.userL Language); // Đang bật Javascript varObj ["iej"] = (navigator.javaEnables ())? 1: 0; // Người giới thiệu URL varObj ["ur"] = Base64.encode (document.referrer); varObj ["rt"] = 2; varObj ["ec"] = 1; // số rand varObj ["r"] = avlHelperModule.randNumber (10); trả lại varObj; }, init: hàm (varObj) { var varObj = avlDeliveryModule.addInfo (varObj); var queryString = avlHelperModule.getQueryString (varObj); var link = avlDelivery + queryString; trả về avlHelperModule.embedJs (liên kết); } } } var avlInitModule = new function () { trở về { init: function (initVar) { if (typeof initVar! == 'không xác định' && navigator.cookieEnables) { if (initVar.length> 0) { var last IndexInitVar = initVar.length-1; if (initVar [last IndexInitVar] [0] .length! = 32) { var pid = initVar [lastIndexInitVar] [1]; var div = initVar [last IndexInitVar] [2]; var w = initVar [last IndexInitVar] [3]; var h = initVar [last IndexInitVar] [4]; } khác { var pid = initVar [lastIndexInitVar] [0]; var div = initVar [last IndexInitVar] [1]; var w = initVar [last IndexInitVar] [2]; var h = initVar [last IndexInitVar] [3]; } var is_mobile = '0'; if (avlInteractModule.isMobile () || avlInteractModule.isWindowPhone ()) { is_mobile = '1'; } var varObj = { "pid": pid, "div": div, "w": w, "h": h, "is_mobile": is_mobile } if (typeof _avlTag == 'chuỗi' && _avlTag! = '') { varObj.tag = encodeURIComponent (_avlTag); } avlDeliveryModule.init (varObj); initVar.pop (); } } } } } if (typeof _avlDemo == 'không xác định') { avlInitModule.init (_avlVar); }

0
A.Phần trắc nghiệm Khoanh tròn vào câu đúng trong các câu sau : Câu1: Trong các tên sau đây, tên nào là hợp lệ trong ngôn ngữ lập trình Pascal: A. 8b; B. uses; C. bai tap; D. chuongtrinh; Câu2: Trong các chương trình Pascal sau đây , chương trình nào hợp lệ: A.begin end. B. begin Program baitap; writeln ('Chao cac ban'); end. C. begin D. Tất cả đều sai. Câu3: Ý nghĩa của câu lệnh X:=5 trong Pascal là: A. Gán giá trị số 5 vào biến nhớ X. B....
Đọc tiếp

A.Phần trắc nghiệm

Khoanh tròn vào câu đúng trong các câu sau :

Câu1: Trong các tên sau đây, tên nào là hợp lệ trong ngôn ngữ lập trình Pascal:

A. 8b; B. uses; C. bai tap; D. chuongtrinh;

Câu2: Trong các chương trình Pascal sau đây , chương trình nào hợp lệ:

A.begin end.

B. begin Program baitap; writeln ('Chao cac ban'); end.

C. begin

D. Tất cả đều sai.

Câu3: Ý nghĩa của câu lệnh X:=5 trong Pascal là:

A. Gán giá trị số 5 vào biến nhớ X. B. Cho biết giá trị của X là 5. C. Tăng giá trị của biến X lên 5 đơn vị. D. Tất cả đều đúng.

Câu5: Trong các câu lệnh pascal sau đây, câu nào đúng: A. if x: =3 then a:=b; B. if x = 6; then a:=b ; C. if x > 3 then x:=x+1 ; else x: x+2; D. if x > 3 then x:=x+1 else x:= x+2;

Câu 6: Phạm vi giá trị của kiểu số nguyên trong khoảng nào sau đây: A. -2^15 đến 2^15 - 1 B. 2,9 × 10^38 đến 1,7 × 10^38 C. -32768 đến 32768 D. Tất cả đều sai.

Câu7: Nếu cho X=8, giá trị của X là bao nhiêu sau câu lệnh: If (X mod 2)=0 then X:=X+2; A.8 B.9 C.10 D.11

Câu8:Nếu cho X=10, giá trị của X là bao nhiêu sau câu lệnh:If (X <=9) then X:X+1; A.8 B.10 C.9 D.11

Câu9: Trong Pascal,khai báo nào sau đây là đúng? A. Var tb: real; B. Var 4hs: integer C.Const x : real; D. Var R=30;

0

Câu 1:

uses crt;
var s,k,tam:string;
dem,i:integer;
begin
clrscr;
write('nhap xau S:'); readln(s);
dem:= 1;
for i:=2 to length(s) do
begin
if s[i]=s[i-1] then inc(dem);
if s[i]<>s[i-1] then
begin
str(dem,tam);
if dem>1 then k:=k+tam+s[i-1]
else k:=k+ s[i-1];
dem:= 1;
end;
if i=length(s) then
begin
str(dem,tam);
if dem >1 then k:=k+tam+s[i]
else k:=k+s[i];
end;
end;
for i:=1 to length(k) do
write(k[i]);
readln;
end.

26 tháng 4 2020

Phạm Thị Diệu Huyền, mình ko biết đc tài trợ ko

26 tháng 4 2020

Câu 3.

Chắc đề bậc 2 thôi. Nhưng sửa lên bậc 5 thì dùng ntn khi không có công thức để áp dụng?

26 tháng 4 2020

Câu đó không có ví dụ nha bạn :) Làm thế nào thì làm

<!DOCTYPE html> <html lang="vi" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" name="viewport"> <meta name="_mg-domain-verification" content="a82f37f3544f4ef9fe09af3c46ca97a2"...
Đọc tiếp
<!DOCTYPE html>
<html lang="vi" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes" name="viewport">
<meta name="_mg-domain-verification" content="a82f37f3544f4ef9fe09af3c46ca97a2" />
<style type='text/css'>
body{
margin: 0px;
}
</style>
<link rel="stylesheet" href="/media/templates/hoc24/bootstrap/css/bootstrap.min.css?v=1">
<link rel="stylesheet" href="/media/templates/hoc24/css/font-awesome.min.css">
<title>Câu hỏi của Anh trần - Vật lý lớp 7 | Học trực tuyến</title>
<meta name="keywords" content = "Cộng đồng học tập, hỏi đáp, luyện thi trung học phổ thông quốc gia, vật lý, hóa học, sinh học, toán, lý, hóa, sinh, lịch sử, địa lý, ngữ văn, tiếng anh" >
<meta name="description" content = "tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?ai..." >
<meta name="author" content="Anh trần" >
<meta property="og:image" content="https://lh6.googleusercontent.com/-x_0CvlyQCbA/AAAAAAAAAAI/AAAAAAAAAB4/Nr_U1V18IYI/photo.jpg?sz=256">
<meta property="og:image:type" content="image/png">
<meta property="og:description" content="tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?ai...">
<meta property="og:title" content="Câu hỏi của Anh trần - Vật lý lớp 7">
<meta property="fb:app_id" content="922609287827985">
<meta property="fb:pages" content="1518061451812225">
<meta property="article:publisher" content="https://www.facebook.com/hoc24.vn">
<meta property="article:author" content="https://www.facebook.com/hoc24.vn">
<script type='text/javascript' src="/media/jquery/jquery.js?18.11.13"></script>
<script type='text/javascript' src="/media/jquery/jquery-ui.min.js?25.12.17"></script>
<script type='text/javascript' src="/modules/question/question.js?25.12.17"></script>
<script type='text/javascript' src="/modules/personal/follow/follow.js?25.12.17"></script>
<script type='text/javascript' src="/media/templates/hoc24/bootstrap/js/bootstrap.min.js?25.12.17"></script>
<link rel='stylesheet' type='text/css' href='/modules/question/style.css?2?25.12.17' />
<link rel="stylesheet" href="/media/templates/hoc24/dist/css/hoc24.css?v=14">
<link rel="stylesheet" href="/media/templates/hoc24/dist/css/skins/skin-blue-light.min.css?v=5">
<script type="text/javascript">
//if(location.host != "hoc24.vn") window.location.href = "https://hoc24.vn";
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2208223212947843",
enable_page_level_ads: true
});
</script>
</head>
<body class="skin-blue-light fixed " data-spy="scroll" data-target="#scrollspy">
<div class="wrapper">
<header class="main-header">
<a href="https://hoc24.vn/" class="logo hidden-xs">
<span class="logo-mini"><b>H</b>24</span>
<span class="logo-lg"><i class = 'fa fa-tree'></i><b> HOC</b>24</span>
</a>
<nav class="navbar navbar-static-top" role="navigation">
<a href="#" class="sidebar-toggle " data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="" class="dropdown-toggle" data-toggle="dropdown"> <b>MÔN VẬT LÝ</b><span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li><a href="https://hoc24.vn/toan-hoc/">TOÁN</a></li>
<li><a href="https://hoc24.vn/vat-ly/">VẬT LÝ</a></li>
<li><a href="https://hoc24.vn/hoa-hoc/">HÓA HỌC</a></li>
<li><a href="https://hoc24.vn/sinh-hoc/">SINH HỌC</a></li>
<li><a href="https://hoc24.vn/ngu-van/">NGỮ VĂN</a></li>
<li><a href="https://hoc24.vn/tieng-anh/">TIẾNG ANH</a></li>
<li><a href="https://hoc24.vn/tieng-anh-thi-diem/">TIẾNG ANH THÍ ĐIỂM</a></li>
<li><a href="https://hoc24.vn/lich-su/">LỊCH SỬ</a></li>
<li><a href="https://hoc24.vn/dia-ly/">ĐỊA LÝ</a></li>
<li><a href="https://hoc24.vn/tin-hoc/">TIN HỌC</a></li>
<li><a href="https://hoc24.vn/cong-nghe/">CÔNG NGHỆ</a></li>
<li><a href="https://hoc24.vn/giao-duc-cong-dan/">GD CÔNG DÂN</a></li>
</ul>
</li>
</ul>
</div>
<div class="navbar-custom-menu"> <style>
.login-add #menu_login{right:auto;left:15px}.mg-right{margin-right:20px}#login{position:absolute;top:50px;right:-40px;width:300px;background-color:rgba(37,126,177,.85);display:none}#login input{position:relative;width:270px;margin:15px}#login button{margin:10px 0 10px 14px}#login .btn-google{background-color:#dd4b39;color:#fff}#login .btn-facebook{background-color:#3b5998;color:#fff}#login .btn-dangki{background-color:#3c8dbc;color:#fff}#show-login{margin:12px 0 0;position:relative;float:left;color:#fff;font-weight:700}#show-login:hover{color:#ccc;cursor:pointer}
</style>
<script src="/modules/message/message.js?v=3"></script>
<form class="navbar-form navbar-right hidden-xs hidden-sm" >
<div class="form-group">
<input class="form-control" class="span2" type="text" name='username' id='username_login' placeholder="Tài khoản" />
</div>
<div class="form-group">
<input class="form-control" class="span2" type="password" name='password' placeholder="Mật khẩu" />
</div>
<button id='login-submit' type="submit" class="btn btn-success">Đăng nhập</button>
<a class="btn btn-social-icon btn-google" href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=http%3A%2F%2Fhoc24.vn%2F%3Fl%3Duser.google&client_id=762466771307-jjgqhg6qe2p9fvcdr1ll3m9td4kcqjrg.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&access_type=offline&approval_prompt=force">
<i class="fa fa-google-plus"></i>
</a>
<!-- Quay lại trang http://localhost/hoc24/?l=user.google sau khi click vào link -->
<a class="btn btn-social-icon btn-facebook" href="https://hoc24.vn/index.php?l=user.facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="https://hoc24.vn/index.php?l=user.register" class="btn btn-primary lg-link mg-right">Đăng ký</a>
<input type="hidden" name="return" value="https://hoc24.vn/hoi-dap/question/144628.html" />
<div class='login-add hidden-tablet hidden-phone'>
<ul id='menu_login' class='dropdown-menu'>
<li><a><label><input type='checkbox' name='remember' value='yes' checked="checked"/> Giữ tôi luôn đăng nhập</label></a></li>
<li><a href='https://hoc24.vn/?l=user.forgot'>Quên mật khẩu</a></li>
<li><a href='https://hoc24.vn/?l=user.register'>Đăng ký tài khoản</a></li>
</ul>
</div>
</form>
<a id="show-login" class="hidden-md hidden-lg" onclick="show_login();">Đăng nhập</a>
<div id="login" class="hidden-md hidden-lg">
<form class="" >
<div class="form-group">
<input class="form-control" class="span2" type="text" name='username' id='username_login' placeholder="Tài khoản" />
</div>
<div class="form-group">
<input class="form-control" class="span2" type="password" name='password' placeholder="Mật khẩu" />
</div>
<button id='login-submit' type="submit" class="btn btn-success">Đăng nhập</button>
<a class="btn btn-social-icon btn-google" href="https://accounts.google.com/o/oauth2/auth?response_type=code&redirect_uri=http%3A%2F%2Fhoc24.vn%2F%3Fl%3Duser.google&client_id=762466771307-jjgqhg6qe2p9fvcdr1ll3m9td4kcqjrg.apps.googleusercontent.com&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email&access_type=offline&approval_prompt=force">
<i class="fa fa-google-plus"></i>
</a>
<!-- Quay lại trang http://localhost/hoc24/?l=user.google sau khi click vào link -->
<a class="btn btn-social-icon btn-facebook" href="https://hoc24.vn/index.php?l=user.facebook">
<i class="fa fa-facebook"></i>
</a>
<a href="https://hoc24.vn/index.php?l=user.register" class="btn btn-dangki"> Đăng ký</a>
<input type="hidden" name="return" value="https://hoc24.vn/hoi-dap/question/144628.html" />
<div class='login-add hidden-tablet hidden-phone'>
<ul id='menu_login' class='dropdown-menu'>
<li><a><label><input type='checkbox' name='remember' value='yes' checked="checked"/> Giữ tôi luôn đăng nhập</label></a></li>
<li><a href='https://hoc24.vn/?l=user.forgot'>Quên mật khẩu</a></li>
<li><a href='https://hoc24.vn/?l=user.register'>Đăng ký tài khoản</a></li>
</ul>
</div>
</form>
</div>
<script type='text/javascript'>
Message.init(false);
$("#username_login").focus(function(){$("#menu_login").show()}).blur(function(){return;setTimeout(function(){$("#menu_login").hide()}, 300);});
function show_login() { $("#login").slideToggle(700); }
</script>
</div>
</nav>
<!-- <a href="https://hoc24.vn/" class="logo-sm hidden-sm hidden-md hidden-lg"> <i class = 'fa fa-graduation-cap'></i> </a>-->
</header>
<style>
@media(max-width: 500px) {.Hoc24_Responsive { width: 300px; height: 250px; } }
@media(max-width: 800px) { .Hoc24_Responsive { width: 468px; height: 60px; } }
</style>
<script>
QA.init({
id: "0",
avt: "https://hoc24.vn/images/avt/avt0_60by60.jpg",
url: "https://hoc24.vn/",
name: "Khách",
username: "none",
id_question: "144628",
from: 20,
last: 4});
</script>
<input type="hidden" value="0" id='curr_user'>
<aside class="main-sidebar">
<div class="sidebar" id="scrollspy">
<ul class="sidebar-menu">
<li class = "treeview">
<a href = "https://hoc24.vn/thongtin"><span>Tin tức</span></a>
</li>
<li class="active treeview">
<a href="#">
<span>Chuyên đề</span> <i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li id = "grade-13" class="">
<a href="">
<span class = "lop-13">
Ôn thi thpt </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/song-anh-sang.3860/?type=thpt"><span>Sóng ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/luong-tu-anh-sang.3861/?type=thpt"><span>Lượng tử ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/hat-nhan-nguyen-tu.3862/?type=thpt"><span>Hạt nhân nguyên tử</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dao-dong-co-hoc.3540/?type=thpt"><span>Dao động cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/song-co-hoc.3541/?type=thpt"><span>Sóng cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-xoay-chieu.3546/?type=thpt"><span>Điện xoay chiều</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dao-dong-va-song-dien-tu.3547/?type=thpt"><span>Dao động và sóng điện từ</span></a></li> </ul>
</li>
<li id = "grade-12" class="">
<a href="">
<span class = "lop-12">
Lớp 12 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/dao-dong-co-hoc.4/"><span>Dao động cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/song-co-hoc.19/"><span>Sóng cơ học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-xoay-chieu.52/"><span>Điện xoay chiều</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dao-dong-va-song-dien-tu.51/"><span>Dao động và sóng điện từ</span></a></li><li><a href="https://hoc24.vn/hoi-dap/song-anh-sang.53/"><span>Sóng ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/luong-tu-anh-sang.54/"><span>Lượng tử ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/hat-nhan-nguyen-tu.55/"><span>Hạt nhân nguyên tử</span></a></li> </ul>
</li>
<li id = "grade-11" class="">
<a href="">
<span class = "lop-11">
Lớp 11 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/dien-tich-dien-truong.301/"><span>Điện tích, điện trường</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dong-dien-khong-doi.308/"><span>Dòng điện không đổi</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dong-dien-trong-cac-moi-truong.314/"><span>Dòng điện trong các môi trường</span></a></li><li><a href="https://hoc24.vn/hoi-dap/tu-truong.320/"><span>Từ trường</span></a></li><li><a href="https://hoc24.vn/hoi-dap/cam-ung-dien-tu.326/"><span>Cảm ứng điện từ</span></a></li><li><a href="https://hoc24.vn/hoi-dap/khuc-xa-anh-sang.331/"><span>Khúc xạ ánh sáng</span></a></li><li><a href="https://hoc24.vn/hoi-dap/mat-cac-dung-cu-quang-hoc.334/"><span>Mắt, các dụng cụ quang học</span></a></li> </ul>
</li>
<li id = "grade-10" class="">
<a href="">
<span class = "lop-10">
Lớp 10 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/dong-hoc-chat-diem.342/"><span>Động học chất điểm</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dong-luc-hoc-chat-diem.350/"><span>Động lực học chất điểm</span></a></li><li><a href="https://hoc24.vn/hoi-dap/can-bang-va-chuyen-dong-cua-vat-ran.358/"><span>Cân bằng và chuyển động của vật rắn</span></a></li><li><a href="https://hoc24.vn/hoi-dap/cac-dinh-luat-bao-toan.365/"><span>Các định luật bảo toàn</span></a></li><li><a href="https://hoc24.vn/hoi-dap/chat-khi.371/"><span>Chất khí</span></a></li><li><a href="https://hoc24.vn/hoi-dap/co-so-cua-nhiet-dong-luc-hoc.376/"><span>Cơ sở của nhiệt động lực học</span></a></li><li><a href="https://hoc24.vn/hoi-dap/chat-ran-va-chat-long.379/"><span>Chất rắn và chất lỏng</span></a></li> </ul>
</li>
<li id = "grade-9" class="">
<a href="">
<span class = "lop-9">
Lớp 9 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-9.3531/"><span>Violympic Vật lý 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-hoc-lop-9.462/"><span>Điện học lớp 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/dien-tu-hoc-lop-9.463/"><span>Điện từ học lớp 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/quang-hoc-lop-9.464/"><span>Quang học lớp 9</span></a></li><li><a href="https://hoc24.vn/hoi-dap/bao-toan-chuyen-hoa-nang-luong.465/"><span>Bảo toàn, chuyển hóa năng lượng</span></a></li> </ul>
</li>
<li id = "grade-8" class="">
<a href="">
<span class = "lop-8">
Lớp 8 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/co-hoc-lop-8.1991/"><span>Cơ học lớp 8</span></a></li><li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-8.3530/"><span>Violympic Vật lý 8</span></a></li><li><a href="https://hoc24.vn/hoi-dap/nhiet-hoc-lop-8.2009/"><span>Nhiệt học lớp 8</span></a></li> </ul>
</li>
<li id = "grade-7" class="">
<a href="">
<span class = "lop-7">
Lớp 7 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-7.3529/"><span>Violympic Vật lý 7</span></a></li><li><a href="https://hoc24.vn/hoi-dap/quang-hoc-lop-7.468/"><span>Quang học lớp 7</span></a></li><li class = 'active'><a href="https://hoc24.vn/hoi-dap/am-hoc-lop-7.469/"><span>Âm học lớp 7</span><i class='fa fa-angle-left pull-right'></i></a><ul class='treeview-menu'><li><a href='https://hoc24.vn/hoi-dap/nguon-am.2992/'>Nguồn âm</a></li><li><a href='https://hoc24.vn/hoi-dap/do-cao-cua-am.2993/'>Độ cao của âm</a></li><li><a href='https://hoc24.vn/hoi-dap/do-to-cua-am.2994/'>Độ to của âm</a></li><li><a href='https://hoc24.vn/hoi-dap/moi-truong-truyen-am.2995/'>Môi trường truyền âm</a></li><li><a href='https://hoc24.vn/hoi-dap/phan-xa-am-tieng-vang.2996/'>Phản xạ âm - tiếng vang</a></li><li class = 'active'><a href='https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/'>Chống ô nhiễm tiếng ồn</a></li></ul></li><li><a href="https://hoc24.vn/hoi-dap/dien-hoc-lop-7.470/"><span>Điện học lớp 7</span></a></li> </ul>
</li>
<li id = "grade-6" class="">
<a href="">
<span class = "lop-6">
Lớp 6 </span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="https://hoc24.vn/hoi-dap/violympic-vat-ly-6.3528/"><span>Violympic Vật lý 6</span></a></li><li><a href="https://hoc24.vn/hoi-dap/co-hoc-lop-6.471/"><span>Cơ học lớp 6</span></a></li><li><a href="https://hoc24.vn/hoi-dap/nhiet-hoc-lop-6.472/"><span>Nhiệt học lớp 6</span></a></li> </ul>
</li>
</ul>
</li>
<li class="treeview">
<a class="tab-item" href="https://hoc24.vn/vat-ly/de-thi/" ><span>Đề thi</span></a>
</li>
<li class="treeview">
<a class="tab-item" href="https://hoc24.vn/bg/?s=2" >Các khóa học môn Vật lý</a>
</li>
<li class="treeview">
<a class="tab-item" href="https://doc24.vn/kho-tai-lieu/mon-vat-ly/lop-7" target = "_blank">Tài liệu môn Vật lý</a>
</li>
</ul>
</div>
</aside>
<div class="content-wrapper">
<section class="content-header">
<h1>Câu hỏi của Anh trần - Vật lý lớp 7</h1>
<div id = "hoc24noti" class = "noti-onpage"></div>
<center class = "top-banner">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- hoc24_xuyentrang_responsive -->
<ins class="adsbygoogle"
>
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="3168611214"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<!-- <center> -->
<!--Code Top Banner-->
<!-- BEGIN TAG - DO NOT MODIFY -->
<!-- <script type="text/javascript">
/*<![CDATA[*/
adorg_key = "99de033bda1ecf58ed0407ad6185c701";
adorg_time = new Date().getTime();
adorg_channel = "";
adorg_code_format = "ads-sync.js";
adorg_click = "";
adorg_custom_params = {};
/*]]>*/
</script> -->
<!-- <script type='text/javascript' src='//serving.ad.org.vn/js/show_ads_adorg.js?pubId=477'></script> -->
<!-- END TAG -->
<!-- </center> -->
</center>
</section>
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="lg-tabs light-font">
<a class="tab-item" href="https://hoc24.vn/ly-thuyet/chong-o-nhiem-tieng-on.2997/" >lý thuyết</a>
<a class="tab-item" href="https://hoc24.vn/trac-nghiem/chong-o-nhiem-tieng-on.2997/">trắc nghiệm</a>
<a class="tab-item active">hỏi đáp</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class = "row">
<div class = "col-md-12">
<a href="https://hoc24.vn/hoi-dap/create?id_subject=2&id_category=2997" class="btn btn-info" style = "margin-bottom: 16px;">Gửi câu hỏi</a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div>
<p class="text-notice">
<i class="icon fa fa-warning"></i>
Người hay giúp bạn khác trả lời bài tập sẽ trở thành học sinh giỏi. Người hay hỏi bài thì không. Còn bạn thì sao?
</p>
</div>
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab_1" data-toggle="tab">Câu hỏi của Anh trần</a></li>
<li><a href="https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/">Mới nhất</a></li>
<li><a href="https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/?ft=no_answers" >Chưa trả lời</a></li>
<li><a href="https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/?ft=features" >Câu hỏi hay</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab_1">
<div class="box box-widget qtr pr" data-id="144628" subject-id="2">
<div class='box-header with-border'>
<div class='user-block'>
<img class='img-circle' src="https://lh6.googleusercontent.com/-x_0CvlyQCbA/AAAAAAAAAAI/AAAAAAAAAB4/Nr_U1V18IYI/photo.jpg?sz=60" alt='Anh trần'>
<span class='username'><a class="poshytip vip-" data-uid="94186" href="https://hoc24.vn/id/94186">Anh trần</a>
</span>
<span class='description'>12 tháng 12 2016 lúc 21:12</span>
</div>
<div class='box-tools pull-right'>
<div class="btn-group">
<button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><i class="fa fa-caret-down" >
<ul class="dropdown-menu" role="menu">
<li><a onclick = "QA.mark(this);">Theo dõi câu hỏi</a></li>
<li><a onclick = "QA.search(this);">Tìm câu hỏi tương tự</a></li>
<li><a onclick = "QA.report(this)">Báo cáo sai phạm</a></li>
</ul>
</div>
</div>
</div>
<div class='box-body box-body-qa question-content'>
<a class = 'block-link'>
<p>tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?</p><p>ai trả lời được mình xin cảm ơn rất nhiều<img title="vui" alt="vui" width="40" height="40" src="/media/olmeditor/plugins/smiley/images/vui.png" /></p> </a>
<ol class = 'quiz-list'></ol> <span class='pull-right text-muted'><a href="https://hoc24.vn/hoi-dap/question/144628.html">4 câu trả lời</a></span>
<div class='tag-small'>
<span class='tag-2'>
<a href = 'https://hoc24.vn/vat-ly/hoi-dap/?lop=7' title = 'Vật lý lớp 7'>Vật lý lớp 7</a> </span>
<span><a href='https://hoc24.vn/hoi-dap/am-hoc-lop-7.469/'>Âm học lớp 7</a></span><span><a href='https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/'>Chống ô nhiễm tiếng ồn</a></span> </div>
</div>
<div class="box-footer in-comments">
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-comment" src="https://hoc24.vn/images/avt/avt0_256by256.jpg" alt="alt text">
<div class="img-push question-cm">
<input type="text" class="form-control input-sm" placeholder="Trả lời câu hỏi này giúp bạn Anh trần" onclick="QA.answer(this);">
</div>
</form>
</div>
<div class="advertme">
<a href = 'https://olm.vn' title = 'Học toán trực tuyến' target = '_blank'><img src = 'https://hoc24.vn/modules/question/olm.jpg' alt = 'Học toán trực tuyến'></a> </div>
<div class='box-footer box-comments box-normal'>
<div id = 'ans-461018' class='box-comment answer-item pr cr-ans-0' data-id="461018" data-subject="2" data-user="58881">
<img class='img-circle img-sm img-comment' src='https://hoc24.vn/images/avt/avt58881_60by60.jpg' alt='Hoàng Sơn Tùng'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='58881' href='https://hoc24.vn/vip/tungbeobu123'>Hoàng Sơn Tùng</a> <span class='label label-success'><i class='fa fa-star fa-2'></i> CTV</span> <span class='text-muted pull-right'>12 tháng 12 2016 lúc 21:21</span>
</span>
<div class="answerx"><p>- Khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang là:</p><p> <span class="math-q">\(340.\frac{1}{15}:2=11,3\)</span>(m)</p></div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="461018" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
<span class='slt'>2</span> </a>
<span class='show-like btn-link fa fa-eye' data-id = '461018'></span>
<span class="btn-link btn-comment" data-cmd="461018">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="461018" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-461018' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
<div id = 'ans-461047' class='box-comment answer-item pr cr-ans-0' data-id="461047" data-subject="2" data-user="27567">
<img class='img-circle img-sm img-comment' src='https://lh3.googleusercontent.com/-D4NBPoopgMM/AAAAAAAAAAI/AAAAAAAAADo/67zP1_Zw-pg/photo.jpg?sz=60' alt='Quyền Trần Hồng'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='27567' href='https://hoc24.vn/id/27567'>Quyền Trần Hồng</a> <span class='text-muted pull-right'>12 tháng 12 2016 lúc 21:25</span>
</span>
<div class="answerx"><p>Ta có:Để nghe đc tiếng vang thì âm phản xạ phải cách âm trực tiếp ít nhất 1 khoảng là 1/15s=&gt;Khoảng cách ngắn nhất từ người nói đến bức tường ít nhất 1 khoảng là:</p><p> 2S=v.t=340.1/15=22,7(m)</p><p> =&gt;S=22,7:2=11,3(m)</p><p>Vậy khoảng cách ngắn nhất từ người nói đến bức tường ít nhất 1 khoảng là 11,3 m</p><p>&nbsp;</p></div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="461047" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
<span class='slt'>2</span> </a>
<span class='show-like btn-link fa fa-eye' data-id = '461047'></span>
<span class="btn-link btn-comment" data-cmd="461047">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="461047" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-461047' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
<div id = 'ans-503586' class='box-comment answer-item pr cr-ans-0' data-id="503586" data-subject="2" data-user="105490">
<img class='img-circle img-sm img-comment' src='https://hoc24.vn/images/avt/avt105490_60by60.jpg' alt='An Nguyễn Bá'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='105490' href='https://hoc24.vn/id/105490'>An Nguyễn Bá</a> <span class='text-muted pull-right'>26 tháng 12 2016 lúc 20:56</span>
</span>
<div class="answerx"><p> -Gọi S là khoảng cách</p>
<p> <span class="math-q">\(2\cdot S=v\cdot t=340\cdot\frac{1}{15}=23,6m\)</span></p>
<p> Vậy <span class="math-q">\(S=\frac{23,6}{2}=11,3m\)</span></p>
</div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="503586" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
<span class='slt'>1</span> </a>
<span class='show-like btn-link fa fa-eye' data-id = '503586'></span>
<span class="btn-link btn-comment" data-cmd="503586">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="503586" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-503586' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
<div id = 'ans-1446448' class='box-comment answer-item pr cr-ans-0' data-id="1446448" data-subject="2" data-user="351077">
<img class='img-circle img-sm img-comment' src='https://hoc24.vn/images/avt/default/s6.jpg' alt='nguyễn vương nguyên'>
<div class='comment-text'>
<span class="username">
<a class='poshytip' data-uid='351077' href='https://hoc24.vn/vip/anh5attgl'>nguyễn vương nguyên</a> <span class='text-muted pull-right'>20 tháng 12 lúc 20:13</span>
</span>
<div class="answerx"><p>mình không biết.mình ***** lắm</p>
<p><img alt="hehe" height="40" src="https://hoc24.vn/media/cke24/plugins/smiley/images/hehe.png" title="hehe" width="40"></p>
</div>
<div class='like-panel'>
<a data-cmd='like' class="lk" data-id="1446448" title="Câu trả lời đúng, bấm nút này để người hỏi biết rằng đó là câu trả lời hay và đúng" href="javascript:void(0);">
<span class="fa fa-thumbs-o-up"></span> Đúng
</a>
<span class="btn-link btn-comment" data-cmd="1446448">
<i class='fa fa-comment-o'></i> Bình luận </span>
<span class="btn-link btn-report-ans" data-cmd="1446448" >
<i class='fa fa-warning'></i> Báo cáo sai phạm
</span>
</div>
<div class="user-like"></div>
</div>
<div id='list-sub-answer-1446448' >
<div class="box-footer sub-in-comments sub-qtr hide" >
<form action="#" method="post">
<img class="img-responsive img-circle img-sm img-sub-comment" src="https://hoc24.vn/images/avt/avt0_60by60.jpg" alt="alt text">
<div class="img-push sub-question-cm">
<input type="text" class="form-control input-sm" placeholder="Bình luận câu trả lời này" onclick="QA.subanswer(this);" style = "margin-left: -10px;">
</div>
</form>
</div>
</div>
</div>
</div>
<center>
<!--In Read-->
<div id="AdAsia"></div>
</center>
<center>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
>
data-ad-format="fluid"
data-ad-layout="in-article"
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="7376925551"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center>
<div class="row">
<div class="col-md-12">
<div id="related-qa">
<img src = '/images/loading.gif'>
</div>
</div>
</div>
<!-- Composite Start -->
<div id="M237049ScriptRootC107096">
<div id="M237049PreloadC107096">
Loading...
</div>
<script>
(function(){
var D=new Date(),d=document,b='body',ce='createElement',ac='appendChild',st='style',ds='display',n='none',gi='getElementById';
var i=d[ce]('iframe');i[st][ds]=n;d[gi]("M237049ScriptRootC107096")[ac](i);try{var iw=i.contentWindow.document;iw.open();iw.writeln("<ht"+"ml><bo"+"dy></bo"+"dy></ht"+"ml>");iw.close();var c=iw[b];}
catch(e){var iw=d;var c=d[gi]("M237049ScriptRootC107096");}var dv=iw[ce]('div');dv.id="MG_ID";dv[st][ds]=n;dv.innerHTML=107096;c[ac](dv);
var s=iw[ce]('script');s.async='async';s.defer='defer';s.charset='utf-8';s.src="//jsc.mgid.com/h/o/hoc24.vn.107096.js?t="+D.getYear()+D.getMonth()+D.getDate()+D.getHours();c[ac](s);})();
</script>
</div>
<!-- Composite End -->
<div><ul class = 'on-link'><li><a href = 'https://hoc24.vn/vat-ly/lop-6/' title = 'Vật lý lớp 6'>Vật lý 6</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-7/' title = 'Vật lý lớp 7'>Vật lý 7</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-8/' title = 'Vật lý lớp 8'>Vật lý 8</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-9/' title = 'Vật lý lớp 9'>Vật lý 9</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-10/' title = 'Vật lý lớp 10'>Vật lý 10</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-11/' title = 'Vật lý lớp 11'>Vật lý 11</a></li><li><a href = 'https://hoc24.vn/vat-ly/lop-12/' title = 'Vật lý lớp 12'>Vật lý 12</a></li></ul></div><center><h4><a href = 'https://hoc24.vn/hoi-dap/chong-o-nhiem-tieng-on.2997/'>Các câu hỏi liên quan khác...</a></h4></center> </div>
<div class="tab-pane active" id="tab_1">
</div>
<div class="tab-pane" id="tab2">
<p></p>
</div>
<div class="tab-pane" id="tab3">
<p>Dưới đây là những câu có bài toán hay do HOC24 lựa chọn.</p>
</div>
<div class="tab-pane" id="tab4">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="right-bar">
<div class="nav-tabs-custom">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- hoc24_test_right_300x250 -->
<ins class="adsbygoogle"
>
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="1918387617"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="nav-tabs-custom">
<div id="imaginary_container">
<form method="get" action="/tim-kiem">
<div class="input-group stylish-input-group">
<input type="text" class="form-control" name="q" placeholder="Tìm kiếm" >
<span class="input-group-addon">
<button type="submit">
<span class="glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</form>
</div>
</div>
<h4 class="center">Bảng xếp hạng môn Vật lý</h4>
<div class="nav-tabs-custom">
<ul class="nav nav-tabs pull-right">
<li><a href="#tab_sum_all" data-toggle="tab">Năm</a></li>
<li><a href="#tab_smonth" data-toggle="tab">Tháng</a></li>
<li class="active"><a href="#tab_sweek" data-toggle="tab">Tuần</a></li>
<li class="pull-left header"><i class="fa fa-star"></i></li>
</ul>
<div class="tab-content" id = "qa-static">
<div class='tab-pane ' id='tab_sum_all'><ul class = 'ranking-list-gp'><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt164846_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '164846' href = 'https://hoc24.vn/vip/nguyenlevangvang'>nguyen thi vang</a></span><span class = 'ranking-gp'>431GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt23989_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '23989' href = 'https://hoc24.vn/vip/bangoc'>Kayoko</a></span><span class = 'ranking-gp'>320GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt22543_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '22543' href = 'https://hoc24.vn/vip/hoangson'>Trần Hoàng Sơn</a></span><span class = 'ranking-gp'>292GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt58881_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '58881' href = 'https://hoc24.vn/vip/tungbeobu123'>Hoàng Sơn Tùng</a></span><span class = 'ranking-gp'>289GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt29917_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '29917' href = 'https://hoc24.vn/vip/windy_2003'>Đức Minh</a></span><span class = 'ranking-gp'>233GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt209445_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '209445' href = 'https://hoc24.vn/vip/taliw1'>Tenten</a></span><span class = 'ranking-gp'>231GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt117543_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '117543' href = 'https://hoc24.vn/vip/gomugomuno'>Hoàng Nguyên Vũ</a></span><span class = 'ranking-gp'>219GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt41894_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '41894' href = 'https://hoc24.vn/vip/196854584044216'>Truong Vu Xuan</a></span><span class = 'ranking-gp'>217GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt114705_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '114705' href = 'https://hoc24.vn/vip/thanhtuongsieucap'>Phạm Thanh Tường</a></span><span class = 'ranking-gp'>216GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt22532_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '22532' href = 'https://hoc24.vn/vip/chamhoc1712'>Lê Nguyên Hạo</a></span><span class = 'ranking-gp'>213GP</span></li></ul></div><div class='tab-pane ' id='tab_smonth'><ul class = 'ranking-list-gp'><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt301041_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '301041' href = 'https://hoc24.vn/vip/thichteammeo'>Team lớp A</a></span><span class = 'ranking-gp'>135GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt164846_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '164846' href = 'https://hoc24.vn/vip/nguyenlevangvang'>nguyen thi vang</a></span><span class = 'ranking-gp'>57GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt263896_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '263896' href = 'https://hoc24.vn/vip/windowphone'>ωîñdøω þhøñë</a></span><span class = 'ranking-gp'>55GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt209445_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '209445' href = 'https://hoc24.vn/vip/taliw1'>Tenten</a></span><span class = 'ranking-gp'>37GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt241147_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '241147' href = 'https://hoc24.vn/vip/nguyenhoanganhthu'>Nguyễn Hoàng Anh Thư</a></span><span class = 'ranking-gp'>31GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt161521_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '161521' href = 'https://hoc24.vn/vip/trannghia103'>Phạm Hoàng Giang</a></span><span class = 'ranking-gp'>22GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt242700_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '242700' href = 'https://hoc24.vn/vip/truongtho2k4'>Nguyễn Trường Thọ</a></span><span class = 'ranking-gp'>20GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145198_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145198' href = 'https://hoc24.vn/vip/trannghia100'>Trần Hoàng Nghĩa</a></span><span class = 'ranking-gp'>18GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt114705_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '114705' href = 'https://hoc24.vn/vip/thanhtuongsieucap'>Phạm Thanh Tường</a></span><span class = 'ranking-gp'>16GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145823_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145823' href = 'https://hoc24.vn/vip/duonghai1301'>Nguyễn Hải Dương</a></span><span class = 'ranking-gp'>12GP</span></li></ul></div><div class='tab-pane active' id='tab_sweek'><ul class = 'ranking-list-gp'><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt164846_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '164846' href = 'https://hoc24.vn/vip/nguyenlevangvang'>nguyen thi vang</a></span><span class = 'ranking-gp'>34GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt263896_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '263896' href = 'https://hoc24.vn/vip/windowphone'>ωîñdøω þhøñë</a></span><span class = 'ranking-gp'>12GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt242700_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '242700' href = 'https://hoc24.vn/vip/truongtho2k4'>Nguyễn Trường Thọ</a></span><span class = 'ranking-gp'>11GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt161521_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '161521' href = 'https://hoc24.vn/vip/trannghia103'>Phạm Hoàng Giang</a></span><span class = 'ranking-gp'>7GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145823_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145823' href = 'https://hoc24.vn/vip/duonghai1301'>Nguyễn Hải Dương</a></span><span class = 'ranking-gp'>7GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt241147_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '241147' href = 'https://hoc24.vn/vip/nguyenhoanganhthu'>Nguyễn Hoàng Anh Thư</a></span><span class = 'ranking-gp'>6GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt345031_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '345031' href = 'https://hoc24.vn/vip/thynguyen365'>Emily Thy</a></span><span class = 'ranking-gp'>5GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt301041_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '301041' href = 'https://hoc24.vn/vip/thichteammeo'>Team lớp A</a></span><span class = 'ranking-gp'>5GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://hoc24.vn/images/avt/avt145198_60by60.jpg'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '145198' href = 'https://hoc24.vn/vip/trannghia100'>Trần Hoàng Nghĩa</a></span><span class = 'ranking-gp'>4GP</span></li><li class='ranking-userblock'><img class='img-circle' src = 'https://graph.facebook.com/373585572998650/picture?sz=60'><span class = 'ranking-username'><a class = 'poshytip' data-uid = '120721' href = 'https://hoc24.vn/id/120721'>Quang Vinh</a></span><span class = 'ranking-gp'>4GP</span></li></ul></div> <i><center>(Bảng xếp hạng này do giáo viên hoc24 đánh giá)</center></i>
</div>
</div>
<div class="nav-tabs-custom">
<a class="btn btn-block btn-primary" href="/tin-tuc/Danh-sach-nhan-thuong-Hoc24.html"><i class = "fa fa-gift"></i> Danh sách nhận thưởng hàng tuần</a>
<a class="btn btn-block btn-warning" href="/tin-tuc/Giai-thuong-thang-cho-hoc-sinh-tich-cuc.html"><i class = "fa fa-gift"></i> Danh sách nhận thưởng hàng tháng</a>
</div>
<h4 class="center">Kết nối hoc24 trên facebook</h4>
<div class="nav-tabs-custom">
<div class="fb-page" data-href="https://www.facebook.com/hoc24.vn/" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true"><blockquote cite="https://www.facebook.com/hoc24.vn/" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/hoc24.vn/">Học trực tuyến cùng hoc24.vn</a></blockquote></div>
</div>
<h4 class="center">Có thể bạn quan tâm</h4>
<div class="nav-tabs-custom">
<div class="tags">
</div>
</div>
<div class="nav-tabs-custom">
<center class = "padding-bottom-10">
<a href = "http://www.zuize.vn/cat/anh-che-doremon.html" title="Ảnh chế, ảnh động, ảnh hài, video hài, truyện cười - zuize.vn" target="_blank" ><img src = "/images/zuize.jpg" alt="Ảnh chế, ảnh động, ảnh hài, video hài, truyện cười - zuize.vn" width="300px"></a>
</center>
</div>
<div id="sticky">
<h4 class="center">Tài trợ</h4>
<center>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- hoc24_right_bottom_300x600 -->
<ins class="adsbygoogle"
>
data-ad-client="ca-pub-2208223212947843"
data-ad-slot="6493536418"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center>
</div>
<center class = "videoInread">
<script type="text/javascript">
/*<![CDATA[*/
adorg_key = "2c9f4d9c7a13f5909f93e2f19407bc35";
adorg_time = new Date().getTime();
adorg_channel = "";
adorg_code_format = "ads-sync.js";
adorg_click = "";
adorg_custom_params = {};
/*]]>*/
</script>
<script type='text/javascript' src='//serving.ad.org.vn/js/show_ads_adorg.js?pubId=478'></script>
</center>
</div>
</div>
</div>
</section>
</div>
<div class="modal fade" id="thankModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="myModalLabel">Tuyệt vời quá!</h4>
</div>
<div class="modal-body">
<p>Câu hỏi của <b>Khách</b> đã được gửi lên hoc24 &#128522; <br><b>Mẹo nhỏ:</b> Click vào nút bên dưới để chia sẻ lên Facebook câu hỏi này và sẽ nhanh chóng nhận được câu trả lời từ các bạn của mình &#10084;</p> <center><button class='btn btn-social btn-facebook' onclick = 'shareFacebook();'><i class='fa fa-facebook'></i>Chia sẻ lên Facebook</button></center> </div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Đóng lại</button>
</div>
</div>
</div>
</div>
<script src="/media/cke24/ckeditor.js?v=3"></script>
<script src="/media/cke24/adapters/jquery.js?v=3"></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "AskAction",
"agent": {
"@type": "Person",
"name": "Anh trần"
},
"question": {
"@type": "Question",
"text": "tính khoảng cách ngắn nhất từ người nói đến bức tường để nghe được tiếng vang biết vận tốc trong không khí là 340m/s?ai..."
}
}
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
showProcessingMessages: true,
messageStyle: "none",
showMathMenu: false,
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"], ["\\[","\\]"] ],
displayMath: [ ['$$','$$'] ],
processEscapes: true
},
"HTML-CSS": { availableFonts: ["TeX"], linebreaks: { automatic: true, width: "75% container" } },
CommonHTML: { linebreaks: { automatic: true } }
});
</script>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script type="text/javascript">
CKEDITOR.timestamp='5';
CKEDITOR.env.isCompatible = true;
CKEDITOR.config.imgurTitle = "Chống ô nhiễm tiếng ồn";
QA.addEventListener();
QA.loadRelatedQuestion(144628,2997,2);
function shareFacebook()
{
FB.ui({
method: "share",
href: "https://hoc24.vn/hoi-dap/question/144628.html",
}, function(response){});
$('#thankModal').modal('hide');
}
$(".quiz-list").parent().find("div.quiz-list>p").each(function(i,e){
$(e).attr("answer", i);
});
$(".quiz-list").parent().find("ol.quiz-list>li").each(function(i,e){
$(e).attr("answer", i);
});
$("#grade-7").addClass("active");
var id_q = 144628;
QA.quizAnswered(id_q);
auto = 0;
if(auto == 1 || auto == 2){
$('#thankModal').modal('show');
}
var pos = 0;
if(pos > 0)
{
$('html,body').animate({
scrollTop: $("#ans-"+pos).offset().top - 40},
1000);
setTimeout(function(){ $("#ans-"+pos).effect( "highlight", {}, 5000 ); }, 1000);
QA.loadcomment('[data-cmd=' + pos + ']');
}
</script>
<div id="menuUp">
<div class="fab btn-group show-on-hover dropup">
<div data-toggle="tooltip" data-placement="left" title="Liên kết" >
<button type="button" class="btn btn-primary btn-io dropdown-toggle" data-toggle="dropdown">
<span class="fa-stack fa-2x">
<i class="fa fa-circle fa-stack-2x fab-backdrop"></i>
<i class="fa fa-tag fa-stack-1x fa-inverse fab-primary"></i>
<i class="fa fa-share-alt fa-stack-1x fa-inverse fab-secondary"></i>
</span>
</button></div>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
<li><a href="https://hoc24.vn/cuoc-thi/" data-toggle="tooltip" data-placement="left" title="Cuộc thi vui"><i class="fa fa-trophy"></i></a></li>
<li><a href="https://hoc24.vn/de-thi-thu/" data-toggle="tooltip" data-placement="left" title="Thi thử online"><i class="fa fa-file-text"></i></a></li>
<li><a href="https://hoc24.vn/on-thi-thpt/" data-toggle="tooltip" data-placement="left" title="Ôn thi THPT Quốc gia"><i class="fa fa-graduation-cap"></i></a></li>
<li><a href="https://hoc24.vn/hoi-dap/" data-toggle="tooltip" data-placement="left" title="Hỏi bài online"><i class="fa fa-question"></i></a></li>
<li><a href="https://hoc24.vn/" data-toggle="tooltip" data-placement="left" title="Trang chủ"><i class="fa fa-home"></i></a></li>
</ul>
</div>
</div>
<footer class="main-footer">
<div class="pull-right hidden-xs">
<a href="http://online.gov.vn/HomePage/CustomWebsiteDisplay.aspx?DocId=38463" target="_blank" rel="nofollow"><img src="https://hoc24.vn/images/dathongbao.png" width = 160></a>
</div>
<p><strong>Trung tâm Khoa học Tính toán - Trường ĐHSP Hà Nội &copy; 2014 - 2017</strong></p>
<p>Liên hệ: Hà Đức Thọ - Hotline: 0986 557 525 - Email: hdtho@hoc24.vn</p>
<p>
<a href="https://hoc24.vn/tin-tuc/Dieu-khoan-su-dung-hoc24-vn.html">Điều khoản dịch vụ</a> | <a href="https://hoc24.vn/tin-tuc/Chinh-sach-rieng-tu,-bao-mat.html">Chính sách bảo mật</a> | <a href="https://hoc24.vn/tin-tuc/Chinh-sach-bao-hanh.html">Chính sách bảo hành</a>
</p>
</footer>
</div>
<script type="text/javascript" src="/media/templates/hoc24/plugins/progress/pace.min.js"></script>
<script type="text/javascript" src="/media/templates/hoc24/plugins/slimScroll/jquery.slimscroll.min.js"></script>
<script type="text/javascript" src="/media/templates/hoc24/dist/js/app.js?v=10"></script>
<script type="text/javascript" src="https://hoc24.vn/media/jquery/jquery.poshytip.min.js?v=2"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-66155712-1', 'auto');
ga('send', 'pageview');
</script>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/vi_VN/sdk.js#xfbml=1&version=v2.5&appId=922609287827985";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
setInterval(function(){$.ajax({url:"https://hoc24.vn/?g=keep_alive"});},200000);
var notice = "<div class='alert alert-warning alert-dismissable' style = 'display:none;'><button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;</button><center>Giải thường Cộng tác viên nhiệm kỳ 3 - Hè 2017 <a class='btn btn-info' href='https://hoc24.vn/tin-tuc/Thuong-Cong-tac-vien-nhiem-ki-3-He-2017.html'> Xem thêm</a></center></div>";
if(notice != ""){
$("#hoc24noti").html(notice);
}
//Menu up mobile
// Menu up destop
var bottom = $(window).height() / 2 - 50;
$('.fab').css({
'position' : 'fixed',
'bottom' : bottom+'px',
'right' : '10px'
});
$('.fab').hover(function () {
$(this).toggleClass('active');
});
$(function () {
$('[data-toggle="tooltip"]').tooltip({
container: 'body'
});
})
</script>
<!-- BEGIN TAG - DO NOT MODIFY -->
<script type="text/javascript">
/*<![CDATA[*/
adorg_key = "412b173f5dcecacd8641922e571f4a99";
adorg_time = new Date().getTime();
adorg_channel = "";
adorg_code_format = "ads-sync.js";
adorg_click = "";
adorg_custom_params = {};
/*]]>*/
</script>
<script type='text/javascript' src='//serving.ad.org.vn/js/show_ads_adorg.js?pubId=431'></script>
<!-- END TAG -->
</body>

</html>

2
25 tháng 12 2017

BỊ RẢNH À. ĐÚNG LÀ CHẬT ĐẤT. ĐĂNG MẤY CÁI NÀY LÀM GÌ ?

25 tháng 12 2017

rảnh nợ,bn có bít là bây giờ các bn khác giờ đang ôn thi và có 1 số câu trả lời chưa giải đáp được và cần gấp những câu trả lời của các bn để thi thật tốt ko,còn bn thì sao, bn đăng như thế chẳng phải là đang lấn át diện tích hay sao,hơn nữa,câu hỏi của bn sẽ đẩy những câu hỏi khó của các bn khác sang trang khác rùi mấy bn khác sẽ ko tìm đc câu hỏi và sẽ ko có câu trả lời để ôn thi ko hả,bn rảnh thì lo ôn thi đi mà nếu thi rùi thì cũng nên tìm việc j làm để giúp đỡ bố mẹ đi chứ,bn đăng cái này có ai hỉu đâu mà toàn làm tốn S ko vậy hả?bucquabucquabucqua