- 88
- 1 337 659
Learn ToDay
India
เข้าร่วมเมื่อ 11 ต.ค. 2019
Hello Friends ...!! Welcome to Learn ToDay ...!!
Von Neumann Architecture in Tamil
#Vonneumannarchitecture #computerorganization #LearntodayTamil
Von- Neumann Architecture in computer organization in Tamil
Modern computers are based on a stored program concept introduced by John Von-Neumann. In this stored program concept programs and data are stored in a separate storage unit called memories and are treated the same.
0.00 - Von Neumann Architecture
1.40 - Central Processing Unit
2.11 - Control Unit
2.36 - Arithmetic Logical Unit(ALU)
3.34 - Registers
6.24 - Buses
7.37 - Input/Output Device
8.52 - Von Neumann Bottle Neck
Von- Neumann Architecture in computer organization in Tamil
Modern computers are based on a stored program concept introduced by John Von-Neumann. In this stored program concept programs and data are stored in a separate storage unit called memories and are treated the same.
0.00 - Von Neumann Architecture
1.40 - Central Processing Unit
2.11 - Control Unit
2.36 - Arithmetic Logical Unit(ALU)
3.34 - Registers
6.24 - Buses
7.37 - Input/Output Device
8.52 - Von Neumann Bottle Neck
มุมมอง: 2 961
วีดีโอ
ACID Properties of a Transaction in Tamil
มุมมอง 4K10 หลายเดือนก่อน
#ACIDproperties #databasemanagementsystem #LearnToDay #Transactionindbms ACID Properties of a Transaction in DBMS A Transaction is a single logical unit of work that accesses and possibly modifies the contents of a database. Transaction access data using read and write operations. In order to maintain consistency in a database before and after the transaction certain properties are followed. Th...
What is Transaction in DBMS Tamil
มุมมอง 1.8K11 หลายเดือนก่อน
#TransactionDBMS #DBMSTamil #Databasetransaction What is Database Transaction in tamil And Transaction Concurrency in DBMS Tamil Transaction - It is a set of operations used to perform a logical unit of work. A transaction generally represent change in database. A transaction can include the following basic database access operation. Read/Access data (R) Accessing the database item from disk. W...
TCP/IP PROTOCOL ARCHITECTURE IN TAMIL | COMPUTER NETWORKING
มุมมอง 7Kปีที่แล้ว
#TCP/IPprotocol #computernetwork #TCP/IP #OSImodel TCP/IP PROTOCOL ARCHITECTURE IN TAMIL TCP/ IP stands for transmission control protocol/ Internet protocol and is a suite of communication protocols used to interconnect network device on the internet. 0:00 - TCP/IP PROTOCOL 1:30 - Application Layer 1:49 - Transport Layer 2:32 - Network Layer 3:05 - Data link Layer 3:24 - Physical Layer 3:46 - T...
What is Database Management system in Tamil
มุมมอง 4.7Kปีที่แล้ว
#whatisdbms #dbmsintamil #database #data #whatisdbmsintamil What is Database Management System in Tamil Data - collection of distinct small unit of information. Database - A database is a collection of connected information about people, locations, or things. Database management system - is a collection of programs that allow you to create manage and operate a database.
ERROR CONTROL IN DATA COMMUNICATION AND NETWORKS IN TAMIL
มุมมอง 1.2K2 ปีที่แล้ว
#ERRORCONTROL #NETWORKCOMMUNICATION #NETWORKTAMIL 0:10 - WHAT IS ERROR? Sender Sends the data if the receiver does not have the same data its called error. 1:00 - ERROR CONTROL Digital systems, on the other hand, are very sensitive to errors and may malfunction if the data is corrupted. Therefore, error control mechanisms are built into all digital systems. 2:53 - TYPES OF ERRORS 3:09 - TRANSMI...
Inheritance in C++ Tamil
มุมมอง 29K2 ปีที่แล้ว
#inheritance #Singleinheritance #Multilevelinheritance #multipleinheritance #Hierarchicalinheritance #Hybridinheritance Inheritance in C in Tamil Inheritance is basically done by creating new classes,reusing the properties of the existing ones .The mechanism of deriving a new class from an old one is called inheritance. OOPs support the five different types of inheritance as given below : Singl...
Unary Operator Overloading in C++ Tamil
มุมมอง 6K2 ปีที่แล้ว
#unaryoperator #operatorOverloading #Programmingc Unary Operator Overloading in C programming in Tamil Unary Operator - Which operates on single operand like increment and decrement ( or ) The unary minus when applied to an object should change the sign of each of its data items. Unary Operator Overloading with sample program in C 0:00 - Unary Operator Overloading in C 2:16 - Sample program of ...
Operator Overloading in C++ programming in tamil
มุมมอง 10K2 ปีที่แล้ว
#operatoroverloading #programmingc #operatoroverloadingtamil 0:00 - Operator Overloading in C Programming in Tamil Operator Overloading is a special meanings to an operator is known as Operator Overloading. We can have overload all the C operators except the following 1. Class member access operators 2.Scope resolution operator 3.Size Operator 4.Conditional Operator 4:53 - DEFINING OPERATOR OVE...
Destructor in C++ Programming in Tamil
มุมมอง 3.6K2 ปีที่แล้ว
#destructor #programmingc #destructorintamil Destructor in C Programming in Tamil A destructor as the name implies is used to destroy the objects that have been created by a Constructor.Link a Constructor, the destructor is a member function whose name is the same as the class name but proceded by a tilde(~) . 0:00 - Destructor in C programming 2:31 - Sample program of Destructor In this chenna...
Copy Constructor in C++ Programming in Tamil
มุมมอง 3.2K2 ปีที่แล้ว
copyconstructor programmingc copyconstructortamil Copy Constructor in C Programming in Tamil A copy Constructor is used to declare and initialize an object from another object. Sample program of Copy Constructor in C programming 0:00 - Copy Constructor in C 4:45 - Sample program Constructor in C programming Video Link : th-cam.com/video/fOawFkOkqLM/w-d-xo.html In this chennal only provides comp...
Parameterized constructors in C++ in Tamil
มุมมอง 3.2K2 ปีที่แล้ว
#parameterizedconstructor #constructorC Parameterized constructors in C in Tamil Constructor - Special member function whose task is to intialize the objects of its class. The constructors, that can take arguments are called parameterized constructors. constructor in C - th-cam.com/video/fOawFkOkqLM/w-d-xo.html 0:00 - Parameterized Constructor 4:48 - Sample program In this chennal only provides...
Constructor in C++ programming in Tamil
มุมมอง 8K2 ปีที่แล้ว
#constructor #c programming #constructortamil Constructor in C programming in Tamil A constructor is a special member function whose task is to intialize the objects of its class. It is special because it's name is the same as the class name . The Constructor is invoked whenever an object of its associated class is created . It is called Constructor because it constructs the values of data memb...
Classes and objects in C++ programming in Tamil
มุมมอง 7K2 ปีที่แล้ว
Classes and objects in C programming in Tamil
Memory Management in Operating System in Tamil
มุมมอง 32K2 ปีที่แล้ว
Memory Management in Operating System in Tamil
Java Virtual Machine in Tamil | JVM in Java
มุมมอง 7K2 ปีที่แล้ว
Java Virtual Machine in Tamil | JVM in Java
What are Relationships? | Types of Relationships | DBMS | Tamil
มุมมอง 6K2 ปีที่แล้ว
What are Relationships? | Types of Relationships | DBMS | Tamil
Introduction of Java Programming | Tamil
มุมมอง 7982 ปีที่แล้ว
Introduction of Java Programming | Tamil
What is DBMS | Introduction to Database management system | Tamil
มุมมอง 1.7K2 ปีที่แล้ว
What is DBMS | Introduction to Database management system | Tamil
Types of Keys in DBMS |Candidate|Primary|Alternate|Super|Foriegn|Composite|Surrogate|Key | Tamil
มุมมอง 8K2 ปีที่แล้ว
Types of Keys in DBMS |Candidate|Primary|Alternate|Super|Foriegn|Composite|Surrogate|Key | Tamil
Character Arrays and Strings in C programming in Tamil | Strings in C
มุมมอง 4.3K2 ปีที่แล้ว
Character Arrays and Strings in C programming in Tamil | Strings in C
What is Primary key | DBMS | Types of Keys | Tamil | Primary key vs Candidate key
มุมมอง 3.1K2 ปีที่แล้ว
What is Primary key | DBMS | Types of Keys | Tamil | Primary key vs Candidate key
What is Candidate key | DBMS | Types of Keys in DBMS | IN Tamil
มุมมอง 3.3K2 ปีที่แล้ว
What is Candidate key | DBMS | Types of Keys in DBMS | IN Tamil
Types of Attributes | E-R Model | DBMS | Attributes | Tamil
มุมมอง 1.5K2 ปีที่แล้ว
Types of Attributes | E-R Model | DBMS | Attributes | Tamil
Introduction to E-R Model | Entity-Relationship Model | DBMS | Tamil
มุมมอง 3.5K2 ปีที่แล้ว
Introduction to E-R Model | Entity-Relationship Model | DBMS | Tamil
Data independence in DBMS | Logical data independence and Physical data Independence | In Tamil
มุมมอง 2.7K2 ปีที่แล้ว
Data independence in DBMS | Logical data independence and Physical data Independence | In Tamil
supper mam your teaching is supper
V good explanation
Is this enough for database architecture for 12 marks
Hii mam
2024
Suthama puriyala 😢 today mrg sem nan early mrg ukanthu 3:00 am la pathutu eruke 😢
mam veera marii naanum 2 hoursa ai lam use padiikuran onum puriyala neega supera soniiga thanxx
8:05 interrupt handling
Thank you 🙏 Mam 😌
Sis one doubt why we are only using i, a, x, y, only shall we use other then this
Same for java?
Nice explanation 🎉
😮❤
Intha maari simpleah naraiya video podunga mam thank you❤
Romba Thanks mam ❤
Mam super short time with clear explanation
Akka nega fundamental of information technology eatukka mateggala
Mam ethuve padichi ezhuthalama mam
Thank you mam
Thank you sis💜💜
Tomorrow 3rd sem for me... thankyou so much for the video
Super mam ❤
Thank you mam ❤ your explanation very clearly ❤❤
Eniku morning 10 clk semester exam but seeing vedio 7:32 am
Variables video podalaya mam 🥹🙂
Your explanation is very good 💯😊
Super sister
Super mam ❤
😁🔥
Hi 😢
Thank you for the clear explanation mam🎉.
Most welcome 😊
❤
Inheritance in C++ is a feature that allows a class (derived class) to inherit properties and behaviors (data members and member functions) from another class (base class). It promotes code reusability and establishes a relationship between the base and derived classes. Syntax: ```cpp class DerivedClass : public BaseClass { // Additional members of the derived class }; ``` There are different types of inheritance: - **Single Inheritance**: One derived class inherits from one base class. - **Multiple Inheritance**: One derived class inherits from more than one base class. - **Multilevel Inheritance**: A derived class inherits from another derived class. - **Hierarchical Inheritance**: Multiple derived classes inherit from a single base class. - **Hybrid Inheritance**: Combination of multiple types of inheritance. In C++, access specifiers (`public`, `protected`, `private`) control the accessibility of inherited members.
Thank you mam it's so use full for mee
Supr explain ❤
Super
Mam plz upload category of functions
Thank you Akka ☺️☺️
Program epdi make panurathunu puriyala so athu ethavathu thaniya video irukka mam
❤🎉
Very Clean Explained. Thanks lot!!!1
Thank you mam ❤
Example teach pannurathu easy understand ahuthu mam❤
Thank you mam 😊
Thank you for the best explanation mam👍👍👍
I my bookk also same so I don't want pdf mam
Structures and unions video podunga mam
Very useful mam thank you
Example podunga mam
Mam indha ppt kedaikumaa mam
Clear notes mam First vedio in your chennal mam Very useful I am your new subscriber mam❤❤❤