Ingress and Egress
Dropper
CGI programming with C, basic level
Armstrong numbers
If the number is 371. How to find this number is an Armstrong number. First check the number of digit in this number. There are 3 digit, so take 3 as power.
Now, 33=27
73=343
13 = 1
27+343+1=371
1634 is Armstrong or not?
Number Palindrome or not
Simple Java program to Swap values
Apache Cordova Installation
Unlimited Reading. On any device.
Enjoy the freedom to explore over 1 million titles on any device at just Rs.99 a month, for a limited period. Click to see the catalog of unlimited books
in bash shellnode -v
in Windows Command linenode --version
sudo npm install -g cordova
npm install -g cordova
in terminal orcordova -v
in Command Line Now add target platform. Android SDK for Android app and Xcode for iOS app. For Xcode, there are two ways :cordova --version
- goto App Store:App store
- goto Apple Develper Downloads:AppleDownloader which requires registration as an Apple Developer.
Inputting values in Java
- Byte streams
- Character streams
Character streams provide a convenient way to handle input or output of characters. In Java, Character stream are defined using two classes: Reader and Writer. These classes handle
Bytecode and JVM
A little windowing
- Character-mode
- Graphic-mode
Persons to be remembered
- The Inventor of E-mail
- Father of Computing era/age
- Father of Computer
- World's first computer programer
- Inventor of WorldWideWeb
- Father of Internet
Database programming in VB for begginers
Step-1
Post Correspondance Problem(PCP)
To prove a program or normal thing(strings or languages) undecidable or decidable there are some technology. The technology is based on a very simple model of a computer called the Turing Machine. The Post Correspondence Problem is an undecidable problem that turns out to be a very helpful tool for proving problems in logic or in formal language theory to be undecidable.
What is undecidable?
The, specific, problem that cannot be solved using a computer are called undecidable. In computing there always exist some. That is a program and an input, whether the program will finish running or continue to run forever.
Suppose, we have step by step procedure(Algorithm) to solve a particular problem. We give the input(problem) and if that procedure can solve it, it gives the result true and if it not it give the result false. what if we give that procedure input(problem)which run forever that it take very long time(years) to get the result(TRUE or FALSE), then we can't make the decision out of it. This situation is undecidable.
Interrupts
Processor is the central unit of a computer. Computer consist number of devices, input/output devices. Every devices are controlled and monitored by CPU. This is done by checking the status of every devices attached. For instance, CPU checks the status of the keyboard, printer, monitor to see if it is ready or not. Ready means if the user is typing, keyboard is ready and CPU give attention to device and if the user wants to print some thing CPU checks the status of the printer. If it is ready then execute some routine to perform the printing task.But the typing
Visual Basic 6: Using Microsoft DataGrid Control 6.0
Combobox and click event in Visual Basic 6.0
Normally you do insert code into the combo-box control by double clicking on it . It will by default shows an event-procedure like Sub Combo1_Change(). This means that by default combo-box generate an change event. But this change event is not going to show the result in list box. To show the result of selected item into the list box just change the event _Change to _Click which usually do by selecting the combo on the top of the code window
'code goes here
end sub
to
Sub Comb1_Click()
'code goes here
End sub.
Example:
Click to Download the code
Creating Code modules in Visual Basic
- Form module
- Standard module
- Class module
Linker and Loader
Linker
Linker is a program whose task is linking various modules in a software. Usually programs are written in line by line. But, programs for large applications writing line by line is not a good idea. Developers divides the programs into various module. combining these modules gives the result. Developers write the code(source code) for each module. These code are compiled to get object files. So there are multiple source code and multiple object files. Here comes the benefit of linker. Linker combine all the object files which are compiled from source code and convert into final executable file/program.
Sometime in linking of object files may include library files. All these files, object files library files combines into a single executable file sometime it can be an object file or library file.
Loader
Loader is a program whose task is to load programs. Normally, loader is a part of Operating System (OS). The task involves locating the program in secondary storage (sometime called offline storage or auxiliary memory such as Hard-disk drives) to main memory for executing. The program can be an application or sometimes an OS itself.