logo

Crowdly

Browser

Add to Chrome

Programare Web: Back-end (sem. 6)

Looking for Programare Web: Back-end (sem. 6) test answers and solutions? Browse our comprehensive collection of verified answers for Programare Web: Back-end (sem. 6) at moodle.usm.md.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Ce instrucțiune MYSQL este utilizată pentru a insera date noi într-o bază de date? / Which MYSQL statement is used to insert new data in a database?

0%
0%
0%
0%
View this question

Analizați codul și scrieți în spațiul liber valoarea expresiei

<?php

$s = 0; $i = 20;

do {

$s += $i + $i;

$i++;

} while ($i < 21);

echo($s);

?>

View this question

Analizați codul și scrieți în spațiul liber valoarea expresiei

<?php

$num = 0;

$count = 1;

for ($i = 0; $i < 1; $i++) {

$count++;

$num = $num * 10 + ($count - 1);

$res = $num * 9 + $count;

echo $res ;

}

?>

echo suma_elemente(array(25,10,36));

?>

View this question

Cum selectați toate înregistrările dintr-un tabel numit „Persons” în care „FirstName” este „Peter” și „LastName” este „Jackson”?, cu MySQL.

/ With MySQL, how do you select all the records from a table named "Persons" where the "FirstName" is "Peter" and the "LastName" is "Jackson"?

0%
100%
0%
View this question

Analizați codul, aflați valoarea expresiei și selectați răspunsul corect

<?php

$a = 3;

$b = 4;

$c = 5;

if ($a*$a==$b+$c) {

echo "Numerele sunt pitagorice"; }

elseif ($b*$b==$a+$c) {

echo "Numerele sunt pitagorice"; }

elseif ($c*$c==$a+$c) {

echo "Numerele sunt pitagorice"; }

else {

echo " $a,$b,$c nu sunt numere pitagorice";

}

?>

0%
0%
View this question

Analizați codul și scrieți în spațiul liber valoarea expresiei

<?php

$s = 0; $i = 2;

while ($i <= 5) {

$s += $i + $i;

$i++;

}

echo($s);

?>

View this question

Analizați codul și scrieți în spațiul liber valoarea expresiei

<?php

$s = 0; $i = 3;

while ($i <= 5) {

$s += $i + $i;

$i++;

}

echo($s);

?>

View this question

Afișați valoarea variabilei sesiuni „favcolor".

// Output the value of the session variable "favcolor".

echo  ;
View this question

Utilizați parametrul de format corect pentru a afișa o dată ca aceasta: 2021.03.16.

// Use the correct format parameter to output a date like this: 2021.03.16..

 

echo date  ;
View this question

Care este valoarea variabilei $c ?

$a = 5;

$b = 'doi';

$c = $a - $b;

View this question

Want instant access to all verified answers on moodle.usm.md?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome