Amit Computer Centre,pal Road Jodhpur

Amit Computer Centre,pal Road Jodhpur Available computer couses like c ,cpp,java,html,my sql etc...
Also available coaching for IX-XII(

31/05/2017
26/05/2017
24/04/2017
19/03/2017
Happy  holi
12/03/2017

Happy holi

01/03/2017

Qbasic program
1)Write a program to enter your name and print it .

CLS
Input 'Enter you name';n$
Print 'The name is';n$
End

2)Write a program to enter your name, city, country, age and print them.

CLS
Input " Enter the name ";N$
Input " Enter the city";C$
Input " Enter the country";CO$
Input " Enter the age";A
Print " The name is ";N$
Print " The city is ";C$
Print " The country is ";CO$
Print " The age is ";A
End

3)Write a program to find the area of rectangle.

Cls
Input " enter the length " ;l
Input " enter the breadth " ;b
let A = l*b
Print" the area of rectangle=" ;a
End

4)Write a program to find the area of the triangle.

Cls
Input " enter the base" ;b
Input " enter the height" ;h
let T = 1/2*b*h
Print" The area of triangle=" ;T
End

5)Write a program to find the area of the circle.

Cls
Input" Enter the radius " ;R
Let C=22/7*R^2
Print " The area of circle =" ;C
End

6)Write a program to find the circumference of the circle.

Cls
Input" Enter the radius " ;R
Let Circumference=22/7*R*2
Print " The area of circle =" ;Circumference
End

7)Write a program to find the area of the square.

Cls
Input" Enter the number" ;n
Let square= n^2
Print" The area of square=" ;Square
End

8)Write a program to find the area of the square and cube.

Cls
Input" Enter the number" ;n
Let square= n^2
Let Cube = n^3
Print" The area of square=" ;Square
Print" The area of cube=" ; Cube
End

9)Write a program to find the volume of the box.

Cls
Input " enter the length " ;l
Input " enter the breadth " ;b
Input " enter the height " ;h
Let Volume= l*b*h
Print" The volume of box =" ;Volume
End

10)Write a program to convert the weight from kilogram to pounds.

CLS
Input"Enter the weight in kilogram";K
Let P=K*2.2
Print "The pound is ";P
End

11)Write a program to convert the distance from kilometer to miles.

Cls
Input"Enter the length in kilometer";K
Let M= K / 1.6

Print "The length in miles =";M
End

12)Write a program to convert the distance from miles to kilomiles.

Cls
Input " Enter the length in miles";M
Let K=M*1.6
Print" The length in kilo miles=";K
End

13)Write a program to enter the initial mileage(m1) and final mileage (m2) then calculate the distance traveled.

CLS
Input "Enter the Initial Mileage";M1
Input "Enter the Final Mileage";M2
Let D= M2-M1
Print " The distance covered=";D
End

14)Write a program to find out the simple Interest.

Cls
Input " Enter the Principal";P
Input " Enter the Rate";R
Input " Enter the Time";T
Let I = P*T*R/100
Print " The simple Interest = ";I
End

15)Write a program to find out the simple Interest and the Amount.

Cls
Input " Enter the Principal";P
Input " Enter the Rate";R
Input " Enter the Time";T
Let I = P*T*R/100
Let A= P + I
Print " The simple Interest = ";I
Print " The amount=";A
End

16)Write any number and find it's half.
Cls
Input "Enter the desired number "; N
Let H = N/2
Print "The half of the number = ";H
END

17)Write a program to find the area of four walls of a room.

Cls
Input"Enter the height ";H
Input"Enter the length "; L
Input"Enter the Breadth";B
Let A= 2 * H * (L+B)
Print " The area of four walls =";A
End

18)Write a program to find the perimeter of a rectangle.

Cls
Input " enter the length " ;l
Input " enter the breadth " ;b
Let P=2*(l+b)
Print" The perimeter of rectangle=" ;P
End

19)Write a program to enter any three numbers,sum and the average.

Cls
Input " Enter any number" ;A
Input " Enter any number" ;B
Input " Enter any number" ;C
Let Sum = A+B+C
Let Average =Sum/3
Print" The sum=" ;Sum
Print" The Average is " ;Average
End

20)Write a program to enter any two numbers their Sum,Product and the Difference.

CLS
Input " Enter any number" ;A
Input " Enter any number" ;B
Let Sum = A+B
Let Difference= A-B
Let Product = A*B
Print" the sum =" ;Sum
Print" the Difference =" ;Difference
Print" the Product =" ; Product
End

21)Write a program to find the average of three different numbers.

Cls
Input" Enter the number " ;A
Input" Enter the number " ;B
Input" Enter the number " ;C
Let Avg= (A+B+C)/3
Print" The average=" ;Avg
End

22)Write a program to input student's name,marks obtained in four different subjects,find the total and average marks.

Cls
Input" Enter the name " ;N$
Input" Enter the marks in English" ;E
Input" Enter the marks in Maths" ;M
Input" Enter the marks in Science" ;S
Input" Enter the marks in Nepali" ;N
Let S=E+M+S+N
Let A=S/4
Print " The name of the student is" ;N$
Print " The total marks is" ;S
Print " The Average marks" ;A
End

23)Write a program to find 10%,20% and 30% of the input number.

Cls
Input" Enter any number" ;N
Let T=10/100*N
Let Twe=20/100*N
Let Thi=30/100*N
Print " 10%of input number=" ;T
Print " 20%of input number=" ;Twe
Print " 30%of input number=" ;Thi
End

24)Write a program to convert the distance to kilometer to miles.

Cls
Input" Enter the kilometer" ;K
Let M=K/1.6
Print " The miles = " ;M
End

25)Write a program to find the perimeter of square.

Cls
Input “Enter the length”; L
Let P =4 * L
Print “ The perimeter of square=”;P
End

26)Write a program to enter the Nepalese currency and covert it to Indian Currency.

CLS
Input “Enter the Nepalese currency” ;N
Let I = N * 1.6
Print “the Indian currency=”;I
End

27)Write a program to enter the Indian currency and covert it to Nepalese Currency.

CLS
Input “Enter the Indian currency” ;N
Let N = I / 1.6
Print “the Nepalese currency=”;I
End

28)Write a program to enter any number and find out whether it is negative or positive.

CLS
Input “Enter the number”; N
If N>0 Then
Print “ The number is positive”
Else
Print “The number is negative”
EndIf
End

29)Write a program to enter any number and find out whether it is even or odd using select case statement.

Cls
Input “Enter any number” ;N
R=N mod 2
Select case R
Case = 0
Print “The number is Even number”
Case Else
Print “The number is odd number”
End Select
End

30)Write a program to check the numbers between 1 & 3.

Cls
Input “Enter the numbers between 1-3”;N
Select case N
Case 1
Print “It’s number 1”;
Case 2
Print “It’s a number 2”;
Case 3
Print “It’s a number 3”
Case else
Print “It’s out of range”;
End select
End

31)Write a program to enter any alphabet and test alphabet is ‘a’ or not using the select case statement.

Cls
Input “Enter the alphabet”;A$
A$=UCase$ (A$)
Select Case A$
Case ‘A’
Print “It’s alphabet A”
Case Else
Print “It’s not alphabet A”
End Select
End

32)Write a program to enter any alphabet and find out whether the number is vowel or alphabet.

Cls
Input “Enter Letters/Alphabet”;A$
A$ = UCase $ (A$)
Select case A$
Case “A”, “E”, “I”, “O”, “U”
Print “Its’ a vowel”
Case Else
Print “ It’s not a vowel”
End Select
End

33)Generate the following numbers using For….Next…..Loop.
1,2,3,4,…,50

CLS
For I = 1 to 50 Step 1
Print I
Next I
End

34)Generate the following numbers using For….Next…..Loop.
1,3,5,7,9,....99

Cls
For I = 1 to 99 Step 2
Print I
Next I
End

35)Generate the following numbers using For….Next…..Loop.
2,4,6,8,10,…50

Cls
For I = 2 to 50 Step 2
Print I
Next I
End

36)Generate the following numbers using For….Next…..Loop.
1,3,5,7,…99

ClsFor I = 1 to 99 Step 2

Print I
Next I
End

37)Generate the following numbers using For….Next…..Loop.
5,10,15,…90

Cls
For I = 5 to 90 Step 5
Print I
Next I
End

38) Generate the following numbers using For….Next…..Loop.
10,20,30,40,…100.

Cls
For I = 10 to 100 Step 10
Print I
Next I
End

39)Write a program to print numbers stated below USING WHILE…WEND STATEMENT.

Cls
I = 1
While I

27/02/2017

The Hindu vocab
1. TAINT (VERB): disgrace Synonyms: shame, dishonour Antonyms: respect, honour Example Sentence: The celebrities were tainted by the media.
2. TANTALIZE (VERB): torture Synonyms: frustrate, tease Antonyms: please, encourage Example Sentence: When Ram had joined the college he was tantalized there.
3. TRADUCE (VERB): defame Synonyms: denigrate, malign Antonyms: glorify, honor Example Sentence: We shouldn’t traduce anyone by saying something wrong.
4. GERMANE (ADJECTIVE): relevant Synonyms: pertinent, apposite Antonyms: irrelevant, inappropriate Example Sentence: Germane advertisements are not published in the local newspaper.
5. GLIB (ADJECTIVE): smooth-spoken Synonyms: artful, eloquent Antonyms: inarticulate, stuttering Example Sentence: The salesman was a very glib man.
6. GLUT (ADJECTIVE): surplus Synonyms: excess, oversupply Antonyms: dearth, lack Example Sentence: There's a glut of agricultural products in Western Europe 7. GRATIFY (ADJECTIVE): please Synonyms: content, delight Antonyms: discontent, dissatisfy Example Sentence: She was gratified by his response.
8. HACKNEYED (ADJECTIVE): overused Synonyms: common, banal Antonyms: fresh, new Example Sentence: That's the old hackneyed phrase, but it's true.
9. HAPHAZARD (ADJECTIVE): without plan Synonyms: aimless, casual Antonyms: planned, systematic Example Sentence: A haphazard arrangement makes him angry.
10. HAUGHTY (ADJECTIVE): arrogant Synonyms: proud, pompous Antonyms: humble, modest Example Sentence: He spoke in a haughty tone.
1. PERENNIAL (ADJECTIVE): permanent Synonyms: ceaseless, perpetual Antonyms: temporary, ephemeral Example Sentence: Tea-plants are perennial, and are set about four feet apart on hillsides.
2. PEEVISH (ADJECTIVE): irritable Synonyms: fractious, petulant Antonyms: affable, easygoing Example Sentence: No doubt Sohail is a peevish person so he shouldn’t be talked to.
3. PAUCITY (NOUN): sparseness Synonyms: dearth, shortage Antonyms: abundance, plentiful Example Sentence: The paucity of evidence made the case unsolved.
4. PAROCHIAL (ADJECTIVE): narrow-minded Synonyms: petty, limited Antonyms: cosmopolitan, liberal Example Sentence: A parochial approach is not enough to get success in life.
5. PARITY (NOUN): equality Synonyms: uniformity, sameness Antonyms: inequality, oddness Example Sentence: Women have yet to achieve parity with men in many fields.
6. PALTRY (ADJECTIVE): meagre Synonyms: insignificant, worthless Antonyms: considerable, substantial Example Sentence: He was fined the paltry sum of $50.
7. PALATABLE (ADJECTIVE): eatable Synonyms: tasty, appetizing Antonyms: unpalatable, insipid Example Sentence: It is a healthy and palatable vegetable, easily digested when cooked.
8. PERTINACIOUS (ADJECTIVE): unyielding Synonyms: stubborn, obdurate Antonyms: irresolute, flexible Example Sentence: If you have a pertinacious behaviour, you may face several problems.
9. GRUFF (ADJECTIVE): harsh Synonyms: rough, throaty Antonyms: smooth, mellifluous Example Sentence: He picked up the phone expecting to hear the chairman's gruff voice.
10. GRUBBY (ADJECTIVE): dirty Synonyms: grimy, unwashed Antonyms: clean, spotless

1. ELEGANT (ADJECTIVE): beautiful Synonyms: dignified, fancy Antonyms: dull, ugly Example Sentence: You look elegant today.
2. ENUNCIATE (VERB): declare Synonyms: propound, express Antonyms: conceal, suppress Example Sentence: He was always ready to enunciate his views to anyone who would listen.
3. PERSISTENT (ADJECTIVE): constant Synonyms: continual, endless Antonyms: intermittent, occasional Example Sentence: A persistent effort is required to get success.
4. ENNUI (NOUN): apathy Synonyms: boredom, fatigue Antonyms: activeness, speed Example Sentence: He suffered from ennui whenever he was alone.
5. ENMESH (VERB): intricate Synonyms: entangle, involve Antonyms: free, liberate Example Sentence: He tried to enmesh Naimesh but he was fortunate enough to be saved.
6. EVASIVE (ADJECTIVE): deceptive Synonyms: unclear, ambiguous Antonyms: clear, definite Example Sentence: He was evasive about the circumstances of his first meeting.
7. EVINCE (VERB): manifest Synonyms: show, display Antonyms: conceal, hide Example Sentence: We shouldn’t evince our weakness to anyone.
8. ESCULENT (ADJECTIVE): edible Synonyms: palatable, eatable Antonyms: uneatable, indigestible Example Sentence: Esculent plants are those which are suitable for food.
9. EXONERATE (VERB): absolve Synonyms: exculpate, forgive Antonyms: condemn, punish Example Sentence: The official report exonerated the school of any blame.
10. PERFIDY (NOUN): infidelity Synonyms: faithlessness, dishonesty Antonyms: honesty, straightforwardness

Address

3 Pal Road, Suncity Colony, Milkman Colony
Jodhpur
342003

Telephone

+918107345377

Website

Alerts

Be the first to know and let us send you an email when Amit Computer Centre,pal Road Jodhpur posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share