CBT IT Certification Training

Unlimited IT Certification Courses via Streaming Video

Login to this site requires ssl communication.
Click here to reload the page over ssl.

  • Lost your password?

  • Back to login
Loading
Login to this site requires ssl communication.
Click here to reload the page over ssl.

  • Lost your password?

  • Back to login
Loading
  • Home
  • Courses
        • Amazon
          • Solutions Architect
          • SysOps Associate
        • CompTIA
          • A+
          • Cloud Essentials
          • Linux+
          • Network+
          • PenTest+
          • Project+
          • Security+
          • Storage+
        • Juniper
          • JNCIA-Junos
          • JNCIA-SEC
          • JNCIS-ENT
          • JNCIS-SEC
        • TCP-IP
          • IP Subnetting
          • IPv6 Network Associate
          • IPv6 Network Professional
          • IPv6 Network Expert
        • Career
          • How to Break into IT
          • IT Freelancing/Contracting
          • Ace Your IT Exams
        • DevOps
          • DevOps Foundations
          • Docker Basics
        • Linux
          • CompTIA Linux+
          • Linux LPI Essentials
          • Linux LPIC1 Exam 101
          • Linux LPIC1 Exam 102
        • VMware
          • VCA Data Center
        • Cisco
          • CCNA Primer
          • CCNA Exam Coaching
          • CCNA
          • CCNP ENARSI
          • CCNP ENCOR Primer
          • CCNP ENCOR
          • CyberOps Associate
          • DevNet Associate
        • Google
          • Cloud Architect
        • Microsoft
          • MTA Database
          • MTA Python
          • MTA Windows 10
          • MTA Server
          • MTA Security
          • Azure Fundamentals
          • Azure Administrator
          • Azure Developer
        • Wireshark
          • WCNA
        • Cloud Computing
          • Amazon AWS Associate
          • AWS Sysops Associate
          • CompTIA Cloud Essentials
          • Google Cloud Architect
          • Azure Fundamentals
          • Azure Administrator
        • ITIL
          • ITIL Foundations
        • Security
          • Cisco CyberOps Associate
          • CompTIA Security+
          • Certified Ethical Hacker
          • Juniper JNCIA-SEC
          • Juniper JNCIS-SEC
          • Microsoft MTA Security
        • Web Development
          • PhP Fundamentals
          • CSS Fundamentals
          • HTML Fundamentals
          • MySQL Fundamentals
          • JavaScript Fundamentals
          • Learn Python From Scratch
  • Racks
    • vRack
    • Live Cisco Racks
  • Tour
  • Join
  • Join
  • Free Training
  • Meet the Trainers
  • Help
    • Helpdesk
    • FAQ
    • Contact Us
    • Privacy
  • Products
    • Books
    • Audiobooks
    • My Products
  • Login
  • Members
    • Account
    • Exam Coaching
    • Exams
    • Forum
    • Live Cisco Rack Training
    • Members Training
    • Member Bonuses
    • My Courses
    • Nuggets
  • Home
  • Courses
        • Amazon
          • Solutions Architect
          • SysOps Associate
        • CompTIA
          • A+
          • Cloud Essentials
          • Linux+
          • Network+
          • PenTest+
          • Project+
          • Security+
          • Storage+
        • Juniper
          • JNCIA-Junos
          • JNCIA-SEC
          • JNCIS-ENT
          • JNCIS-SEC
        • TCP-IP
          • IP Subnetting
          • IPv6 Network Associate
          • IPv6 Network Professional
          • IPv6 Network Expert
        • Career
          • How to Break into IT
          • IT Freelancing/Contracting
          • Ace Your IT Exams
        • DevOps
          • DevOps Foundations
          • Docker Basics
        • Linux
          • CompTIA Linux+
          • Linux LPI Essentials
          • Linux LPIC1 Exam 101
          • Linux LPIC1 Exam 102
        • VMware
          • VCA Data Center
        • Cisco
          • CCNA Primer
          • CCNA Exam Coaching
          • CCNA
          • CCNP ENARSI
          • CCNP ENCOR Primer
          • CCNP ENCOR
          • CyberOps Associate
          • DevNet Associate
        • Google
          • Cloud Architect
        • Microsoft
          • MTA Database
          • MTA Python
          • MTA Windows 10
          • MTA Server
          • MTA Security
          • Azure Fundamentals
          • Azure Administrator
          • Azure Developer
        • Wireshark
          • WCNA
        • Cloud Computing
          • Amazon AWS Associate
          • AWS Sysops Associate
          • CompTIA Cloud Essentials
          • Google Cloud Architect
          • Azure Fundamentals
          • Azure Administrator
        • ITIL
          • ITIL Foundations
        • Security
          • Cisco CyberOps Associate
          • CompTIA Security+
          • Certified Ethical Hacker
          • Juniper JNCIA-SEC
          • Juniper JNCIS-SEC
          • Microsoft MTA Security
        • Web Development
          • PhP Fundamentals
          • CSS Fundamentals
          • HTML Fundamentals
          • MySQL Fundamentals
          • JavaScript Fundamentals
          • Learn Python From Scratch
  • Racks
    • vRack
    • Live Cisco Racks
  • Tour
  • Join
  • Join
  • Free Training
  • Meet the Trainers
  • Help
    • Helpdesk
    • FAQ
    • Contact Us
    • Privacy
  • Products
    • Books
    • Audiobooks
    • My Products
  • Login
  • Members
    • Account
    • Exam Coaching
    • Exams
    • Forum
    • Live Cisco Rack Training
    • Members Training
    • Member Bonuses
    • My Courses
    • Nuggets

i887h

July 21, 2020 By Paul Browning

1.

n = 5

x = 0

 

We need to print out multiples of n, how would we do this?

 

Question 1 of 10

2. z = 40
b = 7
t = “This will test your skills”

r should equal 5, choose the correct statement

Question 2 of 10

3.

loan = [?]
rate = 0

if loan > 0 and loan <= 50:
 rate = 0.05
elif loan > 50 and loan <= 500:
 rate = 0.1
elif loan > 500 and loan <= 1000:
 rate = 0.2
else:
 rate = 0.23

What value should loan be to get a rate of 0.2?

Question 3 of 10

4.

wlist = [‘dog’,’cat’,’rabbit’]
x = 0

for word in wlist:
  for i in range(len(word)):
    x = x + 1
    if x > 10:
      break

What is the value of x?

Question 4 of 10

5.

Look at the following block of code, what can be replace ? with to print 0


thisset = (5,10,9,4,8,1)
thisdict = {1:"C",2:"Python",3:"D",4:"Java",5:"BIC"}
count = 0

for e in thisset:
   if e in thisdict:
       ?
   count += e

print(count)

Question 5 of 10

6.

You need to add some code to the beginning of this block so it would print “Needs Management Approval”

if account.lower() == 'd':
   if invoice_amount > 100:
       print("Needs Management Approval")
   else:
       print("Approved")
elif account.lower() == 'a':
   if invoice_amount >= 100 and invoice_amount <= 1000:
       print("Needs Director Approval")
   else:
       print("Approved")
else:
   print("Please go to HR")

Question 6 of 10

7. A user is shopping on your website and should receive a silver award if they acquire between 700 and 800 points, which code should you use?

Question 7 of 10

8.

What day can we give the code block below to get an answer of 10?

day = input('Please enter day of the week:')
discount = 10

if day == "Monday":
   discount = 3
elif day == "Wednesday":
   discount = 7
elif day == "Friday":
   discount = 8

Question 8 of 10

9.

ourstr = "####"

for i in range(3):
   if i == 2:
       break
   ourstr += "#"
print(ourstr)

What is the value of ourstr in this example?

Question 9 of 10

10.

What is the value of X after this codeblock?

y = 2
x = 0

while x * y < 10:
   if x == 3:
       pass
   while x < 2:
       x = x + 2
   x +=1

Question 10 of 10

Loading... Loading...

 

Filed Under: Uncategorized

Copyright Reality Press Ltd . / Paul Browning