Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: Record Answers Here for lesson 22nd March 2022 #7450
    VashiTokyo
    Participant

    Yes because sometimes you need more than one function in order to make the code work, for example:
    window = turtle.Screen()

    in reply to: Record Answers to Python Activity 11.2 #7409
    VashiTokyo
    Participant

    list = [‘PlayStation’, ‘Xbox’]
    list2 = [‘Ps4’, ‘Ps5’]
    list3 = [‘Xbox360’, ‘Xboxone’]

    print(list[0], ‘or’, list[1])
    pick = input(‘Pick one: ‘)

    if pick == list[0]:
    print(‘Smart choice’)
    print(list2[0], ‘or’, list2[1])
    pick2 = input(‘Pick again: ‘)
    print(‘Both choices are good’)
    print(‘Genius’)

    elif pick == list[1]:
    print(‘Bad choice’)
    print(list3[0], ‘or’, list3[1])
    pick3 = input(‘Pick again: ‘)
    print(‘Both choices are bad’)
    print(‘Failure’)

    in reply to: Computer Resources on Various Computer Systems #7237
    VashiTokyo
    Participant

    A supercomputer employs a large number of processors and employs a technique known as parallel processing. A mainframe computer is a computer used primarily by large organizations for critical applications. A microcontroller is a small computer with a very specific function that you might find in your car. Supercomputers are the world’s largest and most expensive computers. They can process billions of instructions or floating-point instructions in a single second.

    Mainframes are less expensive, have a smaller footprint, and run at a slower speed. Time-sharing allows multiple people to use a computer system at the same time.

    in reply to: What is a Resource? #7196
    VashiTokyo
    Participant

    Central Processing Unit (CPU): The CPU is basically the brain of the computer.

    Hard Drive: The Hard drive is basically where the computer store its memories.

    in reply to: Operating Systems Intro Types #7103
    VashiTokyo
    Participant

    ios and windows are very similar, but the only difference would be the system’s layout. Both operating systems will have different types of security systems. Windows PCs are more for people who play games, and ios are better for designing, photoshopping photo editing, and overall better battery life.

    in reply to: Image Compression Activity #7048
    VashiTokyo
    Participant

    Run Length Encoding is a type of lossless compression. It can compress an image by repeating the same color over and over again by just compressing the color that has the most amount of pixel in it. Example, the color of your shirt.

    in reply to: Compression File Formats #7044
    VashiTokyo
    Participant

    1. File compression is when an original size of a file is compressed into a smaller file. There are two types of file compression, lossy and lossless.
    2. Lossless compression will make the file remain the same after being compressed. Lossy compression is when a file is compression, it loses some of it’s quality.
    3. Lossy: GIF and JPEG / Lossless: PNG and BMP

    in reply to: Top software failures in recent history #6298
    VashiTokyo
    Participant

    British Airways booking application is one of the top software that failed in recent years due to technical issues.

    in reply to: Approaches to online Learning #6296
    VashiTokyo
    Participant

    Learning and participating in class can improve our knowledge of the subject more and more.

Viewing 9 posts - 1 through 9 (of 9 total)
Scroll to Top