Questões de Concurso
Comentadas para analista - suporte técnico
Foram encontradas 226 questões
Resolva questões gratuitamente!
Junte-se a mais de 4 milhões de concurseiros!
itens subseqüentes.
#! /bin/csh -f
echo 'Diretorio de origem:'
set dir1=($<)
echo 'Diretorio de destino:'
set dir2=($<)
if ((! -d $dir1)**(! -d $dir2)) then
echo "Diretorios incorretos."
endif
echo 'Extensao dos arquivos:'
set ext=($<)
echo 'Digite comando [cp ou mv]:'
set comando=($<)
switch ($comando)
case 'cp':
foreach arquivo (dir1/*)
if (! -d $arquivo && $arquivo =~ *.ext) then
cp $arquivo dir2
endif
end
case 'mv':
foreach arquivo (dir1/*)
if (! -d $arquivo && $arquivo =~ *.ext) then
mv $arquivo dir2
endif
end
default:
echo 'Comando invalido'
exit 01
endsw
exit 0
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
Microsoft Windows.
A partir do fragmento de documento apresentado, julgue os itens.


A partir do fragmento de documento apresentado, julgue os itens
de 16 a 20.

The reviewers should read the material, attend the presentations, and write reports. On large projects with many reviews and walk-throughs involving many participants, a substantial number of labor hours can be consumed analyzing documents, attending meetings, and writing reports. For example, a system design review for one module or unit can require 150 labor hours. When overlooked, this labor can result in a very large error in resource and schedule estimation.
Many projects include risk assessment and risk management as a key part of the planning process and expect the plan to identify specific risk areas. The plan is expected to quantify both probability of failure and consequences of failure and to describe what will be done to contain development risk.
A. Behforooz and F. Hudson. Software engineering fundamentals. Ed. Oxford (adapted).
Based on the text above, judge the following items.
The reviewers should read the material, attend the presentations, and write reports. On large projects with many reviews and walk-throughs involving many participants, a substantial number of labor hours can be consumed analyzing documents, attending meetings, and writing reports. For example, a system design review for one module or unit can require 150 labor hours. When overlooked, this labor can result in a very large error in resource and schedule estimation.
Many projects include risk assessment and risk management as a key part of the planning process and expect the plan to identify specific risk areas. The plan is expected to quantify both probability of failure and consequences of failure and to describe what will be done to contain development risk.
A. Behforooz and F. Hudson. Software engineering fundamentals. Ed. Oxford (adapted).
Based on the text above, judge the following items.