This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | let age: number = 0; | |
| if (age < 50) { | |
| age += 10; | |
| } | |
| // Built-in Types | |
| let sales: number = 2314; | |
| let course: string = "TypeScript"; | |
| let isPublished: boolean = true; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Yves Christian P. Casio | |
| /* | |
| Create a C# program that represents the following UML class diagram. The diagram represents public, private, | |
| and protected attributes as well as class dependency and inheritance. | |
| */ | |
| using System; | |
| namespace Shapes { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Yves Christian P. Casio BSCS 3-1N | |
| /* | |
| Write a C# program to check whether the given number is armstrong number or not.Armstrong Number in C#: | |
| A positive number is called armstrong number if it is equal to the sum of cubes of its digits for example | |
| 0, 1, 153, 370, 371, 407 etc. | |
| */ | |
| using System; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # CASIO, YVES CHRISTIAN P. BSCS 1-1N | |
| ''' | |
| In most personal computers, the largest integer is 32,767 and the largest long integer is | |
| 2,147,483,647. Some applications, such as the national debt, may require an unbounded | |
| integer. One way to store and manipulate integers of unlimited size is by using a linked | |
| list. Each digit is stored in a node of the list. For example, the figure below shows how | |
| we could store a five-digit number in a linked list. | |
| While the linked list in the figure is represented as moving from right to left, remember that | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from time import sleep | |
| # ---------------------------------------- | |
| def new_game(): | |
| answers = [] | |
| correct_answers = 0 | |
| qNum = 1 | |
| for keys in question: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import random | |
| import emoji | |
| import time | |
| import webbrowser | |
| rock = emoji.emojize(":bomb:") | |
| paper = emoji.emojize(":page_facing_up:") | |
| scissors = emoji.emojize(":scissors:") |