Monday 2 October 2017

New System(9-1) in International GCSE Edexcel

The new grading system explained in Edexcel International IGCSE. watch the following video


Sunday 25 September 2016

Lecture note on Programming for 8th graders

Dear Students,

Here I have attached the presentation related to the basic concept of programming.

Programming Concpt (Power Point)

Saturday 17 September 2016

Lecture note on system analysis and design

Dear Students,

You can get the lecture file on system analysis and design from the following links

Black & White
Colour

Wednesday 20 November 2013

Sample Report Card for 7th Graders

Dear Students,
Here is the link for the report card you are going to prepare. This report card done only for 6 subjects and you have to add at least 4 more subjects to it.
to get it click here

Best of luck :-)

Tuesday 12 March 2013

Solution of Activity 2 of 2011 IGCSE Exam

Hello.
As we are trying to solve the problem related with the Spread sheet.
surely some of you have already did without any mistakes. Even I am sending you the full solution with the question paper. 
see the solutions and correct your one.
Click Here to Download RAR File
Click Here to Download ZIP File
:-)

Tuesday 11 December 2012

Using SUMIF function in excel

The SUMIF Function takes 3 parameters
 
1. range: from where you are going to set your criteria
2. criteria: which elements you want to add/ what you want to add
3. sum_range: the numbers need for calculation  

 
A
B
1
Sheuli
212
2
Sheuli
22
3
Shefali
5
4
Chameli
56
5
 
 
  In the above worksheet we have two columns. In one column names are given and another column the amonts belongs to them are given.
If we want to know the amounts belong to Sheuli, we can use a  SUMIFfunction


Sunday 9 December 2012

New ITHS blog launched

Hello All. A new blog for International Turkish Hope School Senior Section (Boys') has launched. The previous blog for GCSE and A level (iths9to12.blogspot) also merged with this blog.

the link here



Using VLOOKUP function with IF function

Last time we were discussing about complex or nested if function by which we calculated the grades of students. now we can useVLOOKUP function in place of nested if with the grades.
Just use like this
=IF(logical_test,"TRUE",VLOOKUP(lookupvalue,table_array,column_index_no,range_lookup))
by this you can reduce complexity of the previous function we used last time
this time we can use a table like (M1:N7) here with the reference of the grades.
and the function will be like the following

=IF(OR(AND(B2<50,COUNT(B2)=1),AND(C2<50,COUNT(C2)=1),AND(D2<50,COUNT(D2)=1)),"F",VLOOKUP(E2,M1:N7,2,TRUE))