top of page

Search Results

19 results found with an empty search

  • About | Codex Corporation

    Our Mission We are here to provide optimal methods in offering premium services about programming languages with respect for the demands of our clients and to apply new technological attainment for faster and and more efficient treatment to our clients. Web Creator Miguel Carlo G. Flores is a freshman in Angeles University Foundation currently taking Bachelor of Science in Computer Science. He created this website to educate people of all ages about programming languages. The Codex Corporation Programming School is his first accomplished website in pursuing his future company. Sources from the page came from tutorialspoint , w3schools , and data flair training .

  • Main Data Types of Python | Codex Corporation

    Main Data Types of Python Every value in Python is called an " object ". Every object has a specific data type. The three most-used data types are the following: Integers (int) Integers are numbers used to represent an object such as number 3 . Integers = ...... -2, -1, 0, 1, 2, 3, 4, 5, ....... Floating-point numbers (float) Used to represent floating-point numbers. Float-point numbers are any real numbers with a decimal point. Floating-point numbers = .... -1.25, -1.0, 0.0 , 1,.5, 2.3, 3.5, ... Strings Strings are array of sequenced characters and is written inside single quotes, double quotes or triple quotes. Also, A string is a list of characters that is in order. You can codify a sequence of characters using a string. For instance, the word "hello". Strings = 'Yo', "Hello!", "'Hi!"' Lists Lists are used to specify an ordered sequence of elements. Basically, they help programmers keep related data together and perform the same operations on several values at once. Compared to string, lists are mutable or changeable. my_list = [1, 2, 3] my_list2 = ["a", "b", "c"] Tuples Tuples are similar to lists. They allow you to display an ordered sequence of elements. But they are immutable and you cannot change the values stored in a tuple. These are slightly faster than lists in optimizing the codes. my_tuple = (1, 2, 3, 4, 5) my_tuple[1:3] Dictionaries Dictionaries holds indexes with keys that are mapped to certain values. These key-value pairs offers a great way of organizing and storing data in Python. A key value can either be a string , boolean , or integer . Customer 1 = {'username': 'john-sea': 'online': false, 'friends':100} Learn more

  • About Java | Codex Corporation

    Getting Started Java Syntax Main Data Types of Java Java Built-in Functions

  • Contact | Codex Corporation

    Contact Us Please email us with your questions or inquiries or call 09611320007. We would be happy to answer you questions and set up a meeting with you. 13th Avenue, Cubao, Quezon City https://floresmiguelcarlo.wixsite.com/codexcorporation 09611320007 First Name Last Name Email Message Send Thanks for submitting! Facebook Twitter Opening Hours Mon - Fri 8:00 am – 8:00 pm Saturday 9:00 am – 7:00 pm Sunday 9:00 am – 9:00 pm

  • Java | Codex Corporation

    Java Java is a high-level, class-based, object-oriented programming language with a focus on minimizing implementation dependencies. It is a general-purpose programming language designed to enable programmers to write once and run anywhere (WORA), which means that compiled Java code runs on all systems that accept Java without the need to recompile. Typically, Java applications are compiled to bytecode, which may execute on any Java virtual machine (JVM), independent of the underlying computer architecture. Learn more

  • Main Data Types of Java | Codex Corporation

    Main Data Types of Java Variables are nothing more than memory addresses dedicated for storing values. This means that when you declare a variable, you allocate memory for it. The operating system allocates memory and determines what can be put in reserved memory based on the data type of a variable. As a result, by associating variables with multiple data types, you can store integers, decimals, or characters in these variables. There are two data types in Java: Primitive Data Types Primitive data types are the ones which are predefined by the programming language which in this case is Java. Without primitive data types it would be impossible to frame programs . Primitive data types are also the building blocks of Non-primitive data types. Types of Java Primitive Data Types : Int Float Char Boolean Byte Short Long Double Non- Primitive Data Types These are the datatypes which have instances like objects. Hence they are called reference variables . Types of Java Non-Primitive Data Types : Classes Interfaces Strings Arrays Learn more

  • SharePoint | Codex Corporation

    Join our SharePoint's Communication Site! Learn more

  • Home | Codex Corporation

    Your Essential Partner in Programming School Learn More a high-level general-purpose programming language originally designed for system software development. C Language Learn more TRENDING TECHNOLOGIES High-level Programming Languages to learn now Trending High-level programming languages sought by companies and markets today. Python Language A dynamically semantic, interpreted, object-oriented high-level programming language. Learn more Java Language A general-purpose, class-based, object-oriented programming language. Learn more Codex Corporation Take Pride in their Numbers 15 Years of Experience 10K Business Partners 25M Products Installed 22 Countries World Wide 5 Industry Awards Our Partners Are You Ready to Accelerate Your Learning? Join us now! Avail our services to ensure your future in the field of technology. Get Started

  • About Python | Codex Corporation

    Getting Started Python Syntax Main Data Types of Python Python Built-in Functions Learn Java

  • Python | Codex Corporation

    Python Programming Language Python is a high-level, interpreted, interactive and object-oriented scripting language. This is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages. This programming language is a must for students and working professionals to become a great Software Engineer specially when they are working in Web Development Domain. Moreover, this is a great language for beginner-level programmers and supports the development of a wide range of applications from simple text processing to WWW browsers to games. Learn more

  • Java Syntax | Codex Corporation

    Java Syntax A Java program consists of one or more classes one of them must be public and must have a method with the following signature: public static void main (String[] args) . Basically, the main() method will instantiate appropriate objects and send them "messages" (by calling their methods) to perform the desired tasks. The main() method should not contain any complicated program logic nor program flow control. Identifiers Identifiers are unique names assigned to things such as classes, variables, and functions across the program. They may contain: Underscore ( _ ) and dollar ($) (only special characters allowed in naming identifiers.) Unicode characters such as numbers, and alphabets. In the above Java code, we have 5 identifiers namely : Test : class name. main : method name. String : predefined class name. args : variable name. a : variable name. Literals These are the identifiers that have inherent worth. These can be used to create variables. Additionally, literals can be thought of as constants. Literals come in a variety of formats, including numeric, character, and string. a. Numeric Literals - This has 4 kinds of variations: 1. Decimal - Any number of base 10 (such as 87.53 ) 2. Binary - Any number of base 2 (such as 11011, 11000 ) 3 . Octal - Any number of base 8 (such as 1177 ) 4 . Hexadecimal - Any number of base 16 (such as A54C ) b. Floating point Literals - We can only express numeric numbers using a decimal point (.). These are fractional numbers that cannot be represented in full integer form. For instance: 10.876 c . Character Literals - These are the literals that deal with characters, that is, with inputs that are not of the type numeric. 1. Single quoted character - This encloses all characters with a single length within single quotes. For instance: ' a ',' j '. 2. Escape Sequences - These are the characters preceding by a backslash that when printed on screen perform a specific function, such as producing a tab or a new line. Example: ’ \n ’ Keywords Keywords are unique identifiers assigned by the compiler. These are not permitted to be used to name variables, classes, or functions. These are protected terms. Some of the keywords are: Abstract – This keyword specifies that the class is an abstract class. Boolean – This is a data type specifier which mentions that a particular variable is boolean. Byte – this is a data type specifier which specifies a particular variable to be of byte type. Case – a switch case keyword which specifies program to be performed if a particular case is satisfied. Catch – during a throw case of error handling catch encloses actions to be performed if exception occurs. Break – The break keyword breaks the control out of a loop. Void – this keyword renders a method non-returnable. Char – This is a data type specifier which specifies that the variable is of character type. Class – This keyword specifies the creation of a new class followed by a class name. Extends – This is used to indicate that the class mentioned after it is the derivation of a superclass. Comments Comments are required if the developer want to provide documentation to a program's declared function. This is to improve the readability and comprehension of the code. The compiler does not execute comments and they are simply ignored during execution. Comments come in a variety of types: a. Single Line Comments - This type consist of a single line of comment generally written after a code line to explain is meaning. b. Multi Line Comments - These comments span for multiple lines throughout the codebase. They are generally written at the beginning of the program to elaborate about the algorithm. These are also used by developers to comment out blocks of code during debugging. They comprise of a starting tag(/*) and an ending tag(*/) c. Documentation Comments - Typically, documentation comments are utilized while writing large programs for a project or software application, as they aid in the creation of documentation APIs. These APIs are required for reference purposes, such as to determine which classes, methods, and arguments are utilized in the code. The Javadoc tool processes these comments while generating documentation. Learn more

  • FAQs | Codex Corporation

    Frequently Asked Questions How is the online tutoring implemented? Online tutoring service will be implemented in a Microsoft Teams environment with 10 clients or fewer. If a client is unable to attend a session, he or she may send us an email to reschedule his or her missed session. What is the Programming and Coding? Coding is the process of converting various codes into instruction in a language recognized by computers. Code is a method of communication in which symbols, words, and letters all have a specific definition. Programming is the process of organizing these codes in a particular order to accomplish a task. Do you offer Refund? We will offer a full refund if the clients decide to cancel their membership within three days of registration. But half of their payment will be refunded if they opt to cancel their membership within one month of their registration. What is Codex Corporation? Codex Corporation is an information technology company that offers programming school that aims to educate clients about programming languages, whether they are kids, teenagers, or adults, and further enhance their skills.

bottom of page