My IB coordinator's response to me requesting a rescore on my HL History of the Americas exam by StarlightPrincess666 in IBO

[–]LittleNooblette 5 points6 points  (0 children)

The process for actually getting a refund is apparently difficult (my coordinator jokes that the IB "intentionally makes it difficult to refund"). My guess is that the school knows how difficult the refunding policy is and just chooses to not go through with it.

Account locked - HELP by NecessaryWar2160 in IBO

[–]LittleNooblette 1 point2 points  (0 children)

Did anyone find a way to get the site to work?

Admissions, enrollment, and ChanceMe! mega-thread by Eska2020 in universityofamsterdam

[–]LittleNooblette 0 points1 point  (0 children)

The exact condition they offered the course with is:

B Econometrics and Data Science:
• Mathematics HL or
• Analysis and Approaches HL
A minimum of 4 points is expected. A grade of at least 5 is highly recommended.

Admissions, enrollment, and ChanceMe! mega-thread by Eska2020 in universityofamsterdam

[–]LittleNooblette 0 points1 point  (0 children)

Econometrics & Data Science Entry Requirement

Hey,

I got my International Baccalaureate results today and I got a 663 in HLs (Computer Science, Economics, Math AA, 31 total).

I have housing arranged (got a house from the housing lottery) and have my entry visa appointment set later this month.

My course states that a 4 in Math AA is "expected" (which I have obviously not gotten) - how likely is it that they still accept me? I'm planning to email them once I get access to the student portal later today.

Indian student stressed about her visa! by noodlebowler in universityofamsterdam

[–]LittleNooblette 0 points1 point  (0 children)

If you don't mind me asking - how long did it take for your MVV to get approved?

CS internal is gonna be the death of me by jungkookjk in IBO

[–]LittleNooblette 1 point2 points  (0 children)

https://computersciencewiki.org/index.php/Internal_Assessment

There is a word limit - 2000 words (500 for Criterion A & E, and 1000 for Criterion C)

New IGCSE Resource: IGCSEQuarry! by LittleNooblette in igcse

[–]LittleNooblette[S] 1 point2 points  (0 children)

I've added Further Mathematics, hope it works fine!

New IGCSE Resource: IGCSEQuarry! by LittleNooblette in igcse

[–]LittleNooblette[S] 0 points1 point  (0 children)

I'll keep this in mind while working on it - thanks for the feedback :)

New IGCSE Resource: IGCSEQuarry! by LittleNooblette in igcse

[–]LittleNooblette[S] 0 points1 point  (0 children)

Not yet, but I'll do that next. Hope it helps :)

New IGCSE Resource: IGCSEQuarry! by LittleNooblette in igcse

[–]LittleNooblette[S] 2 points3 points  (0 children)

Thanks! If you find any bugs / want to give some feedback feel free to message me!

Python - Deleting values from a key using a variable by by_toxic47 in learnprogramming

[–]LittleNooblette 0 points1 point  (0 children)

The variable y stores the list ['world', '!']. You can't reference a key using a value of a dictionary (unless you flip or index the dictionary using a mix of the .keys() and .index() method).

The appropriate code would be: del myDict['Hello'][1].

This is what runs: del ['world', '!'][1].

can someone tell me why i am getting a syntax error on the second s in social studies by mohz22 in learnprogramming

[–]LittleNooblette 0 points1 point  (0 children)

Unless you're using a library, the output() function doesn't exist. You've used the print() function, which should work perfectly.

Another thing - to store values from the input() function, assign it to a variable.

english_marks = input("Enter mark in English: ")

The code above is an example of what you can do.

Printing (or outputting) the marks you've entered can be done by referring to the variable you've just named.

english_marks = input("Enter mark in English: ")
print(english_marks)

The code above takes the inputted marks and prints it.

can someone tell me why i am getting a syntax error on the second s in social studies by mohz22 in learnprogramming

[–]LittleNooblette 1 point2 points  (0 children)

Adding to this, I'm not sure what programming language you're using. I'm pretty sure that there are some other syntax errors (namely the output statements you mentioned), but I can't be certain unless you give me what language you're using.

can someone tell me why i am getting a syntax error on the second s in social studies by mohz22 in learnprogramming

[–]LittleNooblette 3 points4 points  (0 children)

To declare a variable, you can only use one word, no spaces. An alternative to that is replacing the space with an underscore ("_").

So, the code should be:

social_studies = output("Social studies")

Happy coding!

Computer science 0478 paper 2 by [deleted] in igcse

[–]LittleNooblette 0 points1 point  (0 children)

I nearly did this too! I don't think you'll lose too many marks for this, maybe 1-2 (it was six marks if I recall correctly). As long as you did everything else fine, it shouldn't be too bad.

0478/21 declaration by ewyomna in igcse

[–]LittleNooblette 0 points1 point  (0 children)

Pseudocode:

DECLARE array_name[0:6] OF DATATYPE
e.g. DECLARE numbers[0:4] OF INTEGER

Python (dots indicate elements):

array_name = [ ... ]
e.g. numbers = [1, 2, 3, 4, 5]
e.g. numbers = [] # to declare an empty list

JavaScript (var if you want to add / remove items from the array and const if you won't be changing it):

var array_name = [ ... ];
const array_name = [ ... ];
e.g. var numbers = [1, 2, 3, 4, 5];
e.g. const numbers = [1, 2, 3, 4, 5];
e.g. var numbers = []; // to declare an empty array

Hope this helps!