Programming_IT
552 subscribers
27 photos
2 videos
3 files
77 links
Behind every mouse click and touch-screen tap, there is a computer program that makes things happen. Follow and like my page if you are tech addict. I am here to teach you all kind of latest technologies and programming languages.
Download Telegram
What is the difference between structured oriented objective programming and object oriented programming?
Both are two different paradigms or approaches of coding.
Going in detail, structured programming - as the name suggests, it's structured hierarchy. Program is made up of sub programs or a sequential flow of methods. Methods comprise selective data. On the other hand, OOPS is based on a real time discretion of a problem(or requirement). It splits the entire requirement into objects which hold the data and methods together. It allows inheritance of desired features and multithreading! One more advantage of OOPs over Structured programming is that if we have a huge program with various sub programs, any little change to its code would affect in multiple places. But, using OOPs, it would be much simpler!
~~~~~Data mining~~~~~
Data mining is the computing process of discovering patterns in large data sets involving methods at the intersection of machine learning, statistics, and database systems. It is an interdisciplinary subfield of computer science
HTML
Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.
SQL vs PL/SQL

SQL, that is abbreviated from Structured Query Languages, is a data oriented language for selecting and operating sets of data. SQL is commonly used by relational database technologies such as Oracle, Microsoft Access, Sybase etc. The term, PL/SQL is a procedural extension of SQL. It is the Oracle native programming language that provides an edge to design database-centric application. Both SQL and PL/SQL languages are designed with a common purpose, to access data within Oracle databases, but PL/SQL is designed to address the limitation of SQL because it cannot be used to manipulate procedural programming with conditional, iterative and sequential statements. To work with PL/SQL, the users normally interact with an application that uses SQL to access a relational database on the back-end.

SQL is widely popular as data oriented language for selecting and executing the sets of data. It is differentiated from the PL/SQL in relation to its capability to create applications that may be the source of data for your screens, web pages and reports while PL/SQL, known as a procedural language, might be used to create format and display those screens, web page and reports that are designed with the help of SQL. It also acts as an application language like Java or PHP can.

The commands and instructions used in SQL aren’t actually a part of the SQL standard but are supported by the tools of SQL and are usually executed to assist format output like BREAK, BTITLE, COLUMN, PRINT or they are meant to create or store data/scripts. It also supports the commands that directly interact with the database to perform the SHUTDOWN, CONNECT or COPY actions. PL/SQL is also known as fourth-generation programming language because of its ability to support the data encapsulation, overloading, collection types, exceptions, and information hiding functions. PL/SQL also offers rapid prototyping and use variables and their declarations, conditional controls like IF and CASE used in other programming languages like C, C++, Java, etc. It also uses looping structures such as LOOP, FOR LOOP and WHILE LOOP.

Another advantage of using PL/SQL is its fast execution speed because it passes a block of statements to be executed to the server, whereas in SQL, only one statement is transferred to the server at a time which is a time consuming process.
@query_group
Join this group to ask queries
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Watch "JAVA SERVLET | Part 3" on YouTube
https://youtu.be/cJf0KQgi2Z0

Watch "JAVA SERVLET | Part 4" on YouTube
https://youtu.be/qb3l6Kdo_Ag
@software_programming
Learn programming languages. How to use softwares. Virtualization and many more.

👆guys share our channel with ur frndz n groups n tel to join thnx
~~Introduction to cloud computing~~

Cloud computing is a general term for the delivery of hosted services over the internet.

Cloud computing enables companies to consume a compute resource, such as a virtual machine (VM), storage or an application, as a utility -- just like electricity -- rather than having to build and maintain computing infrastructures in house.
Which language is used to create operating system?

Both iOS and OSX (the "Apple OS"), are written in a combination of C andObjective-C, C is used for the mach kernel and other lower levels. Objective-C is used for the higher levels. Android is built on top of Linux, and a large portion of it is written in C. There are swaths of code written in C++ though.
~~~~~C#~~~~~


C# is a simple, modern, general-purpose, object-oriented programming language developed by Microsoft within its .NET initiative led by Anders Hejlsberg.C# programming is very much based on C and C++ programming languages, so if you have a basic understanding of C or C++ programming, then it will be fun to learn C#.C# is designed to work with Microsoft's .Net platform. Microsoft's aim is to facilitate the exchange of information and services over the Web, and to enable developers to build highly portable applications. C# simplifies programming through its use of Extensible Markup Language (XML) and Simple Object Access Protocol (SOAP) which allow access to a programming object or method without requiring the programmer to write additional code for each step. Because programmers can build on existing code, rather than repeatedly duplicating it, C# is expected to make it faster and less expensive to get new products and services to market.

eg:

using System; namespace HelloWorldApplication { class HelloWorld { static void Main(string[] args) { /* my first program in C# */ Console.WriteLine("Hello World"); Console.ReadKey(); } } }
Watch "JAVA SERVLET | Part 3" on YouTube
https://youtu.be/cJf0KQgi2Z0
++++++SOAP++++++
SOAP stands for Simple Object Access Protocol. It is a XML-based protocol for accessing web services.

SOAP is XML based protocol. It is platform independent and language independent. By using SOAP, you will be able to interact with other programming language applications.

Advantages of Soap Web Services

WS Security: SOAP defines its own security known as WS Security.

Language and Platform independent: SOAP web services can be written in any programming language and executed in any platform.
////////data types//////////
There are five basic data types associated with variables:

int - integer: a whole number.float - floating point value: ie a number with a fractional part.double - a double-precision floating point value.char - a single character.void - valueless special purpose type which we will examine closely in later sections.