SarkariResultess QA Bank

PHP output के लिए echo कैसे लिखते हैं? को debug कैसे करें?

Other 0 Views Verified
PHP output के लिए echo कैसे लिखते हैं? को debug कैसे करें? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

output 'Hello';

output 'Hello';
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

print('Hello');

print('Hello');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

echo 'Hello';

echo 'Hello';
Additional Explanation
echo PHP में सामान्य output construct है। पहले exact error message, line number और input value check करें।
Verified

console.log('Hello');

console.log('Hello');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।