What are the most commonly used Idioms in English?

Rani RPS
Updated on 30-Jul-2019 22:30:24

536 Views

An idiom is a wise saying with an underlying meaning that packs a punch with societal principles and cultural values packed into it. An idiom is a combination of words that have a figurative meaning yet express an idea with it. It is a word or phrase that is understood differently but actually means different from what it denotes.The dictionary meaning of the words or phrases used in idioms is different from the contextual meaning that is denoted by idioms when used in speech. The meaning is contextual, informal and culturally understood.There are thousands of idioms used in the English ... Read More

8085 Program to perform linear search

Jennifer Nicholas
Updated on 30-Jul-2019 22:30:24

2K+ Views

In this program we will see how to search an element in a block of bytes using 8085.Problem StatementWrite 8085 Assembly language program to search a key value in a block of data using linear search technique.DiscussionIn this program the data are stored at location 8002H to 8007H. The 8000H is containing the size of the block, and 8001H is holding the key value to search.After executing this program, it will return the address of the data where the item is found and store the address at location 9000H and9001H. If the item is not found, it will return FFFFH.If ... Read More

How to make arrangements for a college conference?

Ridhi Arora
Updated on 30-Jul-2019 22:30:24

350 Views

Any conference or fest in a college is a type of event which requires a lot of pre-planning and then only one can make it a huge success. In order to get some sort of praise, the organizers of the conference have to know everything in great detail before getting into the actual celebration.Check Out The Steps1. Participants In Conference: Know which delegates from which part of the country will be a part of the conference. Will there be any research scholars, teachers, students or any other important guests?2. Invite the Conference Participants: After noting the names and designations of ... Read More

Does content writing have a bright future in India?

Ridhi Arora
Updated on 30-Jul-2019 22:30:24

154 Views

Content writing has a very wide scope in India, thus, its future is very bright. The causes of this bright future may be attributed to the use of this content is not only newspapers and magazines but also in social media vis-a-vis research papers.Domains In Content Writing with Good PotentialSEO: SEO refers to Search Engine Optimisation and a person who is involved in such a domain can earn a lot in this field. This content writer has a lot of demand in the present times too, so he will definitely be in demand in future.Fashion: Fashion bloggers may or may ... Read More

8085 Program to find the smallest number

Rishi Rathor
Updated on 30-Jul-2019 22:30:24

10K+ Views

In this program we will see how to find the smallest number from a block of bytes using 8085.Problem StatementWrite 8085 Assembly language program to find the smallest number from a block of bytes.DiscussionIn this program the data are stored at location 8001H onwards. The 8000H is containing the size of the block. After executing this program, it will return the smallest number and store it at location 9000H.Logic is simple, we are taking the first number at register B to start the job. In each iteration we are getting the number from memory and storing it into register A. ... Read More

How can I make my layout scroll vertically in Android?

George John
Updated on 30-Jul-2019 22:30:24

8K+ Views

Before getting into example, we should know what is vertical Scroll View(Scroll View). Vertical Scroll view provide by android.widget.ScrollView class. It is used to scroll child views in a vertical direction.This example demonstrates how to use Vertical Scroll view.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.                                                     ... Read More

How to reverse the direction of marquee of a TextView in Android?

George John
Updated on 30-Jul-2019 22:30:24

700 Views

This example demonstrate about How to reverse the direction of marquee of a Text View.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above code, we have taken text view and ellipsize property as marquee as shown below -android:ellipsize = "marquee" android:layoutDirection = "rtl" android:textDirection = "rtl" android:fadingEdge = "horizontal" android:marqueeRepeatLimit = "marquee_forever" android:scrollHorizontally = "true" android:singleLine = "true"Step 3 − Add the following code to src/MainActivity.javapackage com.example.andy.myapplication; import android.os.Bundle; ... Read More

8085 Program to find the HCF of two given bytes

Vrundesha Joshi
Updated on 30-Jul-2019 22:30:24

3K+ Views

In this program we will see how to find the HCF or GCD of two numbers using 8085.Problem StatementWrite 8085 Assembly language program to find the HCF of two numbers stored at memory location 8000H and 8001H.DiscussionThis problem is solved by the Euclidean algorithm to find HCF. This algorithm is very simple.The algorithm steps are as follows −If first number and second number are same, thengo to step 3.Else if first number < second number, then exchange no1 andno2.first-number A, then exchange B and AF00D90SUB B   if B < A, subtract B from AF00EC3, 06, F0JMP LOOP  Jump to LOOPF01148EXGMOV ... Read More

What is ragging and what are its effects in colleges?

Rashmi Iyer
Updated on 30-Jul-2019 22:30:24

7K+ Views

Ragging is a practice in colleges, hostels and other educational institutes where the senior or an influential person tends to demoralize and defame the juniors through the means of verbal or physical abuse and harassment. The term ragging is more prominent in the countries of India, Pakistan, Sri Lanka, and Bangladesh. In other countries, the same practice has different terms associated with it.Different forms of ragging exist due to the following key reasons:Considered as a form of entertainmentThe senior who have stayed for a slightly longer time in the system of the college have an extraordinary sense of superiority. This ... Read More

Programming the 8257

Jennifer Nicholas
Updated on 30-Jul-2019 22:30:24

444 Views

We know from the study of the description of 8257 that it consists of 40 pins and the condition when it works in Slave Mode and Master mode. From the microprocessor point of view, the I/O port is a chip which is used exclusively for DMA control application and is not used for interfacing I/O devices for the purpose of data transfer with the processor. This chip is only used to control the DMA data transfer for four I/O ports. For every I/O port there exists a corresponding DMA channel. This chip provides all the features which are needed for ... Read More

Advertisements