Posts

Showing posts from May 19, 2020

It security defence against digital dark arts (Network attacks)

Image
Topic:  Network attacks Week 1 Quiz solutions:

IT security : Defence against the digital dark arts(Malicious software)

Image
Topic: Malicious software Week 1 Quiz solutions:

Google cloud platform fundamental: Core Infrastructure

Image
Coursera   Topic : GCP regions and zones Week 1- Quiz solutions-

Python data structures Assignment 6.5

Coursera:  Python data structures Assignment 6.5   Week 1: 6.5  Write code using find() and string slicing (see section 6.10) to extract the number at the end of the line below. Convert the extracted value to a floating point number and print it out. Solution:- text = "X-DSPAM-Confidence:    0.8475"; a=text.find(':') b=text[a+2: ] c=float(b) print(c) Coursera official website: https://www.coursera.org/learn/python-data/home/welcome

Python data structures Chapter 6 Quiz

Image
Coursera   Chapter 6  (This course ahead of Programming for everybody with Python' ) Quiz solutions:- Coursera official website: https://www.coursera.org/learn/python-data/home/welcome