informative

Microsoft’s Project Silica: A Data Storage Revolution?

Microsoft’s Project Silica is an innovative program that attempts to change the way we save data. This ground-breaking technology is intended to address humanity’s increasing demand for long-term, sustainable data storage. The Requirement for a New Storage Solution We continue to create vast volumes of valuable data as a species, such as personal histories, medical…

SQL

Introduction to SQL

Structure Query Language(SQL) is a programming language used for storing and managing data in RDBMS. SQL was the first commercial language introduced for E.F Codd’s Relational model. Almost all RDBMS(MySql, Oracle, Infomix, Sybase, MS Access) uses SQL as the standard database language. SQL is used to perform all type of data operations in RDBMS. SQL…

C Library Functions

Use the gotoxy() function – conio.h – Old School C

Conio.h in C and C++ is one of the libraries that have a set of functions allowing for interacting with the console and, therefore, expanding the opportunities of console applications. Among these functions, gotoxy is essential for cursor control, allowing precise placement of text on the console screen. This article will explain the gotoxy function’s…

C Library Functions

How and when to Use the cprintf() Function

Conio.h in C and C++ is one of the libraries that have a set of functions allowing for interacting with the console and, therefore, expanding the opportunities of console applications. The function that I want to discuss, cprintf, is closely connected with the question above because it can be used with arguments that are strings….

C Library Functions

Change text color in C using conio.h – Old School C

In C programming, when we are dealing with console applications, the conio.h provides several functions to enhance user interaction by manipulating the console screen. One of the most important functions is textcolor(), that allows us to change the text foreground color of text displayed in the console. Overview of conio.h conio.h stands for console input/output….

C Basic Programs

CONCEPT OF ASCII CODES

ASCII stands for American Standard Code for Information Interchange. As we know, Computers can only understand numbers; an ASCII code is the numerical representation of a character or a symbol such as ‘a’ or ‘#’. For example, ASCII code of ‘A’ is 65, ‘B’ is 66, and so on.

Java Programming

Methods of Thread class

Method Description   run () The run() method is a method which contain behavior & entire body of a thread. It is the soul of a thread.       start () It is a method with the help of which run() method is invoked by an object of the related(concerned) thread.Method run()cannot be directly…