Training COMSATS University Vehari Campus

Receiving Certificate from Syed Majid Ali Shah (Deputy Director Information) on 14-01-2015 by Punjab Emergency Service (Rescue 1122)

PM’s Laptop Scheme for Talented Students

Receiving Laptop from Dr. Khair-uz-Zaman (Director COMSATS University Vehari Campus) on 18-02-2015 under Prime Minister’s Laptop Scheme

Convocation SP16 COMSATS University Vehari

Receiving BS (Computer Science) Degree on 07-10-2016 at COMSATS Vehari Campus from Dr. S. M. Junaid Zaidi rector COMSATS University

ESE's Training by QAED GHSS Karampur

Receiving Certificate of Induction Training of ESE's by QAED on 29-08-2017 from Mahmood Arshad Principal GHSS Karampur

SSE (CS) Induction Training by QAED

Receiving Certificate of QAED on 29-08-2017 by Ch. Muhammad Maroof D.E.O (M-EE) Vehari and Afzal Bhatti Principal Govt. Model HSS Vehari

Training on e-Library and e-Learn Punjab

Visited e-Library Vehari on 05-11-2018 for Training of e-Learn using Multimedia Classroom in SED and e-Library

Saturday, February 26, 2022

PRACTICAL’S FOR COMPUTER SCIENCE GRADE IX (9th) PUNJAB CURRICULUM AND TEXTBOOK BOARD, LAHORE

 

9th exercises (Suggested Practical’s)

1.         Draw a flowchart that calculates the sum and product of two numbers.

 

2.         Draw a flowchart that calculates the difference and division of two numbers.

 

3.         Draw a flowchart that calculates the modulus of an integer with respect to another integer.

 

4.         Draw a flowchart that calculates the sum and average of three numbers.

 

5.         Draw a flowchart that calculates the cube of a number.

 

6.         Draw a flowchart that calculates the area of a rectangle

 

7.         Draw a flowchart that calculates the area of a triangle when three sides are given.

 

8.         Draw a flowchart that calculates the area and circumference of a circle.

 

9.         Draw a flowchart that calculates the area and perimeter of a square when one side is given

 

10.     Draw a flowchart that calculates the volume of a cylinder

 

11.     Draw a flowchart that calculates the surface area and volume of a cube.

 

12.     Draw a flowchart that converts the temperature from centigrade to Fahrenheit

 

13.     Draw a flowchart that converts the temperature from Fahrenheit to centigrade

 

14.     Write a program to print the distance covered by a car having an average speed.

 

15.     Draw a flowchart that takes a number as input and displays whether it is even or odd.

 

16.     Draw a flowchart that takes three numbers as input and displays the largest among them.

17.     Draw a flowchart that takes a number as input and prints an error message if the number is not 1 or 2.

18.     Draw a flowchart that takes three integers as input and displays the largest two.

 

19.     Draw a flowchart that prints the grade of a student.

 

20.     Draw a flowchart that prints first 10 integers using loop.

 

21.     Draw a flowchart that prints even numbers from 1 to 10

 

22.     Draw a flowchart that prints odd numbers from 1 to 10

 

23.     Draw a flowchart that takes a number as an input and prints its multiplication table up to 10.

 

24.     Draw a flowchart that takes a number as an input from the user and prints its factorial

25.     Draw a flowchart that takes two numbers as input and prints the multiplication table of the first number up to the second number.

26.     Draw a flowchart that prints integers from 10 to 1 (reverse order, using loop).

27.     Draw a flowchart that takes input “n” from the user and prints the sum of first “n” numbers and their average.

28.     Draw a flowchart that takes a number “n” as input from the user and prints the first “n” numbers of Fibonacci series.

29.     Draw a flowchart that takes a number “n” as input from the user and prints triangle of stars, having rows equal to “n”.

30.     Draw a flowchart that takes few numbers as input from the user and prints them in reverse order.

31.     Draw a flowchart that takes few numbers as input from the user and prints the minimum and maximum among them.

 

32.     Draw a flowchart that takes 10 numbers as input from the user and print all the odd ones.

 

33.     Draw a flowchart that takes a number as input and prints its binary representation.

 

34.     Draw a flowchart that takes input from the user and converts it into its ASCII.

 

35.     Draw a flowchart that takes two numbers “m” and “n” as input from the user and calculates

“m” to the power of “n”.

36.     Draw a flowchart that takes two numbers as input calculates the GCD of the numbers using Euclidean algorithm.

37.     Draw a flowchart that takes a 5 digit integer as input and reverses its presentation. For example, “54321” will become “12345”.

 

38.     Draw a system of flowcharts that take inputs from the user and perform the basic arithmetic operations on them using a modular approach. (A simple calculator).

39.     Draw a flowchart that can take maximum 20 characters from the user and returns whether the input is a palindrome or not.

40.     Draw a flowchart that takes an integer as input from the user and prints whether the integer is prime  or not.

41.       Creating an HTML page which has following tags

-  html

-  body

42.    Create an HTML page which has following additional tags

-  title

-  paragraph

-  line break

43.    Create an HTML page which has following additional functions

-  Headings up to three levels

-  Bold, italic, underline

44.  Create an HTML page which has following additional functions

-  font size

-  font face

-  font color

45-  Create an HTML page which has following additional functions

-  having and image


-  alternate text

-  adjust the height, width and border of the image

46-  Create an HTML page which has following additional functions

-  Background/foreground colors

-  background image

47-  Create an HTML page which has following additional functions

-  un-ordered list

-  ordered list

48-  Create an HTML page which has following additional functions

-  nested list

-  definition list

49-  Create an HTML page which has multiple sections and a table of contents. The table of contents has anchors to different sections.

50-  Create a website with two web pages linked to each other. The links are in text.

51-  Create a website with three interlinked web pages. At least one of the links must be an image. 52- Create an HTML page which has a table with some specified number of rows and columns.

53-  Create an HTML page which has a table with some specified number of rows and columns, but some of the cells are merged together using colspan and rowspan.

54-  Create an HTML page which has a table, and the border of the table is of a specified width and border type.

55-  Create a website which has multiple pages and all the components mentioned above.


PRACTICAL’S FOR COMPUTER SCIENCE GRADE X (10th) PUNJAB CURRICULUM AND TEXTBOOK BOARD, LAHORE

 

10th (Suggested Practical’s)
1.      Get familiar with Visual Studio Community Edition C/C++, and using proper file extension of your code file.

2.      Write a program which uses all types of variables and print their output.

 

3.      Write a program to print formatted output using escape sequences.

 

4.      Write a program to print the sum and product of two integers and floats.

 

5.      Write a program to print the difference and division of two floats.

 

6.      Write a program to print the use modulus operator on integers.

 

7.      Write a program to print the sum and average of three floats.

 

8.      Write a program to print the cube of a number (float)

 

9.      Write a program to print the area of a rectangle

 

10.  Write a program to print the area of a triangle when three sides are given.

 

11.  Write a program to print the area and circumference of a circle.

 

12.  Write a program to print the area and perimeter of a square when one side is given

 

13.  Write a program to print the volume of a cylinder

 

14.  Write a program to print the surface area and volume of a cube.



15.  Write a program to convert the temperature from centigrade to Fahrenheit

 

16.  Write a program to convert the temperature from Fahrenheit to centigrade

 

17.  Write a program to print the distance covered by a car having an average speed.

 

18.  Write a program which asks the name; roll number, class, section and marks in different subjects of a student of class 10. The program should calculate and display total obtained marks and percentage of the student.

 

19.  Write a program that takes a number as input and displays whether it is even or odd.

 

20.  Write a program that takes three numbers as input and displays the largest among them.

 

21.  Write a program that takes a number as input and prints an error message if the number is not 1 or 2.

 

22.  Write a program that takes three integers as input and displays the largest two.

 

23.  Write a program that prints the grade of a student.

 

24.  Write a program that prints first 10 integers using for loop.

 

25.  Write a program that prints even numbers from 1 to 10

 

26.  Write a program that prints odd numbers from 1 to 10

 

27.  Write a program that takes a number as an input and prints its multiplication table up to 10.

 

28.  Write a program that takes a number as an input from the user and prints its factorial

 

29.  Write a program that takes two numbers as input and prints the multiplication table of the first number up to the second number.

 

30.  Write a program that prints integers from 10 to 1 (reverse order, using loop).

 

31.  Write a program that takes input “n” from the user and prints the sum of first “n” numbers and their average.

 

32.  Write a program that takes a number “n” as input from the user and prints the first “n”

numbers of Fibonacci series.

 

33.  Write a program that takes a number “n” as input from the user and prints triangle of stars, having rows equal to “n”.

34.  Write a program that creates an array and initializes it with first 10 integers and displays them on screen, using loop.

 

35.  Write a program that takes few numbers as input from the user and prints them in reverse order.

 

36.  Write a program that takes few numbers as input from the user and prints the minimum and maximum among them.

 

37.  Write a program that takes 10 numbers as input from the user and print all the odd ones.


38.  Write a program that takes a number as input and prints its binary representation.

 

39.  Write a program that takes input from the user. The program passes the input it to a function which converts it into its ASCII and returns it back to the main function. The main function prints the ASCII of the number.

 

40.  Write a program that can take maximum 20 characters from the user. The program saves these characters in an array and prints them on the screen as the user is typing. (use getch() and printf() with loop and array)

 

41.  Write a program that can take maximum 20 characters from the user as his password. The program does not print them on the screen when the user is typing. The program then encrypts the password using Caesar cipher and prints it on the screen. (Pressing enter will terminate the input)

 

42.  Write a program takes two numbers as input from the user and then passes them to a function named sum. The function returns the sum of the numbers and the main function prints the output.

 

43.  Write a program that takes two numbers “m” and “n” as input from the user, then passes them to a function. The function calculates “m” to the power of “n” and returns the value to the main function. The main function prints the value on screen.

 

44.  Write a program that takes few numbers as input from the user, and then stores them in an array and passes that array to a function. The function sorts that array. The main function prints the sorted array in ascending order.

 

45.  Write a program that takes two numbers as input and passes them to a function. The function calculates the GCD of the numbers using Euclidean algorithm, and returns to the main function. The main function prints the GCD.

 

46.  Write a program that takes a 5 digit integer using scanf() as input from the user and reverses its presentation. For example, “54321” will become “12345”.

47.  Write a program that takes inputs from the user and performs the basic arithmetic operations on them using a modular approach. (A simple calculator).

 

48.  Write a program that takes hourly rate and the number of hours of 10 different employees, from the user. The program then calculates the salary of each employee and prints them on screen (use modular approach).

 

49.  Write a program that can take maximum 20 characters from the user and returns whether the input is a palindrome or not.

 

50.  Write a program that takes an integer as input from the user and prints whether the integer  is prime or not.

Wednesday, October 20, 2021

Balaghal Ula Be Kamalehi Naat at Meelad Mailsi 12 Rabi Ul Awal 2020 @Muh...

Wednesday, August 04, 2021

Islamabad Journey

Friday, July 16, 2021

New song Kia bat ha chana Kia bat ha

Cat and Kitten Playing and Fighting