Guest

Wants to meet

Articles
Followers
4

Images/noimage.png
Guest
14 Very Important Educational Tools You Barely Knew Existed
~10.0 mins read
Educational technology is advancing each and every day, such that it is not easy to keep up with it. Different educational tools are created daily making learning easier, better and richer. Some of the tools include:

1: Learn More, Study Less: The Video Course
What if I told you everything you know about how to learn, study and succeed in school was wrong “If you learn like most people, it probably is.Learn More, Study Less is a Course For Learning Faster. Aimed For Students, Professionals And Self-learners. This has been a very helpful course for most people and could be of great help to you too! so do well to check it out.

2. GCF LEANFREE.ORG
The site is based in North Carolina and is owned by Goodwill Industries. Its main purpose is to build technological skills, literacy and mathematical skills for people across the world. The site offers classes free of charge and also has mobile apps that learners can use wherever they are. Presently, the site offers more than 700 lessons for free; and teaches various subjects ranging from simple subtraction and addition to Microsoft Office.

3. SCITABLE
Scitable is a site that Nature Education created. The online site is concerned with science education and learning. There are numerous science eBooks and articles that visitors can browse through to learn more about science. Visitors are also able to learn and ask from science experts, form online classrooms and share their science articles or contents. The site is dedicated to science lovers who are eager to learn or pursue a career that is science-related.
4. University Of The PeopleThe online education site was created by Shai Reshef. It is non-profit tuition fee institution that offers computer science and business administration degree courses. It is an advanced online institution that works in conjunction with Catalyst Initiative, New York University, Yale and Hewlett-Packard. The systems provide opportunities to students for practicums, research and further studies. The site mainly focuses on developing countries but can also accept other countries. All, you need to do, is to apply.
5. SAYLORSaylor, an online education site was created in 2008. It offers almost 200 free online courses which are majorly centered on the highest enrollment majors in USA. The site also enables learners to take part in discussion forums, print manuscripts and track courses.
6: TEXTBOOK REVOLUTIONTextbook Revolution is among the many sites that enable users to access free books. The site has a variety of textbooks for different topics and subjects from which, every learner can benefit. Despite not being popularly known, it is a site that is dedicated to helping students.
7: University Of RedditMost people, who frequent the internet, may be familiar with reddit but not the University of Reddit. The site offers visitors the opportunity to share their skills and knowledge via videos and class lectures. Presently, the site offers learning resources in different fields including computer science, math, science, social studies and philosophy.
8. Engineering for ChangeUnlike other aforementioned sites which have educational videos and lessons, this site is a live collaborative webcast. Participants can learn and interact with other people regarding engineering topics. You are also able to involve yourself actively in solving humanitarian engineering matters. In the site, a fresh topic is introduced each month for users to ponder about. Anyone interested in learning more about engineering can sign up and enjoy the services offered.
9. MENTORMOBMentormob is a site that collects educational resources from other sites, puts them in an orderly manner then shares them. Users enjoy the benefit of creating their educational resources or surf through current collections put together by other users.
10 The Faculty ProjectThe Faculty Project enables learners to access lecturers and professors from renowned institutions like Vassar and Northwestern. The site covers a wide variety of courses from which, learners can choose their desired courses. It is still quite new, but it is rapidly growing as it is building up a good assortment of learning materials that students can learn from via PowerPoint, PDF and educational articles.
11 LEARNTHATLearnthat is a brilliant site where learners can go through tutorials that are associated with technology, business and FINANCE. The site has hundreds of useful videos and articles that enable students to sharpen their skills in digital marketing, management and other subject matters.
12: MEMRISEMemrise is a site that uses a combination of fun, brain science and community to help users learn. Most of the content is very visual and gamed- based. The visitors can boost their skills in a variety of fields like languages or other topics such as foodstuffs.
13 ALISONAlison online site is a 2007 site created to offer free online courses. The site offers more than 300 courses in ten different groups. Different people from around the world can get certified courses on topics such as human resources, legal studies and project management. The content provided is free of charge except for 20 dollars you are expected to pay when getting a copy of your certificate.
14 LEARNERSTVLearnersTV is a site that brings together science animations, publications, videos, audio lectures and online tests. Users can get access to a broad variety of resources from which they can learn. Whether you are looking for in-depth experience or a simple research, the site will provide all the necessary material you need.
Images/noimage.png
Guest
Basic Logic
~7.1 mins read

Basic logic gates

There are seven basic logic gates: AND, OR, XOR, NOT, NAND, NOR, and XNOR.
AND | OR | XOR | NOT | NAND | NOR | XNOR
The AND gate is so named because, if 0 is called "false" and 1 is called "true," the gate acts in the same way as the logical "and" operator. The following illustration and table show the circuit symbol and logic combinations for an AND gate. (In the symbol, the input terminals are at left and the output terminal is at right.) The output is "true" when both inputs are "true." Otherwise, the output is "false." In other words, the output is 1 only when both inputs one AND two are 1.
/WhatIs/images/and.gif (220 bytes)
AND gate
Input 1Input 2Output
   
 1 
1  
111
The OR gate gets its name from the fact that it behaves after the fashion of the logical inclusive "or." The output is "true" if either or both of the inputs are "true." If both inputs are "false," then the output is "false." In other words, for the output to be 1, at least input one OR two must be 1.
/WhatIs/images/or.gif (224 bytes)
OR gate

Input 1Input 2Output
   
 11
1 1
111
 
The XOR ( exclusive-OR ) gate acts in the same way as the logical "either/or." The output is "true" if either, but not both, of the inputs are "true." The output is "false" if both inputs are "false" or if both inputs are "true." Another way of looking at this circuit is to observe that the output is 1 if the inputs are different, but 0 if the inputs are the same. 
 
XOR gate
Input 1Input 2Output
   
 11
1 1
11 
 
A logical inverter, sometimes called a NOT gate to differentiate it from other types of electronic inverter devices, has only one input. It reverses the logic state. If the input is 1, then the output is 0. If the input is 0, then the output is 1.  
 
/WhatIs/images/not.gif (240 bytes)
 
Inverter or NOT gate
InputOutput
1 
 1
 
The NAND gate operates as an AND gate followed by a NOT gate. It acts in the manner of the logical operation "and" followed by negation. The output is "false" if both inputs are "true." Otherwise, the output is "true."
/WhatIs/images/nand.gif (240 bytes)
NAND gate
Input 1Input 2Output
  1
 11
1 1
11 
 
The NOR gate is a combination OR gate followed by an inverter. Its output is "true" if both inputs are "false." Otherwise, the output is "false."
/WhatIs/images/nor.gif (237 bytes)
NOR gate
Input 1Input 2Output
  1
 1 
1  
11 
 
The XNOR (exclusive-NOR) gate is a combination XOR gate followed by an inverter. Its output is "true" if the inputs are the same, and "false" if the inputs are different.
/WhatIs/images/xnor.gif (278 bytes)
XNOR gate
Input 1Input 2Output
  1
 1 
1  
111
Complex operations can be performed using combinations of these logic gates. In theory, there is no limit to the number of gates that can be arrayed together in a single device. But in practice, there is a limit to the number of gates that can be packed into a given physical space. Arrays of logic gates are found in digital ICs. As IC technology advances, the required physical volume for each individual logic gate decreases and digital devices of the same or smaller size become capable of performing ever-more-complicated operations at ever-increasing speeds.

Composition of logic gates

High or low binary conditions are represented by different voltage levels. The logic state of a terminal can, and generally does, often change as the circuit processes data. In most logic gates, the low state is approximately zero volts (0 V), while the high state is approximately five volts positive (+5 V).
Logic gates can be made of resistors and transistors or diodes. A resistor can commonly be used as a pull-up or pull-down resistor. Pull-up and pull-down resistors are used when there are any unused logic gate inputs to connect to a logic level 1 or 0. This prevents any false switching of the gate. Pull-up resistors are connected to Vcc (+5V), and pull-down resistors are connected to ground (0 V).
Commonly used logic gates are TTL and CMOS. TTL, or Transistor-Transistor Logic, ICs will use NPN and PNP type Bipolar Junction Transistors. CMOS, or Complementary Metal-Oxide-Silicon, ICs are constructed from MOSFET or JFET type Field Effect Transistors. TTL IC's may commonly be labeled as the 7400 series of chips, while CMOS ICs may often be marked as a 4000 series of chips

Advertisement

Loading...

Link socials

Matches

Loading...