Your are here: Home → Archives for 2008
Oil prices surge a new high
At Kolkata::
The West Bengal government revised the sales tax rates to provide fuel at the following comparatively lower rates.
petrol up by Rs.5 to Rs.52.20
diesel up by Rs.3 to Rs.35.81
lpg up by Rs.50 to Rs.350/cylinder
Nationwide ::
inflation up 0.5%
Other related effects ::
custom rate surges to 2.5 from 7.5 %.
in WB a 12 hour strike scheduled.
In this crucial period...
Tags: Oil
A Java IDE I Have Decided To Use
JAVA
JCREATOR
Screenshot ::
Advantages ::
In built templates for on the fly development.
A wizard support to quick project development, helps for large projects.
Fast code edting with fast support for project management.
Aplications can be run as applets.
Auto indent, code completion and word completion.
Can be run from a USB drive.
JCreator :: Homepage
Download JCreator :: Download...
The C++ IDE I Use
C++
BLOODSHED DEV c++
Screenshot ::
Advantages ::
Is developed under the GNU general public license, prviding hassle free usage.
Works with the gcc compiler providing a standardized development environment to programmers.
Fast code edting with fast support for project management.
Advanced support for templates and package management.
Easy debugging
DEV C++ homepage :: www.bloodshed.net/devcpp.html
Download...
Tags: C, Programming
Why C Should Be Regarded Low Level
My friends find it pretty hard to believe that C is a low level language. Now even I cannot say with full confidence that C is a low level language but it definitely is not high level. Here are quite a few points in support of the inclination of C to being a low level language rather than a high level language.
1.Firstly C can implement asm applications and codes. No other high level language can...
Tags: C, Programming
Another java IDE I Use
GEL
2. GEL
Screenshot ::
Advantages ::
Is a standard replacement to writig and executing java codes on a CLI.
Individual fnctions from a class can be tested.
Fast code edting with fast support for project management.
The editor, execution, project manager, file explorer all are seperate windows providing a helpful segregation.
code support for many other languages else than java.
GEL homepage ::...
A Java IDE I Use
BlueJ
The BlueJ environment was developed as part of a university research project about teaching object-orientation to beginners of the java programming language. Also it gives a good feeling as the IDE is totally made in Java.
All research and developments on the platform are maintained by a joint research group at Deakin University, Melbourne, Australia, and the University of Kent in Canterbury,...
The Factorial Code in Python
And then there is the very famous Python. Amazingly the factorial program in this case becomes even simpler. It is just a normal factorial code seemingly working fine for abnormally large integers as well!
fact=1
x=input("Enter the no :")
for x in range(1,x+1):
fact*=x
print "Factorial :"
print fact
Read More →
Tags: Programming, Python
The 25 Factorial in Java
In Java, the factorial of large numbers can be easily implemented in SE6 using the bigInteger class. The logic is the same as for finding factorials. The code goes as follows ::
import java.math.BigInteger;
import java.lang.*;
import java.util.Scanner;
class largenumber
{
public static void main(String args[])
{
Scanner in=new Scanner(System.in);
System.out.println("Enter a number for factorial");
int...
Tags: Java, Programming
The 25 Factorial
A lot of time we have tried to work with large numbers in c and end up getting a round off or a zero. This is just on of the many ways to work with large numbers without any external library support. We have implemented our code and storage with the help of the derived data type : array.
The logic is pretty simple. We implement a mathematical multiplication the way we would have multiplied on paper...
Tags: Programming
Differences Between C and C++
Although C++ is an improved version of C, there are a lot of differences in behavior and functionality between C and C++.
C does not have any concept of classes or objects. It is procedure and function oriented. There is no concept of access through objects and a structure is the only data type where there is a access through a compacted variable. C++ is object oriented.
C structures have a different...
Tags: C, Programming

