Font size
WorksheetsBTEC Coding & Logic
Total questions: 24
Worksheet time: 24mins
What is another name for a stack
LILO
LIFO
FIFO
FILO
Which of the following are not one of the phases in the ALM
Implementation
Design
Testing
Deployment
Which of these will run atleast once no matter the conditions
While
Do While
For
If
Which are all common uses of algorithms
Sorting, Searching, Pattern Matching, Hashing
Sorting, Searching, Hashing, Pattern Making
Searching, Sorting, Pattern Matching, Etching
Pattern Matching, Saving, Searching, Caching
Which data type would be best to hold "Hello World"
Integer
Float
String
Character
What command is used by HTTP when “user login form data” is sent back to a web server?
PUSH
GET
SEND
POST
If you heard someone talking abput popping when it came to structures in programming what would they be talking about
Adding to the Stack
Removing from the Stack
Adding intergers together
Concatenating two strings together
If LIFO is "STACK" then FIFO is
queue
line
pile
array
Which of the following bases describes Hexadecimal?
Base 8
Base 32
Base 10
Base 16
Which of the following is NOT a common compression format used in modern computer operating systems?
ZIP
RAR
BitLocker
TAR
Which one of the following is the most common vulnerability specific to web applications?
SQL Injection
Distrbuted Denial of Service
HeartBlead
Spear Phishing
Which of the following would you classify as reserved words in programming or scripting?
Terms used as variable identifiers
Terms used as comments
Terms used as operators
Terms used as commands
Which command would you use to see your IP address in a Windows commands prompt
Get-IPAddress
IPCONFIC /all
IPCONFIG
IFCONFIG
What would the following command do
mkdir C:\temp\backup\college
Make a folder called college inside the backup folder inside the temp folder on the C drive
Make a folder called college on the C Drive
Make a file called college inside the backup folder inside the temp folder on the C drive
mark a directory called college ready for the del command
what is the order for the phases of the ALM
Requirements specification, Deployment, Testing, Development & Maintenence
Requirements specification, Development, Deployment, Testing & Maintenence
Development, Testing, Requirements Specification, Deployment & Maintenence
Requirements specification, Development, Testing, Deployment & Maintenence
Which of the following commands can be used on both LINUX and Windows
Mkdir
Echo
Cp
xcopy
Which of the following are NOT normally asscoicated with website devleopment
CSS
Java
HTML
PHP
Which of the following would evaluate to true
A = 3, B = 2, C = 8, D = 9
A < C && B > D
A < C && B > D || D > C
C > A && (B < C && C > D) || (B > A || D > C) && D < (B+8)
D-2 < C || B <= A-1
Which of the following are VALID command line extensions for Windows based scripts?
a) .cmd
b) .vbs
c) .ps1
d) .bat
a, b and d only.
a, b and c only.
b, c and d only.
All of them.
What does the acronym OWASP stand for?
Open Web Association Security Projects.
Open Web Application Security Project.
Open Web Application Security Protocols.
Open Web Application Syntax Protocol.
What is the outcome of the following section of a script?
if %a% LEQ %b% goto :end
echo SUCCESS!
:end
The word 'SUCCESS!' is output to the screen if the variable 'a' is greater than or equal to the variable 'b'.
The word 'SUCCESS!' is output to the screen if the variable 'b' is greater than or equal to the variable 'a'.
The word 'SUCCESS!' is output to the screen if the variable 'a' is greater than the variable 'b'.
The word 'SUCCESS!' is output to the screen if the variable 'b' is greater than the variable 'a'.
If I say the word "Algorithm" I am talking about what?
When we all go to a store called Rithim.
Algae that can DANCE!!!
A new dance move.
A list of steps you follow to finish a task.
Which command shows if /usr/bin is in the current shell search path?
cat PATH
echo $PATH
echo %PATH
cat $PATH
echo %PATH%
