Why Null passed in first argument for the messageDialog in java ?

0
Null passed in first argument: JOptionPane showMessageDialog method signatures: showMessageDialog(Component parentComponent, Object message)   or showMessageDialog(Component parentComponent, Object message, String title, int messageType) or showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon) first parameter is...

How to use long long data type in C?

0
In order of size, starting with the smallest, the integer types are char, short,int, long and long long. The smaller types have the advantage of taking up less memory,...

How has open source changed the way students learn new technology

0
Open-Source Software (OSS):                                                   is computer...

Latest tech trends (Internet of Things -IoT , mobile app development , cloud/distributed computing)

0
  The Internet of Things? The Internet of things, also known as the Internet of objects, refers to the networked interconnection of everyday objects. The Internet of Things, or IoT, is emerging...
Basic Linux Exploits : Moving towards exploit

Basic Linux Exploits: Moving towards exploits

0
Note: Hacking is not a joke so please keep patience and learn it step by step. If you have read all our previous posts , you are ready to exploits the...
Basic Linux exploits: Function Calling Procedure

Basic Linux exploits: Function Calling Procedure

0
Note: Hacking is not a joke so please keep patience and learn it step by step. Note: Before reading this post you must read : Learn hacking...
Bacic Exploits : Stack Operations

Basic Exploits : Stack Operations

0
Note: Hacking is not a joke so please keep patience and learn it step by step. Stack Operations First and the most important topic to learn the basics of Exploits is...
facebook verification page has bug

Facebook verification page has bug found by team Buffercode

5
Note: I already send report for this bug , I  hope Team Facebook will change their algorithm for this page.  New Bug has found by team Buffercode in Facebook It's always...
best compiler for c / c++

Basic Linux Exploits:Make your Pc more secure

0
Basic Linux Exploits:Make your Pc more secure and learn the basics of computer world Why study Exploits? Before learning exploits ,one should know about vulnerability.What does it means in the world...
Generating equations with radicals

Generating equations with radicals

This is a guest post by Francisco Javier García Capitán on Generating equation with radicals  RationalToString converts a number into a string. The number can be an integer or a fraction....
best compiler for c / c++

Best C / C++ Compiler : Compilation using gcc

0
Searching for best C compiler for compilation?? You must have to stop searching here. gcc/g++: Gross compiler for C /C++ is the best compiler for execution or compilation of c/c++...
Top 5 android apps a programmer must have

Top 5 Android Apps a Programmer must have

2
It's time to do something exciting for Android users, here we are presenting Top 5 Android Apps a Programmer must have . If you are a programmer or Love...
arrays of structure :buffercode

EXPLORING C STRUCTURES PROGRAMMING:Arrays of Structures

0
In our previous post you learn Intro to Structures in c programming that is why use structures in C,Syntax of structures in C ,Declaration of structures ,Declaration of structures...

Structures In C

0
Why we use Structures In C ? When we deal with real world data ,we don't usually deal with only int,char,float.. Instead of this we deal with real world entities...
2-D array of character

More In Arrays:2-D Array of Character,Array of Pointers to String,mallaoc and their Uses

0
2-D Array Of Characters These are similar to the 2-D array of integers For EX:- In arr ,2 are the number of rows and 3 defines the size of each...
strings and their use in c

Strings:Strings and their use in C programming

0
Strings are the set of character stored in a character array likewise we store group of integers in int array. Strings are one of the most important and wide...
c data types

Getting Started:C Data Types and Constants

0
At primary stage C data types are divided into 3 categories : integer ,character and real. Let us explore these data types. // Integer : It's simple to understand that...

How to use Array in C++

0
How to use Array in C++ Arrays are the collection of fixed size , same type of elements in a sequential order. These elements are basically variables of same data...

Interview Questions For Computer Science Freshers

1
Interview Questions: Type1 :-Testing concepts question of  descriptive type 1)Give 5 reasons why a build can be released with bug 2)Write a bug report for a word processor program which crashes when...
c program Machine code

How to use Debugger tool objdump in Linux

0
Debugger Tool Objdump in Linux Debugger Tool objdump: C feel more familiar and C compiler exist in every operating system .Basically Linux is a free operating system that every has...

Arrays In C/C++ And Their use

0
Arrays are the collection of fixed size , same type of elements in a sequential order. These elements are basically variables of same data type . They can be...

Function-2

0
Now lets continue from where we left off our topic "function ". In this post we are going to discuss about types of functions . TYPES OF FUNCTIONS  Now there are...
buffercode_python

Python: Matplotlib Plotting Cookbook

1
Who this book is for?? There may be question in your mind that  who this book is for?? so below is it's answer for you: If you are an engineer or...

Function In C/C++ Programming

0
Functions as the name suggest "to do some task " . Similarly  in c/c++ ,functions are group of some codes that together performs a certain task. Every C/C++ program...
Exception Handling

Exception Handling in Python

0
Exception Handling in Python Exception Basics Exception  : Nothing but an event that are modify the flow of event or a flow of control in a program . In python or...

Statements-4(SELECTION STATEMENT:SWITCH STATEMENT)

0
Lets continue with the statements ....... SELECTION STATEMENT:SWITCH STATEMENT These are similar to multiple if -else statement but its more easy to understand and it doesnot create any confusion for the...