- Get link
- X
- Other Apps
Sequence
- Execution of statements strictly in the linear order they appear in the source code.
- Each instruction runs consecutively without skipping or repeating unless explicitly directed.
Selection (Decision Making)
- Branching logic that allows a program to choose different execution paths based on specific conditions evaluating to true or false.
- Common constructs include
if,if-else,nested if, andswitch-casestatements.
Iteration (Looping)
- Repetition of a block of code multiple times until a terminating condition is met or a collection has been fully traversed.
- Core types include pre-test loops (
while,for), post-test loops (do-while), and collection-based loops (for-each).
"As time goes by you realize, predecessors already early thinking what cause you at know become miserable."
Actionable Insight: Use these fragment facts to navigate your current challenges, eliminate the "kejanggalan di hati" (unease in your heart), and pave the way for a more pleasant journey of life.
COMPUTER CODE
CREATE PSEUDOCODE COMPUTER-PROGRAMMING ALGORITHM OF:
CONDITIONS WHERE DOING THING IS TO BE FALSE SELECTION AND FALSE STUBBORNNESS
CONDITIONS WHERE DOING THING IS TO BE FALSE SELECTION AND FALSE STUBBORNNESS
FUNCTION EvaluateActionValidity(CurrentGoal, EnvironmentState, HistoricalAttempts)
// Default assumption: proceeding with action
BOOLEAN should_do_thing = TRUE
// 1. Evaluate False Selection (Choosing an action based on flawed premises)
BOOLEAN premises_are_valid = ValidatePremises(CurrentGoal, EnvironmentState)
IF premises_are_valid == FALSE THEN
// The selection of this task is fundamentally incorrect
should_do_thing = FALSE
LOG("Action halted: False Selection detected (Invalid Premise)")
RETURN should_do_thing
END IF
// 2. Evaluate False Stubbornness (Persisting in action despite persistent negative feedback)
INT consecutive_failures = CountFailures(HistoricalAttempts, CurrentGoal)
BOOLEAN environment_resisting = CheckResistance(EnvironmentState)
IF consecutive_failures >= THRESHOLD_LIMIT AND environment_resisting THEN
// Persistence is no longer adaptive; it is unyielding error (stubbornness)
should_do_thing = FALSE
LOG("Action halted: False Stubbornness detected (Unjustified Persistence)")
RETURN should_do_thing
END IF
// If neither false selection nor false stubbornness trips the flag
RETURN should_do_thing
END FUNCTION

Comments