identifying scripts Flashcards

1
Q

script starts with @Echo

REM

A

cmd script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

script starts with #_____ script

While ($true) {

A

Powershell script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Script starts with ‘______ script

Do until

A

Virtual Basic script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Script starts with #!/bin/bash

A

shell script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Script usually starts with // at the beginning

A

example of javaScript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly