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:

  1. Word and Structure Knowledge (30 Questions)
  2. Reading (5 Questions)
  3. Spoken and Written Expression (5 Questions)
  4. Achievers Section(5 Questions)
 Word and Structure Knowledge, Reading and Spoken and Written Expression  questions carry 1 mark each, whereas each question in Achievers section carries 3 marks.


Science Olympic Foundation International English Olympiad Class X 2019-20


To access the complete question paper, click the DOWNLOAD button given below.


DOWNLOAD 


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:

  1. Logical Reasoning (10 Questions)
  2. Science (35 Questions)
  3. Achievers Section(5 Questions)
Logical reasoning and Science section questions carry 1 mark each, whereas each question in Achievers section carries 3 marks.


Science Olympic Foundation National Science Olympiad Class X 2019-20




Click the DOWLOAD button given below to access the full question paper.


DOWNLOAD


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.


DOWNLOAD 


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




To access question paper please click the DOWNLOAD button given below.

DOWNLOAD



Wish you BEST OF LUCK!😅





Tuesday, 1 September 2020

Navodaya Vidyalaya Class VI Entrance Exam Question Paper-2020


Dear Students😊,

                     Navodaya Vidyalaya Samiti conducts Class VI entrance examination every year to select students for class VI. This following Question paper has three sections.

1. Section-I has 40 Mental Ability Questions.

2. Section-II  has 20 Arithmetic Test Questions.

3. Section-II has 25 Language Ability Test Questions.

There are total 80 Questions.


Navodaya Vidyalaya Class VI Entrance Exam Question Paper





To access the complete  Class VI entrance exam Question Paper of year 2020 click the Download Button given below:











Wish you BEST of LUCK!!😤




Sunday, 30 August 2020

To calculate perimeter/circumference and area of shapes such as triangle, rectangle, square and circle in python

Question 3:To calculate perimeter/circumference and area of shapes such as  triangle, rectangle, square and circle.

#We will make use of user defined python functions for this task.
#we will import math library to use sqrt(), this will used to #calculate square root.

import math
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 (%).

Question 2: 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


Dear Students, I am making sincere efforts to provide you the programs that you have to run as a class XI IP student in your labs.


Question 1: To find average and grade for given marks.

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


AISSCE: 2019-20
Jawahar Navodaya Vidyalaya
Practical Examination
Subject: Informatics Practices New (065)                   Time: 03:00 hrs.
Date: 15-02-2020.                                                           MM: 30.
-----------------------------------------------------------------------------------------------
Note:-All Questions are compulsory.
Q1:- Write a program in python to test if a number is equal to the sum of the cubes of its digits. Find the smallest and largest numbers in the range of 100 to 1000.                                                                                                           (10) 

Q2:- Write a program that reads the n to display the nth term of Fibonacci series. The beginning of the    sequence looks like :     0,1,1,2,3,5,8,13,21,34…….
       The program prompts for an element and prints out the value of that element of the Fibonacci sequence.
       Thus: for input 7, produces 13 and for input 9, produces 34.                  (10)

Q3:- Write MySql query to create the table Store. Also write queries for (i)–(iv) and output for (v) and (vi).                                                                                  (10)







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!!!