SarkariResultess QA Bank

PHP output के लिए echo कैसे लिखते हैं? इसका working code example क्या है?

Other 0 Views Verified
PHP output के लिए echo कैसे लिखते हैं? इसका working code example क्या है? सही विकल्प चुनें और 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 है।
Verified

console.log('Hello');

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