Difference between revisions of "User:Mukund-pondkule-6a11@uni-paderborn.de"
Jump to navigation
Jump to search
| Line 81: | Line 81: | ||
from editing film shot with a single camera from various camera angles. | from editing film shot with a single camera from various camera angles. | ||
</quiz> | </quiz> | ||
| + | |||
| + | |||
| + | '''Example Code:''' | ||
| + | |||
| + | <syntaxhighlight lang="c"> | ||
| + | for(int i=0; i<4; i++){ | ||
| + | dosomething(); | ||
| + | } | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | |||
| + | |||
| + | <syntaxhighlight lang="bash"> | ||
| + | STR="HELLO WORLD!" | ||
| + | echo ${STR,} #=> "hELLO WORLD!" (lowercase 1st letter) | ||
| + | echo ${STR,,} #=> "hello world!" (all lowercase) | ||
| + | |||
| + | STR="hello world!" | ||
| + | echo ${STR^} #=> "Hello world!" (uppercase 1st letter) | ||
| + | echo ${STR^^} #=> "HELLO WORLD!" (all uppercase) | ||
| + | </syntaxhighlight> | ||
Revision as of 11:19, 17 September 2020
Introduction text here.
Template
| {{{REAL-NAME}}}
|
|---|
THE EVENT FOR HIGH PERFORMANCE COMPUTING, MACHINE LEARNING AND DATA ANALYTICS
Select only one correct answer and no incorrect answers.
|
|
Example Code:
for(int i=0; i<4; i++){
dosomething();
}
STR="HELLO WORLD!"
echo ${STR,} #=> "hELLO WORLD!" (lowercase 1st letter)
echo ${STR,,} #=> "hello world!" (all lowercase)
STR="hello world!"
echo ${STR^} #=> "Hello world!" (uppercase 1st letter)
echo ${STR^^} #=> "HELLO WORLD!" (all uppercase)