Problems Faced by Rural Women in India Today

Rashmi Iyer
Updated on 27-Jun-2020 13:33:08

2K+ Views

India today has reached the zenith of success in many fields like science and technology, literature, movies and much more. But, there are some issues that are still prevalent in the country and more prominently in the rural India.Rural India is the actual soul of the country where a maximum of its population resides yet it is also the most neglected and ignored by the Government. The major victims of the issues that are present in the rural India are the women. Rural Indian Women are facing a lot of problems.No access to educationAccording to ASER report 2014, only 1 ... Read More

Addressing Modes of 6800

Arjun Thakur
Updated on 27-Jun-2020 13:32:19

2K+ Views

We have seen the Internal structure and registers of Motorola M6800 Microprocessor. In this section we will see the addressing modes of M6800.There are six addressing modes in M6800 MPU. These modes are −Immediate Addressing ModeImplied Addressing ModeDirect Addressing ModeExtended Addressing ModeIndexed Addressing ModeRelative Addressing ModeNow Let us see some basic syntax of M6800 Assembly Language Programming.If a number is 8CH in hexadecimal, then we have to use $ sign before it. So it will be $8C. A number without $ is treated as decimal number. Similarly, an immediate data is denoted by # symbol. #50FF is a data, but ... Read More

Instruction Set of 6800

Chandu yadav
Updated on 27-Jun-2020 13:32:04

2K+ Views

In this section, we will see the different types of instructions of Motorola M6800 microprocessor. There are 72 different types of instructions and 197 different opcodes. So there are 51 1-Byte instruction, 103 2-Byte instruction and 43 3-Byte instruction.As we know that the Intel 8085 has 246 opcodes, though 6800 is more powerful than 8085. The Z-80 has 700 instructions but M6800 has some more advanced branching instructions.The different instruction groups are like these −Data Transfer GroupArithmetic GroupLogical GroupBranch GroupMiscellaneous InstructionsData transfer GroupIn this group, there are 14 instructions. We can find 38 opcodes for these 14 instructions. These instructions ... Read More

Launch Arbitrary iPhone Application from Another App

Nitya Raut
Updated on 27-Jun-2020 13:31:34

987 Views

iOS Allows us to open some applications with some links or other ways from our app, like dialing a number when clicked on it, or writing a mail with some static body or writing a SMS. But this is limited to some applications, not every app can be opened from within an application.Specifically it is limited to apps that have a registered URL Scheme. For example if you want to open a SMS from your app, it is possible using the registered URL Scheme.Some of the applications that can be opened with URL schemes and how to open them are ... Read More

Custom URL Schemes Supported by the Facebook iPhone App

Jennifer Nicholas
Updated on 27-Jun-2020 13:31:00

904 Views

A url Scheme is a way of iOS to open some third party applications from within a app. Some of the URL schemes that are supported by facebook to open different modules of facebook app from within some other app are mentioned below.1. To open facebook profile: fb://profile 2. To open request list: fb://requests 3. To open friends list : fb://friends 4. To open notes: fb://notes 5. To open the list of notifications : fb://notifications 6. To open albums: fb://albums 7. To open feeds/ home : fb://feed 8. To open events : fb://events 9. To open a page with id: ... Read More

Interrupts of 6800

Chandu yadav
Updated on 27-Jun-2020 13:30:45

711 Views

In Motorola M6800, there are two hardware interrupt pins. These pins are NMI and. IRQ  These pins are active low input pins. The first one is non-maskable and the second one is maskable and lower priority interrupt. When the IM flag is 1, or CCR register is set, the interrupt is masked or disabled.When the Micro processor enters into some Interrupt Service Subroutine (ISS), it uses SEI instruction to mask the interrupt even if the IRQ activated. The reverse action can be performed using the CLI instruction. It can unmask the interrupt.When in the interrupt is occurred, the M6800 follows ... Read More

Pulse Animation Effect with CSS

Arjun Thakur
Updated on 27-Jun-2020 13:30:33

775 Views

To create pulse effect with CSS, you can try to run the following codeExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;             background-position: left top;             padding-top:95px;             margin-bottom:60px;             -webkit-animation-duration: 10s;             animation-duration: 10s;             -webkit-animation-fill-mode: both;             animation-fill-mode: both;          }          @-webkit-keyframes pulse {             0% { -webkit-transform: scale(1); }             50% { -webkit-transform: scale(1.1); }             100% { -webkit-transform: scale(1); }          }          @keyframes pulse {             0% { transform: scale(1); }             50% { transform: scale(1.1); }             100% { transform: scale(1); }          }          .pulse {             -webkit-animation-name: pulse;             animation-name: pulse;          }                           Reload page                function myFunction() {             location.reload();          }          

Programming Examples of 6800

George John
Updated on 27-Jun-2020 13:30:14

854 Views

Now, in this section, we will see how we can use the Motorola M6800 Microprocessor to add multi-Byte numbers.AddingMulti-Byte NumberIn this example, we are using 4-Byte numbers (56 2F 7A 89)16 and (21 FB A9 AF)16In the memory, at first, we are storing the Byte counts, and then the numbers (from least significant Bytes to Most significant Bytes) in different segments. So after storing the data, the memory structure will be looking like thisAddressValue5000H04H...5050H89H5051H7AH5052H2FH5053H56H...5070HAFH5071HA9H5072HFBH5073H21H...Now, we are writing a program to add these two 4-Byte number and store the result at location 5090H onwards.Program      CLC       LDX#$5050 ... Read More

Parse JSON Object in iPhone iOS

Nancy Den
Updated on 27-Jun-2020 13:29:49

550 Views

JSON stands for Javascript object notation. Most of the when dealing with APIs or any other services the data is returned in JSON format and we need to convert it to usable and supporte language formats.Foundation framework of iOS provides a class JSONSerialization to convert JSON into supported formats like Dictionary, strings, Bool etc.The JSONSerialization class provides a method jsonObject(with:options:) that parses json and returns Any as result, and an error if the data cannot be parsed.// Example JSON: /* {    "age": 42.0,    "name": {       "firstName": “tut”    } } */Let’s see this with help ... Read More

When is the Important Rule Used in CSS

Samual Sam
Updated on 27-Jun-2020 13:29:43

51 Views

The !important rule provides a way to make your CSS cascade. It also includes the rules that are to be applied always. A rule having a !important property will always be applied, no matter where that rule appears in the CSS document.ExampleFor example, in the following style sheet, the paragraph text will be black, even though the first style property applied is red:     ExampleIf you want to make sure that a property always applied, you would add the !important property to the tag. Therefore, to make the paragraph text always red, you should write it as follows :Live ... Read More

Advertisements