Thursday, 10 December 2020
Wednesday, 9 December 2020
Saturday, 10 October 2020
Friday, 9 October 2020
Thursday, 8 October 2020
Tuesday, 6 October 2020
Monday, 7 September 2020
Science Olympic Foundation International English Olympiad Class X 2019-20
Dear Students,
Science Olympic Foundation conducted English Olympiad in year 2019-20 for Class X students.
You will find its question paper in this post.
There are total 50 Questions in this paper and duration of test is 1 hour.
All questions are compulsory. There is no negative marking.
This question paper comprises four sections:
- Word and Structure Knowledge (30 Questions)
- Reading (5 Questions)
- Spoken and Written Expression (5 Questions)
- Achievers Section(5 Questions)
Science Olympic Foundation International English Olympiad Class X 2019-20 |
To access the complete question paper, click the DOWNLOAD button given below.
BEST OF LUCK!!
Science Olympic Foundation National Science Olympiad Class X 2019-20
Dear Students,
Science Olympic Foundation conducted National Science Olympiad in year 2019-20 for Class X students.
You will find its question paper in this post.
There are total 50 Questions in this paper and duration of test is 1 hour.
All questions are compulsory. There is no negative marking. Use of calculator is not permitted.
This question paper comprises three sections:
- Logical Reasoning (10 Questions)
- Science (35 Questions)
- Achievers Section(5 Questions)
Science Olympic Foundation National Science Olympiad Class X 2019-20 |
Click the DOWLOAD button given below to access the full question paper.
BEST OF LUCK!!
Saturday, 5 September 2020
KVS 2018 PGT Computer Science Paper
Dear all,
In this post you will find PGT Computer Science 2018 Question Paper of Kendriya Vidyalaya Sangathan. The test is of 2 hours 30 minutes and consists of 150 questions. There is no negative marking. The test has two parts, Part I and Part II consisting of 150 multiple choice objective questions, each carrying 01 mark.
Part-I:
(1) General English (Q. No. 1 to 10)
(2) General Hindi (Q. No. 11 to 20)
Part-II:
(1) G.K and Current Affairs (Q. No. 21 to 30)
(2) Reasoning Ability (Q. No. 31 to 40)
(3) Computer Literacy (Q. No. 41 to 50)
(4) Pedagogy (Q. No. 51 to 70)
(5) Computer Science (Q. No. 71 to 150)
Please click the DOWNLOAD button given below to access the complete question paper.
Best of Luck!
CBSE 2020 Informatics Practices(NEW) Question PAPER
Dear Students😅,
CBSE class XII examination of Informatics Practices(New) was cancelled due to COVID-19. This gives me immense pleasure to share with you all the Class XII question paper of IP(NEW) which was set and delivered to examination centers but unfortunately exam was not conducted. I hope you will find it useful while preparing for your board exams.
CBSE 2020 Informatics Practices(New) Question PAPER |
Wish you BEST OF LUCK!😅
Tuesday, 1 September 2020
Navodaya Vidyalaya Class VI Entrance Exam Question Paper-2020
Dear Students😊,
Sunday, 30 August 2020
To calculate perimeter/circumference and area of shapes such as triangle, rectangle, square and circle in python
def area_square(a):
area1=float(a*a);
print("Area of square is:",area1)
def area_circle(r):
area2=float(3.14*r*r);
print("Area of circle is:",area2)
def area_rectangle(a,b):
area3=float(a*b);
print("Area of rectangle is:",area3)
def area_triangle(x,y):
area4=float((x*y)/2);
print("Area of triangle is:",area4)
def peri_square(a):
peri1=float(4*a);
print("Perimeter of square is:",peri1)
def peri_circle(r):
peri2=float(2*3.14*r);
print("Perimter of circle is:",peri2)
def peri_triangle(a,b):
hypotenuse=float(math.sqrt(a*a+b*b))
peri3=float(a+b+hypotenuse)
print("Perimter of right angled triangle is:",peri3)
def peri_rectangle(a,b):
peri4=float(2*(a+b))
print("Perimter of rectangle is:",peri4)
side=float(input("enter the side of square:"))
area_square(side)
print()
peri_square(side)
radius=float(input("enter the radius of circle:"))
area_circle(radius)
peri_circle(radius)
length=float(input("enter the length of rectangle:"))
breadth=float(input("enter the breadth of rectangle:"))
area_rectangle(length,breadth)
peri_rectangle(length,breadth)
base=float(input("enter the base of right angled triangle:"))
height=float(input("enter the height of right angled triangle:"))
area_triangle(base,height)
peri_triangle(base,height)
Source Code:
Python program to calculate perimeter/circumference and area of shapes such as triangle, rectangle, square and circle. |
Python program to calculate perimeter/circumference and area of shapes such as triangle, rectangle, square and circle. |
Output:
Output |
Saturday, 29 August 2020
To find sale price of an item with given cost and discount (%).
Solution:
#To find sale price of an item with given cost and discount (%).
cost_price=float(input("Enter the price of item:"))
discount=float(input("Enter the discount %:"))
selling_price=float(((100-discount)/cost_price)*100)
print("The selling price of item is:",selling_price)
Source Code:
Source code:To find selling price of an item with given cost and discount (%). |
Output:
Output of Source Code. |
Class XI IP Python LAB Programs
Solution:
#To find average and grade for given marks.
eng=float(input("Enter English Marks:"))
cs=float(input("Enter Computer Science Marks:"))
phy=float(input("Enter Physics Marks:"))
chem=float(input("Enter Chemistry Marks:"))
maths=float(input("Enter Mathematics Marks:"))
average=float((eng+cs+phy+chem+maths)/5)
print("Average of Marks is",average)
if average>90:
print("You scored GRADE A")
elif average<=90 and average >80:
print("You scored GRADE B")
elif average<=70 and average <80:
print("You scored GRADE C")
elif average<=60 and average <70:
print("You scored GRADE D")
elif average<=50 and average <60:
print("You scored GRADE E")
Source Code:
Source code for how to find average and grades of given marks |
Output:
Tuesday, 3 March 2020
Informatics Practices Revision Test paper CLASS XI 2020
Dear Students,
Jawahar Navodaya Vidyalaya's Informatics Practices(using Python) Class XI revision test Paper is available in this post. Hope you will find it useful while preparing for your final Term end exams.
Best of Luck!!
Sunday, 16 February 2020
Informatics Practices CLASS XI Practical Examination Paper 2020
Tuesday, 4 February 2020
JNV CLASS SIX ENTRANCE QUESTION PAPER OF YEAR 2020
Dear Students,
Jawahar Navodaya Vidyalaya Conducts Entrance Examination across India to select Students for Class VI. In this blog I have uploaded the question paper of year 2020 for class VI.
Hope you will find it useful. Best of Luck!!!