Posts

Top 10 Best Artificial Intelligence Software in 2023

Image
Top 10 Best Artificial Intelligence Software in 2023 Introduction to AI Tools Before we talk about the various  types of Artificial Intelligence  tools available in the market, let us first give a brief understanding of AI tools. It is clear that in the years to come,  Artificial Intelligence  is expected to assist in all major developments and completely change the way things are done today. It is likely to be an inseparable helping hand in all the major industries. At the moment, businesses need to understand the probable  benefits of AI  that they can have on their business operations. The need for such tools arises giving humans the freedom to make decisions and let a machine play other predefined roles. These tools not only help you develop but also make significant contributions to optimizing networks and workflows. List of Artificial Intelligence Tools Here, let’s learn about the numerous AI automation tools that are used in the industry today. This ...

What is Blockchain Technology ? Complete Information

Blockchain Introduction Blockchain is a distributed database that maintains a continuously growing list of ordered records called blocks. Each block contains a timestamp, and links to a previous block. All the participants connected in the network own a copy of the ledger, which is shared among them. If there are any changes made in any one of the copies, all other copies are automatically updated and verified across the network. Every participant in the blockchain can see what is inside it. The data cannot be tampered with; data transparency - every participant sees every transaction Traceability - every transaction is time-stamped and can be tracked to its originator making it easy to trace back through multiple hops finding out where it came from Decentralization - information is not stored in one place which reduces hacking risk considerably Blockchain is a distributed database that maintains a continuously growing list of ordered records called blocks. Blockchain is a distributed ...

Future with Artificial Intelligence

Image
 What is the Future of Artificial Intelligence? Us humans have always worked towards making our lives easier and better, and this constant struggle to achieve something better worked as bliss for humans. Isn't it so fascinating to look back at our cave-devilling ancestors and realise how far we have advanced as humans? We went through various milestones to achieve the technology we have today. As we further surpassed in technology, we stumbled upon exploring artificial intelligence. The artificial intelligence (AI) we have today is in a golden age right now. Every industry is undergoing a sea change due to AI's inflection point. Specific applications of AI have already been discussed in great detail. Consider this post a complete guide on the practical use and foreseeing of artificial intelligence and how it impacts our lives. As a starter, I offer five bold predictions about how artificial intelligence will fundamentally alter our economy and society in the next decade. Where ...

GENDER REPRESENTATION IN VIDEO GAMES

METADATA - GENDER REPRESENTATION IN VIDEO GAMES INTRODUCTION This dataset contains information on several video games released between 2012 and 2022. The games were chosen based on a series of criteria detailed later in this document. The goal of this dataset is to compile information on the games and their characters to analyze how genders are represented. GAME SELECTION CRITERIA 1. The games must have a storyline. To analyze the paper of each character is essential that games had a plot where characters had a role assigned (even if this role might change based on the player's choices). This excludes games like: - Puzzle games: Tetris, Candy Crush, Minesweepers, etc. - Racing games: Gran Turismo, Formula 1, Mario Kart, etc. - Social Simulators: Animal Crossing, The Sims, etc. - MMORPGs, where the storyline lived by the player, might considerably differ from other players, such as World of Warcraft. - Shooters with no story mode: Fornite, Valorant - Other popular games with no stor...

SQL Short Notes

Image
                                                        SQL  Short  Notes What is SQL? • sql is stand for structured query language. • This database language is mainly designed for maintaining the data in relational database management systems. • sql is standard language for accessing and manipulating database. Types of SQL Commands : DDL COMMANDS: • DTM (Data Defined Languages ) used to change the structure of the table Like creating the table, altering the table & Deleting the table. • All the commands in the DDL are auto Committed that means it permanently save all the changes in the database. 1. CREATE : This command is used to create a new database or table. Syntax: CREATE TABLE table_name( column1 datatype, column2 datatype, column3 datatype, Example: CREATE TABLE Employee EmployeelD int;  FirstName varchar(255),...

C programing Notes

Image
                                           C programing Notes    * SYLLABUS Module –I C Language Fundamentals. Character set, Identifiers, keyword, data types, Constants and variables, statements, expression, operators, precedence of operators, Input-output, Assignments, control structures decision making and branching.  Module -II Arrays, Functions and Strings: Declaration, manipulation and String – handling functions, monolithic vs. Modular programs, user defined vs. standard functions, formal vs. actual arguments, function – category, function prototypes, parameter passing, recursion, and storage classes: auto, extern, global, static.  Module –III Pointers, Structures, Unions, File handling: Pointer variable and its importance, pointer arithmetic, passing parameters, Declaration of structures, pointer to pointer, pointer to structure, pointer to function, ...