Artificial Intelligence

25-Most common interview question Python for freshers

25-Most common interview question with answers on Python for freshers  1. Differentiate between list and tuple: Lists are mutable data structures in Python, allowing for dynamic changes, while tuples are immutable. This means that elements in a list can be added, removed, or modified, while elements in a tuple cannot be changed once assigned. 2. How …

25-Most common interview question Python for freshers Read More »

Share

R Language

About r language R is a programming language and software environment for statistical computing and graphics. It was developed in the early 1990s by statisticians Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand. R is widely used by statisticians, data scientists, and researchers for a variety of tasks, including data analysis, …

R Language Read More »

Share

Bitcoin

What is Bitcoin? Bitcoin is a decentralized digital currency that can be sent electronically from one user to another without the need for a middleman such as a bank or government. Transactions are recorded on a public ledger called the blockchain. Bitcoin was created in 2009 by an unknown individual or group of people using …

Bitcoin Read More »

Share

Machine Learning

What is machine learning? Machine learning is a method of data analysis that automates analytical model building. It is a branch of artificial intelligence that uses algorithms to learn from data and make predictions or decisions without being explicitly programmed to do so. There are three main types of machine learning: supervised learning, unsupervised learning, …

Machine Learning Read More »

Share

Cryptocurrency – ಕ್ರಿಪ್ಟೋಕರೆನ್ಸಿ

What’s Crypto currency? Cryptocurrency is a digital or virtual currency that uses cryptography for security. It operates independently of a central bank or government. Bitcoin, the first and most widely used cryptocurrency, was created in 2009. Other popular cryptocurrencies include Ethereum, Ripple, and Litecoin. Transactions with cryptocurrencies are recorded on a public digital ledger called …

Cryptocurrency – ಕ್ರಿಪ್ಟೋಕರೆನ್ಸಿ Read More »

Share

IoT-Internet of Things

What is IoT? IoT stands for Internet of Things. It refers to the interconnectedness of physical devices, vehicles, buildings, and other objects that are embedded with sensors, software, and network connectivity, which enables these objects to collect and exchange data. This allows them to be controlled remotely and to communicate with other devices and systems. …

IoT-Internet of Things Read More »

Share

Blockchain

What is blockchain? Blockchain is a decentralized digital ledger technology that records transactions across a network of computers. It is most commonly associated with the Bitcoin digital currency, but it has many other uses as well. A blockchain is made up of a series of blocks that contain information about transactions. Each block contains a …

Blockchain Read More »

Share

Live Stock ticker using Python

In this example we will be knowing that how to show live stock price using Python with various python packages. Lets have an example from yahoo_fin import stock_info from tkinter import * def stock_price(): price = stock_info.get_live_price(e1.get()) Current_stock.set(price) master = Tk() master.geometry(‘300×150’) master.title(‘Global Stock Price’) Current_stock = StringVar() Label(master, text=”Live Stock Price”, font=’sans 14′, fg=’yellow’, …

Live Stock ticker using Python Read More »

Share

Data Science – Web scraping (Access Share/BSE Market price)

Retrieve Live Market Price Accessing Share and Bombay Stock Exchange (BSE) Market price using Web scraping with the help of Python’s Beautiful Soup Package. In this example we covered TCS share price as an example. Here is the Python code to perform the task. #data science with Python – TCS share and BSE Market price …

Data Science – Web scraping (Access Share/BSE Market price) Read More »

Share
Share
Scroll to Top