Noli Esmeña
Noli Esmeña
  • 59
  • 29 077

Відео

Excel VBA Errors and Debugging (Quarter 2)
Переглядів 392 місяці тому
Excel VBA Errors and Debugging (Quarter 2)
Creating Conditions in Excel VBA (Quarter 2 Module 1)
Переглядів 1052 місяці тому
Creating Conditions in Excel VBA (Quarter 2 Module 1)
The Visual Basic Editor (Quarter 2)
Переглядів 1982 місяці тому
The Visual Basic Editor (Quarter 2)
Creating Loops and Subroutines in Small Basic (Quarter 2 Module 3)
Переглядів 722 місяці тому
Creating Loops and Subroutines in Small Basic (Quarter 2 Module 3)
Using Conditions in Small Basic (Quarter 2 Module 3)
Переглядів 492 місяці тому
Using Conditions in Small Basic (Quarter 2 Module 3)
Using Operators and Control Structures in Small Basic (Quarter 2 Module 2)
Переглядів 962 місяці тому
Using Operators and Control Structures in Small Basic (Quarter 2 Module 2)
Using Variables in Small Basic (Quarter 2 Module 2)
Переглядів 1242 місяці тому
Using Variables in Small Basic (Quarter 2 Module 2)
Getting Started with Microsoft Small Basic (Quarter 2 Module 1)
Переглядів 2192 місяці тому
Getting Started with Microsoft Small Basic (Quarter 2 Module 1)
Algorithm and Flowchart (Quarter 1 Module 4)
Переглядів 1053 місяці тому
Algorithm and Flowchart (Quarter 1 Module 4)
Elements of Programming (Quarter 1 Module 3)
Переглядів 1103 місяці тому
Elements of Programming (Quarter 1 Module 3)
The Programming Process (Quarter 1 Module 2)
Переглядів 743 місяці тому
The Programming Process (Quarter 1 Module 2)
Software and Programs (Quarter 1 Module 1)
Переглядів 1003 місяці тому
Software and Programs (Quarter 1 Module 1)
Programming Basics Review 2
Переглядів 9364 місяці тому
Programming Basics Review 2
Basics of Visual BASIC Part 1
Переглядів 1334 місяці тому
Basics of Visual BASIC Part 1
Basics of Visual BASIC Part 1
Переглядів 984 місяці тому
Basics of Visual BASIC Part 1
Programming Basics Review 1
Переглядів 794 місяці тому
Programming Basics Review 1
NSQ 2023 Robotics Running/Racing - TayugNHS (Team)
Переглядів 60Рік тому
NSQ 2023 Robotics Running/Racing - TayugNHS (Team)
NSQ 2023 Robotics Balloon Popping - TayugNHS (Individual)
Переглядів 114Рік тому
NSQ 2023 Robotics Balloon Popping - TayugNHS (Individual)
NSQ 2023 Robotics Balloon Popping - TayugNHS (Team)
Переглядів 263Рік тому
NSQ 2023 Robotics Balloon Popping - TayugNHS (Team)
NSQ 2023 Robotics Innovation - TayugNHS (Individual)
Переглядів 13Рік тому
NSQ 2023 Robotics Innovation - TayugNHS (Individual)
NSQ 2023 Robotics Balloon Popping - TayugNHS (Teacher Category)
Переглядів 69Рік тому
NSQ 2023 Robotics Balloon Popping - TayugNHS (Teacher Category)
NSQ 2023 Robotics Line Tracing - TayugNHS (Team)
Переглядів 14Рік тому
NSQ 2023 Robotics Line Tracing - TayugNHS (Team)
NSQ 2023 Robotics Running/Racing - TayugNHS (Individual)
Переглядів 28Рік тому
NSQ 2023 Robotics Running/Racing - TayugNHS (Individual)
NSQ 2023 Robotics Sumobot - TayugNHS (Team)
Переглядів 29Рік тому
NSQ 2023 Robotics Sumobot - TayugNHS (Team)
NSQ 2023 Robotics Sumobot - TayugNHS (Individual)
Переглядів 12Рік тому
NSQ 2023 Robotics Sumobot - TayugNHS (Individual)
NSQ 2023 Robotics Line Tracing - TayugNHS (Teacher Category)
Переглядів 15Рік тому
NSQ 2023 Robotics Line Tracing - TayugNHS (Teacher Category)
NSQ 2023 Robotics Running/Racing - TayugNHS (Teacher Category)
Переглядів 7Рік тому
NSQ 2023 Robotics Running/Racing - TayugNHS (Teacher Category)
NSQ 2023 Robotics Line Tracing - TayugNHS (Individual)
Переглядів 12Рік тому
NSQ 2023 Robotics Line Tracing - TayugNHS (Individual)
NSQ 2023 Robotics Sumobot - TayugNHS (Teacher Category)
Переглядів 17Рік тому
NSQ 2023 Robotics Sumobot - TayugNHS (Teacher Category)

КОМЕНТАРІ

  • @JanielleFayeLajera
    @JanielleFayeLajera Місяць тому

    LAJERA, Janielle Faye V. Grade 10 - Oersted 1. What is the major difference of for loop and while loop? A "For loop" repeats a known number of times and stops at a definite point while a "While loop" keeps repeating until a certain condition is no longer true. 2. How are for loop and while loop utilized in the sample programs? In a program that calculates the total price, "for loops" are used when the number of items is known, like if you have a fixed list of supplies. While "while loops" are used when the number of items is unknown, allowing the user to stop by entering a specific condition. In this program, a "do-while loop" is used because it lets the program ask the user for the quantity and price of items first, then check if they want to stop. The key difference with the do-while loop is that it checks if the user wants to stop after asking for input, so the program runs at least once.

  • @JohnGabriel-e2o
    @JohnGabriel-e2o Місяць тому

    Ron Gabriel, E. Jogno G10, STE - Maxwell 1. You use for loops if you are certain about the specific numbers regarding the functionality of program, on the other hand, you should use while loop if you are uncertain. While loops are used so that the program keeps running until a condition is declared untrue. 2. For the first sample, the program counts from 1 - 10 with respect to the selected cell. The function of the second program is to calculate the prices of school supplies, until the program identifies an empty cell. The first program is done with certainty while the second program performs continuous execution of work until a specific condition is met. Furthermore, the second program could be reused again without reprogramming once another set of school supply is added while the first program might need some changes in the code if there is a need to make variations.

  • @giancarlopaulo3213
    @giancarlopaulo3213 Місяць тому

    1. in for loops the number of repetitions is known on the other hand while loop runs until a specified condition becomes false, the number of repetitions is not known 2. The given example in the for loop prints numbers 1 to 10. In this case, it runs exactly 10 times to display the numbers 1 to 10 in a column. Here, the number of repetitions is known. The example in the while loop calculates the total price of an item. In this case, it calculates the total price for each item until it reaches an empty cell. Here, the number of repetitions is unknown. - Paulo, Gian Carlo F. G10 STE OERSTED

  • @j_tlete
    @j_tlete Місяць тому

    Major difference of For loop and While loop is: 1. the for loop only runs a set of a number repetition and its loop stops in a definite time. a while loop runs a set of a number repetition that still uncertain and its loop only stops when the condition is false. 2. the sample in for loop the statement tells that it will count from 1-10 and it will only repeated 10 times. the while loop sample indicates that the number of the loop will only print the value counter of the current cells the process are row by row until you reached cell number 10. -Dyna Jodi Tolete G10 STE Maxwell

  • @sab2276
    @sab2276 Місяць тому

    Major Difference of For Loop and While Loop: A For Loop runs a set number of times with known repetitions. A While Loop runs until a condition becomes false, with an unknown number of repetitions. Utilization in Sample Programs: In the For Loop example, the program counts from 1 to 10, updating Excel cells exactly 10 times. In the While Loop example, it calculates total prices row by row until it finds an empty cell in column 1. -Jenny Rose E barrogo G10 STE OERSTED

  • @ZeanleonardoSarmiento-x8x
    @ZeanleonardoSarmiento-x8x Місяць тому

    I, Zean Leonardo. States that the differents of for loop, and while loop is for loop it runs for a specific number, while while loop runs until a certain condition is no longer present. Also for loop starts at the end, and the while loop just run aslong the condition is not present

  • @FirstLast-numba1
    @FirstLast-numba1 Рік тому

    Can I feed these to daphnia?

  • @cathytilford388
    @cathytilford388 2 роки тому

    Very informative. This info needs wide spread exposure. Thanks

  • @genkidama7385
    @genkidama7385 2 роки тому

    today i learned 'bioreactor' is the new name for 'aquarium'. scientific mysticism...

  • @angelfernando1217
    @angelfernando1217 2 роки тому

    Angel Fernando From:G-10 Cattleya

  • @rocelleannemenor3766
    @rocelleannemenor3766 2 роки тому

    ROCELLE ANNE MENOR G-10 CATTLEYA

  • @geyfluv
    @geyfluv 2 роки тому

    Rafael, Christyne Gale E. G10 Cattleya

  • @christinnegracielaperez7608
    @christinnegracielaperez7608 2 роки тому

    Christinne Graciela C. Perez G10-cattleya

  • @nelleurbano556
    @nelleurbano556 2 роки тому

    Urbano Jannel Anne E. 10-CATTLEYA

  • @jeffreycobangbang9904
    @jeffreycobangbang9904 2 роки тому

    JEFFREY D. COBANGBANG G10 CATTLEYA

  • @eimieeugilleretonda1168
    @eimieeugilleretonda1168 2 роки тому

    Retonda,Eimie Eugille C. G10-CATTLEYA

  • @justinelucero3945
    @justinelucero3945 2 роки тому

    Justine O. Lucero G10-CATTLEYA

  • @cedrickpimentel92
    @cedrickpimentel92 2 роки тому

    Cedrick R. Pimentel G-10 Cattleya

  • @raquelordonio5511
    @raquelordonio5511 2 роки тому

    Kristine Joy B Ordonio G-10 Cattleya

  • @audreydelena5327
    @audreydelena5327 2 роки тому

    Audrey S. De Leńa G-10 CATTLEYA

  • @alvindeleon0323
    @alvindeleon0323 2 роки тому

    Alvin R. De Leon G-10 CATTLEYA

  • @jenalynrimas3328
    @jenalynrimas3328 2 роки тому

    Jenalyn D. Rimas G10-Gladiola

  • @freilyncabanizas5622
    @freilyncabanizas5622 2 роки тому

    Freilyn Cabanizas G-10 GLADIOLA

  • @joelcerezo5499
    @joelcerezo5499 2 роки тому

    Cerezo, Joel G. G10-Cattleya

  • @mariantamparia3332
    @mariantamparia3332 2 роки тому

    TAMPARIA,MARIAN S. G10 GLADIOLA

  • @thyzenulila5717
    @thyzenulila5717 2 роки тому

    Thyzen Adelina D. Ulila G10-Gladiola

  • @jimcabinta9774
    @jimcabinta9774 2 роки тому

    Cabinta,Jim Joshua From: G10-Cattleya

  • @abrielshanecantuba2214
    @abrielshanecantuba2214 2 роки тому

    Cantuba, Abriel Shane O. G10 CATTLEYA

  • @abrielshanecantuba2214
    @abrielshanecantuba2214 2 роки тому

    Abriel Shane O. Cantuba G10 CATTLEYA

  • @kairuzperez833
    @kairuzperez833 2 роки тому

    Perez, Kairuz Hendrick U. G10-SPM

  • @neilnitor6105
    @neilnitor6105 2 роки тому

    Nitor,Neil S. G10-SPM

  • @drintzygameplay9063
    @drintzygameplay9063 2 роки тому

    Aldrin-Tim Borja G10-GLADIOLA

  • @johnreymaure2463
    @johnreymaure2463 2 роки тому

    John Rey C. Maure G-10 SPM

  • @jamillsaturno3469
    @jamillsaturno3469 2 роки тому

    Jamill Saturno -g10 gladiola

  • @jasmineladines9559
    @jasmineladines9559 2 роки тому

    Jasmine B. Ladines G10-Cattleya

  • @leolangto3039
    @leolangto3039 2 роки тому

    Christina Barnachea grade -10 Cattleya

  • @alexaanadonchan912
    @alexaanadonchan912 2 роки тому

    Alexa A. Chan G-10 gladiola

  • @nathanieljothamprado3709
    @nathanieljothamprado3709 2 роки тому

    Nathaniel Jotham B. Prado G10-Gladiola

  • @lorrainevillacorta9142
    @lorrainevillacorta9142 2 роки тому

    VILLACORTA,JAZMINE LORRAINE V. G10-SPM

  • @johngenandrylacosta9882
    @johngenandrylacosta9882 2 роки тому

    John Genandryl F. Acosta Grade 10-SPM

  • @kleosyt_
    @kleosyt_ 2 роки тому

    Jasmine Joy Bautista Grade 10 SPM

  • @angelicacalderon5514
    @angelicacalderon5514 2 роки тому

    Calderon, Angelica P. from G10 STE-OERSTED

  • @stephaniecostales2415
    @stephaniecostales2415 2 роки тому

    Perdon, Stephanie Joy C. G10- Gladiola

  • @trev9515
    @trev9515 2 роки тому

    Agana, Romulo Josef G. G10 - SPM

  • @maricarcabaya7153
    @maricarcabaya7153 2 роки тому

    Cabaya Alexandrea Venize M. G-10 SPM

  • @alexanderferrer7334
    @alexanderferrer7334 2 роки тому

    Ferrer, Alexander Benedict V. G10-SPM

  • @shunandymarcolino1849
    @shunandymarcolino1849 2 роки тому

    Marcolino, Shun Andy S. G10-Cattleya

  • @patriciaviendevera1296
    @patriciaviendevera1296 2 роки тому

    Patricia Vien De Vera Grade 10-SPM

  • @francisdeguzman138
    @francisdeguzman138 2 роки тому

    Francis Cloyd T. De Guzman G10-SPM

  • @arianedanicabanaag8965
    @arianedanicabanaag8965 2 роки тому

    Banaag, Ariane Danica B. G10 SPM