- 59
- 29 077
Noli Esmeña
Приєднався 23 кві 2020
Creating Loops in Excel VBA (Quarter 2 Module 1)
Creating Loops in Excel VBA (Quarter 2 Module 1)
Переглядів: 164
Відео
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)
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)
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)
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.
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.
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
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
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
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
Can I feed these to daphnia?
Very informative. This info needs wide spread exposure. Thanks
today i learned 'bioreactor' is the new name for 'aquarium'. scientific mysticism...
Angel Fernando From:G-10 Cattleya
ROCELLE ANNE MENOR G-10 CATTLEYA
Rafael, Christyne Gale E. G10 Cattleya
Christinne Graciela C. Perez G10-cattleya
Urbano Jannel Anne E. 10-CATTLEYA
JEFFREY D. COBANGBANG G10 CATTLEYA
Retonda,Eimie Eugille C. G10-CATTLEYA
Justine O. Lucero G10-CATTLEYA
Cedrick R. Pimentel G-10 Cattleya
Kristine Joy B Ordonio G-10 Cattleya
Audrey S. De Leńa G-10 CATTLEYA
Alvin R. De Leon G-10 CATTLEYA
Jenalyn D. Rimas G10-Gladiola
Freilyn Cabanizas G-10 GLADIOLA
Cerezo, Joel G. G10-Cattleya
TAMPARIA,MARIAN S. G10 GLADIOLA
Thyzen Adelina D. Ulila G10-Gladiola
Cabinta,Jim Joshua From: G10-Cattleya
Cantuba, Abriel Shane O. G10 CATTLEYA
Abriel Shane O. Cantuba G10 CATTLEYA
Perez, Kairuz Hendrick U. G10-SPM
Nitor,Neil S. G10-SPM
Aldrin-Tim Borja G10-GLADIOLA
John Rey C. Maure G-10 SPM
Jamill Saturno -g10 gladiola
Jasmine B. Ladines G10-Cattleya
Christina Barnachea grade -10 Cattleya
Alexa A. Chan G-10 gladiola
Nathaniel Jotham B. Prado G10-Gladiola
VILLACORTA,JAZMINE LORRAINE V. G10-SPM
John Genandryl F. Acosta Grade 10-SPM
Jasmine Joy Bautista Grade 10 SPM
Calderon, Angelica P. from G10 STE-OERSTED
Perdon, Stephanie Joy C. G10- Gladiola
Agana, Romulo Josef G. G10 - SPM
Cabaya Alexandrea Venize M. G-10 SPM
Ferrer, Alexander Benedict V. G10-SPM
Marcolino, Shun Andy S. G10-Cattleya
Patricia Vien De Vera Grade 10-SPM
Francis Cloyd T. De Guzman G10-SPM
Banaag, Ariane Danica B. G10 SPM