Convert a String to Uppercase in C

Samual Sam
Updated on 04-Oct-2023 14:05:42

36K+ Views

Here is the program to convert a string to uppercase in C language,Example#include #include int main() {    char s[100];    int i;    printf("Enter a string : ");    gets(s);    for (i = 0; s[i]!='\0'; i++) {       if(s[i] >= 'a' && s[i] = 'a' && s[i]

Building Chatbots in Python

Pranay Arora
Updated on 04-Oct-2023 14:02:39

595 Views

A chatbot is a computer program designed to simulate conversations with human users via text or voice. It uses AI and NLP techniques to help understand and interpret user’s messages and provide relevant responses. In this article, we will see how to create a chatbot with the help of Python. Chatbots like chatGPT have become popular since the end of 2022 and have a wide-scale use case for people of different fields. Chatbots are also integrated with mobile apps like Swiggy and Zomato to provide faster resolution to customer complaints. Chatbots are of multiple types which are as follows: ... Read More

Clustering Methods with Scipy

Pranay Arora
Updated on 04-Oct-2023 13:46:13

269 Views

Clustering is a technique in machine learning and data science that involves grouping together similar data points or objects into clusters or subsets. The goal of clustering is to find patterns and structures in data that may not be immediately apparent, and to group related data points together which can be used for further analysis. In this article, we are going to see how to implement clustering with the help of the SciPy library. SciPy provides us with various scientific computing tools to perform tasks like numerical integration, optimization, linear algebra, signal processing etc. It's used by researchers, scientists, engineers, ... Read More

List All Tables in a Schema in Oracle Database

Bharti Kumari
Updated on 04-Oct-2023 13:11:29

51K+ Views

Introduction In Oracle databases, a schema is a logical grouping of related objects, such as tables, views, and stored procedures. Each schema belongs to a specific database user and has a set of associated privileges. To list all tables in a schema in an Oracle database, you can use one of the views in the data dictionary. The `ALL_TABLES` view contains one row for each table in the current schema, while the `DBA_TABLES` view contains one row for each table in the entire database. To list the tables in a schema, you can use a SELECT statement to query the ... Read More

Top 10 Replit Alternatives for Online Coding

Shirjeel Yunus
Updated on 04-Oct-2023 13:00:47

894 Views

What is Replit? Replit is an online platform and you can use it to create a lot of projects. You need to do an easy setup to create projects. It is a platform where programs can be created and executed in 50 programming languages. The platform also consists of many programming courses which you can avail to enhance your knowledge. You need to create an account to use the features of Replit. The account can be created by using Google, GitHub, and Facebook or there is also an option of creating your own username and password. Price Plans of Replit ... Read More

Time Sharing Operating System

Arnab Chakraborty
Updated on 04-Oct-2023 13:00:06

28K+ Views

An operating system (OS) is basically a collection of software that manages computer hardware resources and provides common services for computer programs. Operating system is a crucial component of the system software in a computer system.Time-Sharing Operating Systems is one of the important type of operating system.Time-sharing enables many people, located at various terminals, to use a particular computer system at the same time. Multitasking or Time-Sharing Systems is a logical extension of multiprogramming. Processor’s time is shared among multiple users simultaneously is termed as time-sharing.The main difference between Time-Sharing Systems and Multiprogrammed Batch Systems is that in case of ... Read More

Best MATLAB Alternatives

Shirjeel Yunus
Updated on 04-Oct-2023 12:57:27

717 Views

What is MATLAB? MATLAB is a programming language where you can write programs for math, computation, etc. The platform comes with its own integrated development environment and a huge collection of libraries. The language can be used with different types of paradigms as it is a language of the fourth generation. There are many inbuilt functions which can be used for calculations which include linear algebra, quadrate, signal processing, and many more. Why MATLAB Alternatives? MATLAB execution time is slow as it is an interpreted language MATLAB is a costly software in comparison to other platforms like C, C++, ... Read More

Subtract Days from a Date in JavaScript

Abhishek
Updated on 04-Oct-2023 12:55:19

37K+ Views

In this tutorial, we will learn how to subtract days from a date in JavaScript. To subtract days from a JavaScript Date object, use the setDate() method. Under that, get the current days and subtract days. JavaScript date setDate() method sets the day of the month for a specified date according to local time. Following are the methods we can use to subtract days from a date in JavaScript − Using the setTime() and getTime() methods Using the setDate() and getDate() methods ... Read More

Top 10 JSFiddle Alternatives

Shirjeel Yunus
Updated on 04-Oct-2023 12:54:21

394 Views

What is JSFiddle? JSFiddle is a web development environment where you can run codes written in HTML, CSS, and JavaScript. These codes are known as fiddles. You can use JavaScript libraries to write code and make a useful application. JSFiddle also helps to add codes to a blog. There’s no need to register for a free account The main window is divided into three parts. In the first part, you can write HTML, second part CSS, and third part JavaScript. The syntax is color-coded so it is easy to detect errors. Why JSFiddle Alternatives? You have to click the ... Read More

Modelling Steady Flow Energy Equation in Python

Dr Pankaj Dumka
Updated on 04-Oct-2023 12:44:00

263 Views

Steady Flow Energy Equation (SFEE) is the application of conservation of energy on to an open system. Figure shown below is a schematic of open system in which fluid enters at 𝑖 and exits at 𝑒. The red broken line represents the control surface (CS) of the control volume (CV). The inlet and exit parameters are mentioned in the table shown below − Parameter Inlet Exit Pressure pi pe Velocity Vi Ve Density Pi Pe Specific volume vi ve Enthalpy hi he Area Ai Ae ... Read More

Advertisements