Found 205 Articles for Computer Programming

Top 10 Tools for Team Communication

Sharon Christine
Updated on 22-Apr-2022 11:52:05

209 Views

In every walk of life, communication has become indispensable. Needless to say, team communications has become an integral part of each and every enterprise. E-mails are still being used by many enterprises for the sake of team communication. It is quite common these days for both employees and employers to see their respective email accounts flooded with newsletters, spam messages, unnecessary attachments etc. Despite the fact that top email service providers such as Google and Yahoo provide excellent filtering options, having a dedicated tool or software for seamless team communication will undoubtedly enhance the productivity of both employees and employers.In ... Read More

Difference between supervised and unsupervised learning.

Manisha Shejwal
Updated on 01-Aug-2022 08:15:28

1K+ Views

Businesses around the world today are smart and do everything to get and retain their customers. They can identify malicious credit/debit card transactions, they can identify a person uniquely with face or eye detection as a password to unlock a device, offer what their customer are looking for in the least possible time, separate spams from regular emails, and predict within how much time one can reach their intended destination depending upon length of road, weather conditions, and traffic, etc.These challenging tasks are possible only when the algorithms carrying out such predictions are smart, and the learning approaches are the ... Read More

Difference between Static and Shared libraries

Mahesh Parahar
Updated on 24-Feb-2020 11:03:30

3K+ Views

In programming context library is something which has some sort of that code which is pre compiled and could get reused in any program for some specific functionality or feature.Now on the basis of execution and storage of this code library is classified in two types i.e Static library and Shared library.Following are the important differences between Static library and Shared library.Sr. No.KeyStatic libraryShared library1DefinitionStatic library is the library in which all the code to execute the file is in one executable file and this file get copied into a target application by a compiler, linker, or binder, producing an ... Read More

Difference between Cold Booting and Warm Booting

Kiran Kumar Panigrahi
Updated on 28-Jul-2022 10:14:57

9K+ Views

When a user presses the power button on their computer, it initiates the process known as "booting, " which loads and starts the operating system. Booting can also be thought of as a series of actions where the ROM of the computer is accessed in order to load the startup instructions. After that, the operating system is loaded from the disc that is now being used to boot the computer.A primary option for the boot disc is frequently the local hard drive. The process of booting the computer is finished when the operating system is loaded; at this point, the ... Read More

What is the difference between a kernel and an operating system?

Arnab Chakraborty
Updated on 11-Oct-2019 12:21:25

561 Views

Operating SystemAn operating system (OS) is a collection of software that manages computer hardware resources and acts as an interface between user and hardware of the computer. It provides common services for computer programs. The OS is a crucial component of the system software in a computer system.KernelKernel is the core part of operating system and responsible for all major activities of this operating system. Kernel consists of various modules and it interacts directly with the low level hardware. It also provides the required abstraction to hide low level hardware details to system or application programs. An operating system is ... Read More

What is a Computer language?

Arnab Chakraborty
Updated on 04-Oct-2019 11:09:46

12K+ Views

To communicate with the computers, we need some languages. These are computer languages.There are mainly three different languages with the help of which we can develop computer programs. And they are –Machine Level languageAssembly Level Language andHigh Level LanguageMachine Level LanguageComputer can understand only the language of Digital Electronics. Digital Electronics deals with presence and absence of voltages. Within the computer there are two logics can play their role. These logics are –Positive Logic – Here presence of voltage will be denoted by 1 and absence of voltage will be denoted by 0Negative Logic – Here presence of voltage will be ... Read More

High-level language program

Arjun Thakur
Updated on 27-Jun-2020 11:01:32

2K+ Views

High level language is the next development in the evolution of computer languages. Examples of some high-level languages are given belowPROLOG (for “PROgramming LOGic”)FORTRAN (for ‘FORrmula TRANslation’)LISP (for “LISt Processing”)Pascal (named after the French scientist Blaise Pascal).High-level languages are like English-like language, with less words also known as keywords and fewer ambiguities. Each high level language will have its own syntax and keywords. The meaning of the word syntax is grammar.Now let us discuss about the disadvantages of high-level languagesA high level language program can’t get executed directly. It requires some translator to get it translated to machine language. There ... Read More

Assembly language program

George John
Updated on 27-Jun-2020 11:02:25

7K+ Views

After machine level language, the next level of development in the evolution of computer languages was the Assembly Language. Machine level language uses only the binary language. But on the other hand, assembly language uses mnemonics or symbolic instructions in place of a sequence of 0s and 1s. As example, we can consider that, to add register A and B in a particular computer, assembly language uses the mnemonic ‘ADD B’ in place of 10001111. In assembly language, we use symbolic names to denote addresses and data. A number of such examples are dealt with in the successive chapters. Thus ... Read More

Machine language program

Chandu yadav
Updated on 27-Jun-2020 11:03:58

3K+ Views

Computer can understand only the language of Digital Electronics. Digital Electronics deals with presence and absence of voltages. Within the computer there are two logics can play their role. These logics are −Positive Logic − Here presence of voltage will be denoted by 1 and absence of voltage will be denoted by 0Negative Logic −Here presence of voltage will be denoted by 0 and absence of voltage will be denoted by 1But obviously computer can follow anyone of the logics at a time, not both the logics simultaneously. To make the computer understand, a program can be written using only ... Read More

Can I learn Java without any coding background?

Prasanna Kotamraju
Updated on 27-Apr-2022 13:33:28

2K+ Views

After you’ve learned the basics of computer science, you’ll be ready to learn a programming language. Java is a high-level object-oriented programming language which is platform independent and can be run on any mobile, web or desktop applications.Theoretically, it is true that with hard work, effort and right direction one can become an expert in Java programming. But practically it would help if you know one or two core programming languages to understand the jargon easily. Learning the basics of computer science will not be enough. If you have prior knowledge of C language and the concepts, learning Java becomes easier.Java ... Read More

Advertisements