Answer: i just learned something new.
Explanation:
Answer:
We will be using Average function of Excel Calculation sheet.
Its Syntax in Calc sheet is : =AVERAGE (number1, [number2], ...)
or you can use =Average and then click on the first cell and drag the whole row till end and close the brackets. It will calculate the average of that row.
Once you have applied average function on first row, you can drag this cell down the column and it will replicate the same function for respective rows.
True; you have treat others the way you want to be treated. It is the golden rule for meeting anyone, whether it's online or in real life. If you were being mean to someone online, would you want someone to be mean to you the same way you were mean to that person? So, the answer is true.
C even the rest of answers seem practical c would be most likely
Answer:
#!/bin/bash
if [ -z "$1" ] || [ -z "$2" ]
then
echo "invalid arguments"
exit 1
fi
filename="$1"
extension="$2"
cnt=1
for file in *. $extension
do
echo "renaming $file to $filename $cnt.$extension"
mv -i "$file" "$filename$cnt. $extension" #prompt before overwriting a file
cnt=$(( $cnt + 1 ))
done
Explanation: