Skip to content

Tag Archives: Programming Basics

Language evaluation criteria in programming languages are sets of standards and principles used to assess the quality and effectiveness of programming languages. These criteria are… Read More
In this article, we are going to see how to print “Hello World” in 30 different languages. It includes languages like C, C++, Cobol, Scala,… Read More
Structured Programming Structured Programming is a type of programming that generally converts large or complex programs into more manageable and small pieces of code. These… Read More
If-Else is a decision-making statement, where the result will be either true or false. If the statement accepts boolean values – if the value is… Read More
After writing C program when we compile and execute our program, there are various types of files are created. You can refer through Compiling a… Read More
Prerequisite: Searching and Sorting Algorithms  Searching Algorithms are designed to check for an element or retrieve an element from any data structure where it is… Read More
Run-time Constant: These are the constants whose respective values can only be known or computed at the time of running of source code. Run time… Read More
A Doubly Linked List (DLL) contains an extra pointer, typically called the previous pointer, together with the next pointer and data which are there in… Read More
A programming paradigm is a style, or “way, ” of programming. Programming paradigms differ from one another based on the features and the style they… Read More
Computer programming is a process of writing an executable computer program for accomplishing a specific computer task. Although writing the programs is an art, however,… Read More
This article focuses on discussing the differences between procedural and object-oriented programming. Procedural Programming Procedural Programming can be defined as a programming model which is… Read More
COMPUTER SCIENCE (PAPER 1: THEORY) (Maximum Marks: 70) (Time allowed: Three hours) (Candidates are allowed additional 15 mins for only reading the paper. They must… Read More
Any text-based data is stored by the computer in the form of bits(a series of 1s and 0s), and follows the specified Coding Scheme. The… Read More
Sample Question Paper – Set II Computer Science (083) Class- XII (2015-16) Time: 3hrs M.M: 70Instructions: i. All Questions are Compulsory. ii. Programming Language: Section A : C++ iii. Programming Language:… Read More
Following points explain what is “static” in the main() method:   main() method: The main() method, in Java, is the entry point for the JVM(Java Virtual… Read More