Posts

Showing posts from June, 2014

Solve General Knowledge Questions

1) Which of the following is social network? A) amazon.com B) eBay.com C) gmail.com D) twitter Ans:-D) twitter 2) Internal communication within institutions is done through A) LAN B) WAN C) EBB D) MMS Ans:- A)LAN 3) Virtual reality provides A) Sharp pictures B) Individual audio C) Participatory experience D) Preview of new films Ans:- C) Participatory experience 4) The first virtual university of India came up in A) Andhra Pradesh B) Maharashtra C) Uttar Pradesh D) Tamil Naidu Ans:- D) Tamil Naidu 5) The initial efforts for internet based communication was for A) Commercial communication B) Military purpose C) Personal interaction D) Political campaigns Ans:- B) Military purpose 6)The post-industrial society is designated as A) Information society B) Technology society C) Mediated society D) Non - agricultural society Ans:- A) Information society 7) The major source of the pollutant gas,carbon mono-oxide (CO) ,in urban areas...

Algorithm of sorting

An algorithm to sort an elements using Insertion Sort. Algorithm for Insertion sort:- Step 1 : START Step 2 : Input N Step 3 : For I←0 to N -1 Read A [ I ] ( end of I for loop ) Step 4 : For I←1 to N -1 Do Step 5 : J = I Step 6 : While ( J > = 1 ) and ( A[ J ] < A [ J -1 ] ) Step 7 : TEMP = A [ J ] Step 8 : A [ J ] = A [ J - 1 ] Step 9 : A[ J - 1 ] = TEMP Step 10 : J = J - 1 [ end of While loop ] [ end of step I For loop ] Step 11 : For I←0 to N -1 Step 12: Print A [ I ] Step 13 : Stop Consider the elements A[0 ]    20 A[1]    16 A[2]    4 A [3]    3 Pass 1: A[1],A[0]>16,20,4,3 Pass 2: A[2],A[1]> 16,4,20,3 A[1],A[0]>4,16,20,3 Pass 3: A[3],A[2]> 4,16,3,20 A[2],A[1]>4,3,16,20 A[1],A[0]> 3,4 16,20 Sorted order is 3,4,16,20 Algorithm for bubble sort:- Step 1 : START Step 2 : Input N Step 3 : For I←0 to N -1 Step 4 : Read ( A [ I ] ) ( end of for loop ) Step 5 : F...

Memristor

Image
Memristor Definition:- According to the original 1971 definition, the memristor was the fourth fundamental circuit element, forming a non-linear relationship between electric charge and magnetic flux linkage. What is memristor? Ans.As its name implies, the memristor can "remember" how much current has passed through it. And by alternating the amount of current that passes through it, a memristor can also become a one-element circuit component with unique properties. Most notably, it can save its electronic state even when the current is turned off, making it a great candidate to replace today's flash memory.  The memristor definition is based solely on the fundamental circuit variables of current and voltage and their time-integrals, just like the resistor, capacitor and inductor. Unlike those three elements however, which are allowed in linear time-invariant or LTI system theory, memristors of interest have a dynamic function with memory and may be d...

Translation

English :- Computer French :-ordinateur Turkish :-bilgisayar Yoruba :-kọmputa  Itialian :-calcolatore Spanish :-ordenador Maori :-rorohiko Latin :-ipsum Greek :-ηλεκτρονικός υπολογιστής Marathi :- संगणक Hindi :- कंप्यूटर Punjabi :-ਕੰਪਿਊਟਰ Urdu :- کمپیوٹ  Polish :-komputer Swedish :-dator Russian :-компьютер Hungarian :-számítógép Kannada :-ಗಣಕಯಂತ್ರ Tamil :- கம்ப்யூட்டர்  Malay :-komputer Gujarati:-કમ્પ્યુટર Serbian :-рачунар Filipino:- computer Computer word  translated in other languages are as above. Definition of computer An electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program.

Short description of CS

Computer science deals with the theoretical foundations of information and computation, together with practical techniques for the implementation and application of these foundations Computer Science (abbreviated CS or CompSci) is the scientific and practical approach to computation and its applications. It is the systematic study of the feasibility, structure, expression, and mechanization of the methodical processes (or algorithms) that underlie the acquisition, representation, processing, storage, communication of, and access to information, whether such information is encoded as bits in a computer memory or transcribed in genes and protein structures in a human cell. History: The earliest foundations of what would become computer science predate the invention of the modern digital computer. Machines for calculating fixed numerical tasks such as the abacus have existed since antiquity, aiding in computations such as multiplication and division. Charles Babbage is credited w...