Thursday, January 14, 2021

How to run C Programs.

There is so many ways to compile and run any c program .
1) Use the online C Compiler to execute your program.
If you want to execute one and two programs just for testing then you can use online compilers. Which is available on internet, just you have to google for "Online C Compiler. You will get many links which provides C Compiler to run C Program. Here you will get a screen to write your code and on the same screen a button will be available to run yuor program.
2) Download TDM-GCC compiler and Notepad++ if you realy want to learn the C Programming then you must download C Compiler and install it in your system. Which will work offline(No need of internet). TDM-GCC compiler can be downloaded from below link-
As per your system configuration you have to select correct file to download and click on the given button. For 64 bit system you need to click on second button "tdm64-gcc-9.2.0.exe". After download completion install the compiler by clicking on downloaded file. This compiler provides you to compile and run any c program. Now you need an editon where you can write the c codes. Notepad++ has the extra feature and gives the comfortness to write the codes. You can download the notepad++ form internet. How to write the c codes and compile and run the c program. click on the below link to learn."Link will be updated soon"
3) Using the Turbo C++ compiler.Download the latest version of Turbo C++ installable file from google. And install it. Click on the below link to learn how to write the c code and run the program on Turbo C++. "Link will be updated soon."

Thursday, May 21, 2020

ICSE Class 10 Computer Science 2019 Exam Solution

Thursday, May 14, 2020

Data types in Java ?


Data Types in Java
  1. Primitive Data Type
  2. Non-Primitive Data Type

Primitive Data Type:–
  1. Integer type –
    • byte (Memory Capacity - 8 bit)
    • short (Memory Capacity -16 bit)
    • int (Memory Capacity  32 bit)
    • long (Memory Capacity - 64 bit)
  2. Floating point types
    • float – (Memory Capacity  32 bit)
    • double - (Memory Capacity - 64 bit)
  3. Character types
    • char (Memory Capacity -16 bit)
  4. Boolean
    • boolean – (can hold only two values- true or false)
Non-Primitive data types
  1. String
  2. Array
  3. Class etc



Wednesday, May 13, 2020

Sample data of University Database.

Click on the below link to open the excel sheet.

Click Here

Tuesday, May 05, 2020

Download and install MySQL in Windows

Follow the below steps one by one to download and install the MySQL in windows system

Step 1. Search in google to download mysql and click on the first link “MySQL Downloads – MySQL”.

Step 2. Click on “MySQL Community (GPL) Downloads”. It will navigate to the next below screen.

Step 3. Click on “MySQL Community Server”


Step 4. Click on “Go to Download Page >” next to Windows (x86, 32 & 64-bit), MySQL Installer MSI




Step 5. Click on first Download button of lesser size MSI Installer to download online. 









Step 6. For without login or sign up click on “No thanks, just start my download”.



Step 7. Double click on Downloaded MySQL installer file to install it online.


Step 8. Click on update Yes.


Step 9. Click on Next button to start installation with Developer Default selected.

Step 10. Click on Next Button.


Step 11. Click on Yes button.




Step12. Click on Execute button to download all installable. 


Sunday, May 03, 2020

How to run Java Programs

JDK (Java Development Kit) is the most important software which is required for compilation and run any java program. So JDK must be installed in your system to run any java program. Here we will learn how to download and install JDK in windows operating system. But before installing JDK make sure that JDK should not be installed in your system.

How to check whether JDK is installed or not in your system?

Go to control panel and click on uninstall a program, which will open all installed programs. Check that JDK is present or not in the list. If it is present in the list that means JDK is already installed in your system. So there is no need to install JDK in your system again.


Q. How to download and install the JDK in windows system.

Follow the below steps to download and install the JDK in your system.
Step1. 




First Simple Java Programm

1. The first simple java program is also known as "hello world" java program. The output of this program is to print "Hello world".
2. Below is the java program:
class MyClass
{
 public static void main(String args[])
 {
  System.out.println("Hello world");
 }
}
3. Brief description of this program. Here a class named MyClass is created, which contains a main() method.