identifying scripts Flashcards
1
Q
script starts with @Echo
REM
A
cmd script
2
Q
script starts with #_____ script
While ($true) {
A
Powershell script
3
Q
Script starts with ‘______ script
Do until
A
Virtual Basic script
4
Q
Script starts with #!/bin/bash
A
shell script
5
Q
#FlipFlop Script FLIPFLOP = 0 while FLIPFLOP < 2: if FLIPFLOP == 0: print ("Zero") FLIPFLOP = 1 else: print ("one') FLIPFLOP = 0
A
Example of python script
6
Q
Script usually starts with // at the beginning
A
example of javaScript