.:: Welcome To My Personal Blog ::.

Saturday, February 25, 2012

Begin Android Programming with Netbeans (Part - 2 of 2)

The full process is tested on the computer with following configuration:

Processor: Core i3 2.53 GHz
RAM: 2.00 GB
OS: 32-bit Windows 7
IDE: Netbeans 6.9.1

Here is the step-by-step process to begin android programming with netbeans. Hope it will be helpfull for all. (Part 2)

Link to Part 1 of 2

Step 5: Writing First Program

Now it's time to create the first android program using netbeans.

Open Netbeans and goto File>>New Project. Select Android>>Android Project and then click next.
Provide a project name and a package name with three parts (example: part1.part2.part3). Give an activity name which will be shown in the application list of your android device. Select the target name you want and click finish.

Begin Android Programming with Netbeans (Part - 1 of 2)

The full process is tested on the computer with following configuration:

Processor: Core i3 2.53 GHz
RAM: 2.00 GB
OS: 32-bit Windows 7
IDE: Netbeans 6.9.1

Here is the step-by-step process to begin android programming with netbeans. Hope it will be helpfull for all. (Part 1)

Step 1: Download and Install Android SDK

Download the SDK you needed according to your operating system from this link: http://developer.android.com/sdk/index.html

Friday, September 16, 2011

Microsoft Corporation Unveils Re-imagined Windows Operating System Named as Windows 8

After a long anticipation tech giant Microsoft has taken the wraps off the next generation of its new Windows operating system Windows 8. The Windows 8 Developer Preview Edition is now available to download and use for testing purpose. Steven Sinofsky, the President of Windows department of Microsoft Corporation, formally introduced Windows 8 on the Build Developers' Conference in California. Refers to a focus on Microsoft Windows 8, Steven Sinofsky said, "We re-imagined Windows. From the chip-set to the user experience." The system will function through one of two interfaces; a traditional desktop, similar to that seen in previous editions of Windows, and a tablet version, known as Metro. Metro features larger, chunky controls of the sort that best suit touchscreen use. The current lack of such an input method is widely seen as the reason why few Windows 7 tablets exist. Microsoft said that it would also be launching its own online marketplace - the Windows Store - to sell downloadable applications.

Thursday, September 15, 2011

CSE Carnival 2011, SUST

The CSE Society and Department of Computer Science and Engineering of Shahjalal University of Science and Technology (SUST), Sylhet is organizing an annual festival titled CSE Carnival 2011 at SUST campus from September 22 to 24, 2011. This annual festival is being organized each year to promote creative ideas and expertise in the field of computer science and engineering and to encourage undergraduate students to sharpen, use and expose their technical excellencies in a competitive fashion.
This year a nation-wide competition titled ‘National Collegiate Software Competition’ (NCSC) is going to be organized for the first time ever in Bangladesh with the cooperation of Ministry of ICT, Bangladesh. 

Sunday, July 3, 2011

Programming with C Tutorial - Part 2

Variables and Arrays :



A variable is an identifier that is used to represent a single data item i.e. a numerical quantity or a character constant. The data item must be assigned to the variable and this will then be easily accessible from the program by referring the variable name. A simple example of declaring and using variables is given below :
int a, b, c;
char d;
float e, f; 
a = 1;
b = 2;
c = 3; 
d = 'a'; 
e = 4.01;
f = 5.02; 
c = a + b;

Popular Posts