Software OR IDE required for computer science engineering(B.TEch)
1.For c programming
Dev c++ in windows
In linux you can use geany Or codeblocks
2.Microsoft visual studio(for vb.net)
3.Modelsim PE student edition
4.java programming
for java programming you need to things one is JDK (java development kit) using this we can develop java programs and one is JRE(java runtime environment)which needs to run java program so we need both
1.Netbeans (sunmicrosystems acuqired by oracle so it is from craetor of java)
having both jdk and jre
http://www.oracle.com/technetwork/articles/javase/jdk-netbeans-jsp-142931.html
https://www.jetbrains.com/products.html#lang=java
https://www.eclipse.org/downloads/download.php?file=/oomph/epp/mars/R2/eclipse-inst-linux64.tar.gz
you can simply search JDK and JRE here https://java.com/ and download both and then install it.
steps to install java in linux through PPA
First, add Oracle's PPA, then update your package repository.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
Dev c++ in windows
In linux you can use geany Or codeblocks
2.Microsoft visual studio(for vb.net)
3.Modelsim PE student edition
4.java programming
for java programming you need to things one is JDK (java development kit) using this we can develop java programs and one is JRE(java runtime environment)which needs to run java program so we need both
1.Netbeans (sunmicrosystems acuqired by oracle so it is from craetor of java)
having both jdk and jre
http://www.oracle.com/technetwork/articles/javase/jdk-netbeans-jsp-142931.html
https://www.jetbrains.com/products.html#lang=java
https://www.eclipse.org/downloads/download.php?file=/oomph/epp/mars/R2/eclipse-inst-linux64.tar.gz
you can simply search JDK and JRE here https://java.com/ and download both and then install it.
steps to install java in linux through PPA
First, add Oracle's PPA, then update your package repository.
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
after installing paste this lines in text editor and save with hello.java
class MyClass { public static void main(String[] args) { System.out.println("Hello World"); } }
open terminal and then type
javac hello.java
press enter then type java hello
Comments
Post a Comment