Articles on Trending Technologies

Technical articles with clear explanations and examples

Why do you think privatization of education is bad?

Rashmi Iyer
Rashmi Iyer
Updated on 27-Jun-2020 3K+ Views

‘Education is the most powerful weapon which you can use to change the world.’ – Nelson Mandela.There is no denial of the fact that education plays an extraordinary role in a person’s life to develop proper intelligence as well as an emotional quotient. Hence, our constitution also makes a provision for providing free and compulsory education under Article 21 (A) which also expands the horizon of Right to life.This is mainly because education enhances the life of any individual. It is only through right education and a right to an education that helps in developing the essential knowledge and required ...

Read More

How to improve general knowledge?

Rashmi Iyer
Rashmi Iyer
Updated on 27-Jun-2020 727 Views

General Knowledge is a vast and diverse discipline which is actually an umbrella term for many subjects studied under its heading. General knowledge forms a very important component in many competitive exams.General knowledge is crucial for students and working people like to stay in touch with the local, national and international level happenings. Following are some tips that help to boost, build and enhance general knowledge for a person.Reading newspapersNewspapers are the biggest storehouses of knowledge. Newspapers help us gauge not just the fact of general knowledge but different perspectives and angles to one topic.Thus, for any student to develop ...

Read More

What are the things that make good employees quit a company?

Rashmi Iyer
Rashmi Iyer
Updated on 27-Jun-2020 376 Views

Retaining the best people in your organization is truly an art and requires a lot of effort in different ways right from appraisal to allocation of responsibilities. While the HR team in the company tries their level best to keep the employees satisfied, there are different factors that eventually lead to good employees quitting a company.ManagementA manager plays a very important role in giving effective feedback to his colleagues. She/he is a mentor and coach in bringing out the best in an employee.However, when the manager starts becoming bossy, hostile or arrogant, the employees function in fear rather than freedom.A ...

Read More

Restart instructions (RSTn) in 8085 Microprocessor

George John
George John
Updated on 27-Jun-2020 13K+ Views

In 8085 Instruction set, RSTn is actually standing for “Restart n”. And in this case,  n has a value from 0 to 7 only. Thus the eight possible RST instructions are there, e.g. RST 0, RST 1, …, RST 7. They are 1-Byte call instructions. Functionally RST n instruction is similar with:RST n = CALL n*8For example, let us consider RST 4 is functionally equivalent to CALL 4*8, i.e. CALL 32 = CALL 0020H. The advantage of RST 2 is that it is only 1 Byte, whereas CALL 0010H is 3-Byte long. Thus RST instructions are useful for branching to frequently used subroutines.Mnemonics, OperandOpcode(in ...

Read More

OUT a8 instruction in 8085 Microprocessor

Arjun Thakur
Arjun Thakur
Updated on 27-Jun-2020 11K+ Views

In 8085 Instruction set, OUT is a mnemonic that stands for OUTput Accumulator contents to an output port whose8-bit address is indicated in the instruction as a8. It occupies 2 Bytes in the memory. First Byte specifies the opcode, and the next Byte provides the 8-bit port address. Mnemonics, OperandOpcode(in HEX)BytesOUT Port-AddressD32OUT F0H is an example instruction of this type. The result of execution of this instruction is shown below with an example.BeforeAfter(A)ABHABHOutput Port F0HAny ValueABHOUT instruction is the only instruction using whichAccumulator contents can be sent out to an output port. A possible chip select circuit to connect an output ...

Read More

IN and OUT instructions in 8085 Microprocessor

Chandu yadav
Chandu yadav
Updated on 27-Jun-2020 8K+ Views

In 8085 Instruction set, there are two instructions in 8085 for communication with I/O ports. They are the IN and OUT instructions. The IN or OUT instruction mnemonics should be followed by an 8-bit port address. Thus we can have 28 = 256 input ports and 256 output ports are possible in 8085-based microcomputers. IN and OUT both are 2-Bytes instructions.Mnemonics, OperandOpcode(in HEX)BytesIN Port-addressDB2OUT Port-AddressD32In case of IN instruction, the current 8-bit content of the PORT# will be made available on to the Accumulator. Let us suppose with the PORT#, 8 DIP switches are connected. And their states are ON-ON-OFF-ON-ON-ON-OFF-ON. ...

Read More

Execution of 'DAD rp' instruction

Ankith Reddy
Ankith Reddy
Updated on 27-Jun-2020 2K+ Views

In 8085 Instruction set, for 16-bit addition, there is one instruction available that is DAD rp instruction. It is a 1-Byte instruction. With this instruction, with the content of the HL register pair, the contents of the mentioned register pair will get added and the result thus produced will be stored on the HL register pair.Mnemonics, OperandOpcode(in HEX)BytesDAD B091DAD D191DAD H291DAD SP391As an example, let us consider the execution of the DADB instruction. Let us suppose, that the initial content of HL register pair is 5050H and content of BC register pair is 4050H. So now if we execute instruction ...

Read More

How to determine device type (iPhone, iPod Touch) with Swift?

Nitya Raut
Nitya Raut
Updated on 27-Jun-2020 1K+ Views

When working on iOS applications, we sometimes need to know the device on which application is installed, and provide custom features depending on the device in use. For example, we want to provide some features on iPhone X but not on iPhone 7. In this article we’ll learn how to find the iOS device being used, using an iOS Application.Let’s go through some terms that will be required for achieving the desired results, utsname − this is a structure located in Darwin module of iOSuname − uname is a function that takes utsname as an input and returns Int32 as ...

Read More

HLT instruction in 8085

George John
George John
Updated on 27-Jun-2020 7K+ Views

In 8085 Instruction set, HLT is the mnemonic which stands for ‘Halt the microprocessor’ instruction. It is having a size of 1-Byte instruction. Using these particular instructions, as 8085 enters into the halt state, so we can put the8085 from further processing of next instructions. This is indicated by S1 and S0 control signals. During the halt, S1 and S0 output signals will become 0 0. Mnemonics, OperandOpcode(in HEX)BytesHLT761The 8085 comes out of the Halt state when a valid interrupt occurs. In such a case, it executes the corresponding interrupt service subroutine depending upon the interrupt number and then it continues ...

Read More

How to add Exception Breakpoint in Xcode?

Jennifer Nicholas
Jennifer Nicholas
Updated on 27-Jun-2020 2K+ Views

Sometimes while writing an iOS application or any other application we need to test multiple cases and debug the application of any known and unknown bugs. There are certain places in the code where we want our app to stop so that we can know the values of certain variables at the point and fix that bug. Before we learn how to add a break point, first let’s seeWhat’s a break point?A break point is a place in our code where the app pauses on a certain event. A break point may be added manually in xcode or may be ...

Read More
Showing 52921–52930 of 61,299 articles
Advertisements