| Question: |
After the successfull completion of this course, will I be able to make my own Web pages and host them on the net ? |
| Answer: |
Yes after the completion of this course student will be able to make simple static web pages and host them on the net |
|
| Question: |
What is hardware? |
| Answer: |
Everything in a computing environment that has physical attributes, like, it carries weight, has definite shape and is touchable, is called hardware. e.g. Monitor, Keyboard, CPU, printer, mouse etc. are all hardware. |
|
| Question: |
Why we use micro-controller instead of microprocessor? |
| Answer: |
The Micro-controllers are designed to perform some specific tasks. Unlike microprocessors they cannot operate independently because they do not have RAM of their own. Micro-controllers are embedded as part of various devices/equipment e.g. Micro Wave Ovens, Televisions, Air conditioners, security systems etc. Microprocessor is an integrated circuit that has three major portions: 1) Arithmetic Unit 2) Control Unit 3) Data Bus/Registers and is capable of performing tasks independently. |
|
| Question: |
How much the storage capacity of a punch card has? |
| Answer: |
The punch cards used for the storage of data of different type and there storage capacity is different with respect to the kind of data store in them the normally store capacity was 1000 words of 50 decimal digits used to hold variables and results. |
|
| Question: |
What is a word processor? |
| Answer: |
A program used to create, format, modify, save for later use and print documents. The key advantage of word processor is its ability to make changes easily, such as correcting spelling, changing margins, or adding, deleting, and relocating entire blocks of text. Once created, the document can be printed quickly and accurately and saved for later modifications. |
|
| Question: |
Why Internet Explorer & Netscape Navigator are available for free? |
| Answer: |
Initially Netscape Navigator was not free but ever since the Internet Explorer was launched by Microsoft, it is provided free with different products like Windows , MSOffice etc. forcing manufacturers of Netscape to distribute it free of cost. This was also a strategic move to break the market of Netscape Navigator. While Netscape was maturer in technology as well as stable in performance but due to free availability, the Internet Explorer gained a lot of popularity. |
|
| Question: |
How do I know that my email has been received? |
| Answer: |
When using any email client to send and receive email messages, there is an option, which is used to have confirmation of email delivery/reading. That is when the user receives the email, a confirmation mail is sent back to the sender. Certain other email clients can also be configured to send a message even when the message is displayed on the screen of the recepient's computer. |
|
| Question: |
Why Multiple processors are used in Super Computers? |
| Answer: |
One very powerful processor is a lot more expensive than thousands of small processors. Multiple processors running in parallel can perform tasks as efficiently as the single most powerful chip available, but at a lot less cost. Hence it is very economical to use multiple smaller processors working in parallel than a single powerful processor in supercomputers. |
|
| Question: |
What is the Capacity of Cache memory? |
| Answer: |
There are two types of cache. Internal & external. The capacity of internal as well as external cache varies from processor to processor i.e. Intel P-III 1 GHz has cache memory of size 512 KB and Intel Celeron 1GHz processor has cache memory varying from 128 to 256 KB. |
|
| Question: |
Classify the different types of memory. |
| Answer: |
1. Main memory (usually RAM: Random Access Memory) 2. ROM (Read Only Memory used to hold BIOS (Basic Input Output System)) 3. Cache Memory (on both board & processor) 4. Virtual memory(RAM on disk) (Note: Keep the difference between memory and storage in mind.) |
|
| Question: |
What is Virtual memory? |
| Answer: |
A part of disk storage can be made to behave like RAM. This is known as Virtual Memory. When a file or program is too big for the computer to work with in its memory, part of the data is stored on disk. This virtual storage is divided into segments called pages; each page is correlated with a location in physical memory, or RAM. When a page, which is not currently in the main memory, is referenced, it is swapped into memory and is sent back to disk when other pages must be called and loaded into main memory in place of the old one. The program runs as if all the data is in memory. |
|
| Question: |
What is Bus? |
| Answer: |
A set of conductors, which connect the functional units in a computer. It is called a bus because it travels to all destinations (Actually it is like a network of connected roads used by data to travel from one part to another). There are local buses that connect elements within the CPU and buses which connect the computer to external memory and peripherals. The bus width determines the speed of data transmission. Most personal computers use 32-bit buses both internally and externally. Internal buses are configured in parallel; there are also serial busses between computers in networks (usually). |
|
| Question: |
What is Batch Processing Computer System? |
| Answer: |
A system that takes a set (a "batch") of commands or jobs, executes them and returns the results, all without human intervention. This contrasts with an interactive system where the user's commands and the computer's responses are interleaved during a single run. |
|
| Question: |
What is a good online resource for the early learners of JavaScript? |
| Answer: |
Beginners can benefit from the following web-site for Learning JavaScript: http://www.w3schools.com/js/default.asp |
|
| Question: |
What is the purpose of attribute "Action" in "Form" Tag ? |
| Answer: |
The “Action” attribute specify the file that takes action against the form submission. Infact the value of "Action" attribute in "Form" tag is always a URL(Uniform Resource Locator). This URL represents path of that file which has to take some action when u submit your form. For example, When u fill ur form for email address on free email services ( like Yahoo or Hotmail ) , and press "submit" button,u r given error if u have missed any field and congratulated if u have done well, that all validation is done by that file whose URL is given in that form's Action attribute. |
|
| Question: |
What is difference b/w JavaScript,JScript and HTML ? |
| Answer: |
JavaScript is a platform-independent, event-driven, interpreted programming language developed by Netscape Communications Corp. and Sun Microsystems.JavaScript is useful for adding interactivity to the World Wide Web because scripts can be embedded in HTML files (i.e., web pages) simply by enclosing code in a tag pair. All modern browsers can interpret JavaScript -- albeit with some irritating caveats. (More about them below.).In practice, JavaScript is a fairly universal extension to HTML that can enhance the user experience through event handling and client-side execution, while extending a web developer's control over the client's browser. JScript is approx. same except it is from Microsoft Corporation. HTML stands for the HyperText Markup Language. HTML is the major language of the Internet's World Wide Web. Web sites and web pages are written in HTML. With HTML and the world wide web, you have the ability to bring together text, pictures, sounds, and links... all in one place! HTML files are plain text files, so they can be composed and edited on any type of computer... Windows, Mac, UNIX, whatever. |
|
|
| Question: |
What are Literals ? |
| Answer: |
Literals are simply literally-written things, like a number or a string of characters. Numbers are, in turn, treated as either integers (1,2,3, ....) or real (12.3, 5.21e23, ....) depending on how they are written. Strings, or String literals are surrounded by quotation marks (either single quotes or double quotes). For example Example:: In example, x=12345 12345 is literal (integer) In eg, x=12.43 12.43 is literal (real) In eg, Var x = y*5.21e4 5.21e4 is literal (real) In eg , var string ='that' "that" is literal String In eg, var answer = true; true is literal Boolean For string literals, you need special sequences to type to enter things like carriage returns, tabs, etc. These are listed in a separate document. |
|
| Question: |
What about machine cycle? |
| Answer: |
Machine cycle is a set of four basic operations repeated by the control unit 1. fetching an instruction 2. decoding the instruction 3. executing the instruction and if necessary 4. storing the result. The time it takes to fetch is called instruction time, or f-time, and the time it take to decode and execute is called execution time or E-time. Adding together f-time and E-time gives the total time required for a machine cycle. The machine cycle is also called the instruction cycle. |
|
| Question: |
What is Reduced Instruction Set Computing(RISC)? |
| Answer: |
Acronym for reduced instruction set computers. A microprocessor design that focuses on rapid and efficient processing of a relatively small set of simple instructions that comprises most of the instructions a computer decodes and executes. RISC architecture optimizes each of these instructions so that it can be carried out very rapidly—usually within a single clock cycle. RISC chips thus execute simple instructions more quickly than general-purpose CISC (complex instruction set computers) microprocessors, which are designed to handle a much wider array of instructions. They are, however, slower than CISC chips at executing complex instructions, which must be broken down into many machine instructions that RISC microprocessors can perform. |
|
| Question: |
Diffirence Between Fragmentation and Defragmentatoin? |
| Answer: |
In fragmentation parts of a file that have become fragmented through rewriting and updating. A defragger physically restores the file to contiguous sectors on a hard disk to speed up access as much as 75 percent. This is also called process of defragmentation or "defragging;" |
|
| Question: |
What is the distinguish between Parallel Tracks and Diagnol Tracks ? |
| Answer: |
A tape storage scheme that places data on more than one separate parallel tracks on 1/2-inch reel-to-reel magnetic tape. This is an old recording format used with computers that transfer data six bits at a time. Data is recorded as 6 data bits and 1 parity bit (An extra bit used in checking for errors in groups of data bits transferred within or between computer systems.). Some personal computers now use the 9-track tape storage scheme. Diagonal is one of numerous circular data storage areas on a floppy disk or a hard drive, comparable to a groove on a record but not spiral. Tracks, composed of sectors, are recorded on a disk by an operating system during a disk format operation. |
|
| Question: |
Explain the Diffirence between Transactional Processing and Real Time Processing |
| Answer: |
Real time processing that process information at the same rate as they receive data, enabling them to direct or control a process. Transaction processing is a processing method in which transactions are executed immediately after they are received by the system. Transanction processing and real time processing is almost the same thing. |
|
| Question: |
what is the difference between World wide web and the internet? |
| Answer: |
Internet is a type of network and it is a net of networks that connects computers around the world. OR. A set of computer networks that may be dissimilar and are joined together by means of gateways that handle data transfer and conversion of messages from the sending networks' protocols to those of the receiving network. WWW (world wide web) is a technology and is defined as the total set of interlinked hypertext documents residing on HTTP servers all around the world. Documents on the World Wide Web, called pages or Web pages, are written in HTML (Hypertext Markup Language), by identified by URLs (Uniform Resource Locators) that specify the particular machine and pathname by which a file can be accessed, and transmitted from node to node to the end user under HTTP (Hypertext Transfer Protocol). Codes, called tags, embedded in an HTML document associate particular words and images in the document with URLs so that a user can access another file, which may be halfway around the world, at the press of a key or the click of a mouse. These files may contain text (in a variety of fonts and styles), graphics images, movie files, sounds, and Java applets, or other small embedded software programs that execute when a Web page is accessed or when the user activates them by clicking on a link. A user visiting a Web page also may be able to download files from an FTP site and send messages to other users via e-mail by using links on the Web page. The World Wide Web was developed by Timothy Berners-Lee in 1989 for the European Laboratory for Particle Physics (CERN). |
|
| Question: |
What is event handling in web page? |
| Answer: |
To understand the event handling first we have to know what is event. Clicking the button, then, is an event. In fact, it is an event named "Click"! A whole category of events was defined based on actions that the user might take; for instance, the Change event will trigger when the user selects an item in a drop down menu (a select object) or the Submit event triggers when the user submits a form. Each event applies to certain elements on the page and some events could apply to multiple elements: the Change event only applies to a drop down menu but the Click event applies to a button and a hyperlink. Now for each event the java script take some action to handle the event, The basic syntax of these event handlers is: name_of_handler="JavaScript code here" For example: onClick="alert('hello!')" For more information read your book or visit the web site http://www.tstc.edu/~rpursley/javaprog/mice.html http://wdvl.internet.com/Authoring/JavaScript/Events/ http://www.javascriptkit.com/javatutors/event1.shtml |
|
| Question: |
what is Micro-Controller? |
| Answer: |
A microcontroller is a complete computer on a chip but it does not contain large amounts of memory. They have their own processor and low memory. Microcontrollers are used in video games, videocassette recorders (VCRs), and automobiles. |
|
| Question: |
What is Main Memory Bottleneck and Bus? |
| Answer: |
Modern super-fast microprocessors can process a huge amount of data in a short duration so they require quick access to data to maximize their performance, If they don’t receive the data that they require, they literally stop and wait – this results in reduced performance and wasted power and this is called main memory bottle neck and this bottle neck can be solved by putting the small amount of memory within the processor which is called cache memory which store data from the main memory which is being used in near future to avoid the main memory bottle neck. Buses are the set of hardware lines (conductors) used for data transfer among the components of a computer system. A bus is essentially a shared highway that connects different parts of the system—including the microprocessor, disk-drive controller, memory, and input/output ports—and enables them to transfer information. The bus consists of specialized groups of lines that carry different types of information. One group of lines carries data; another carries memory addresses (locations) where data items are to be found; yet another carries control signals. Buses are characterized by the number of bits they can transfer at a single time, equivalent to the number of wires within the bus. A computer with a 32-bit address bus and a 16-bit data bus, for example, can transfer 16 bits of data at a time from any of 232 memory locations. Most microcomputers contain one or more expansion slots into which additional boards can be plugged to connect them to the bus |
|
| Question: |
What are Embeded Computers? Do they have all the parts of hardware that normal PCs have? |
| Answer: |
Embedded Computers are infact small chips which are programmed to do some specific task like Microprocessor of a PC. Examples include SIMs of Mobile sets,chips in machines of daily life usage etc.These dont contain all those parts that a simple PC has. |
|
| Question: |
what is the purpose of transistor? |
| Answer: |
The transistor, invented by three scientists at the Bell Laboratories in 1947, rapidly replaced the vacuum tube as an electronic signal regulator. A transistor regulates current or voltage flow and acts as a switch or gate for electronic signals. |
|
| Question: |
What is the true definition of Computer.Is computer a device or an electronic machine? |
| Answer: |
A lot of definitions are there for computers. Here are some simple definitions. 1)A device that accepts data, processes the data in accordance with a stored program, generates results, and usually consists of input, output, storage, arithmetic, logic, and control units. 2) A functional unit that can perform substantial computation, including numerous arithmetic operations or logic operations, without human intervention during a run. |
|
| Question: |
Please explain the Turning Machine in a bit detail. How did it play part in evolution of computer |
| Answer: |
It was introduced by Alan Turing in 1936, Turing machines are one of the key abstractions used in modern computability theory, the study of what computers can and cannot do. A Turing machine is a particularly simple kind of computer, one whose operations are limited to reading and writing symbols on a tape, or moving along the tape to the left or right. The tape is marked off into squares, each of which can be filled with at most one symbol. At any given point in its operation, the Turing machine can only read or write on one of these squares, the square located directly below its "read/write" head. |
|
| Question: |
What is the difference b/w network and internet? |
| Answer: |
Two or more computers connected to communicate with each other form a network. The Internet, sometimes called simply "the Net," is a worldwide system of computer networks - a network of networks in which users at any one computer can, if they have permission, get information from any other computer (and sometimes talk directly to users at other computers). |
|
| Question: |
Describe the Domain, Domain name & Protocol. |
| Answer: |
1) In general, a domain is an area of control or a sphere of knowledge. 2) On the Internet, a domain consists of a set of network addresses. This domain is organized in levels. The top level identifies geographic or purpose commonality (for example, the nation that the domain covers or a category such as "commercial"). The second level identifies a unique place within the top level domain and is, in fact, equivalent to a unique address on the Internet (an IP address). Lower levels of domain may also be used. 3) Protocols are the set of rules followed by the computers during communication. |
|
| Question: |
What is the different between HYPERLINK and HYPER MEDIA? |
| Answer: |
Essentially, hypermedia is the modern extension of hypertext, the hyperlinked, text–based documents of the original Internet. Hypermedia attempts to offer a working and learning environment that parallels human thinking—that is, one in which the user can make associations between topics, rather than move sequentially from one to the next, as in an alphabetic list. An image or portion of text on a Web page that is linked to another Web page, either on the same site or in another Web site is called Hyperlink. via email means through email. |
|
| Question: |
What is URL? |
| Answer: |
When a user enters a Uniform Resource Locator (URL) in a browser, he/she is sending an HTTP command to the web server directing it to retrieve and transmit the requested document. A URL is the global address of a web site. The first part of the address (i.e., http://) indicates which protocol is to be used. The second part specifies the IP address (i.e., http://www.ectag.org), which identifies the unique server assigned to the domain name (URL). The final part tells the server where the document or resource is located on the server. |
|
| Question: |
What is working of Firewire in computing? |
| Answer: |
With more than 30 times the bandwidth of the popular USB 1.1 peripheral standard, FireWire 400 has been the gold standard for high-speed data transfer. Apple was the first computer manufacturer to include Fire Wire across its entire product line. And now Apple has upped the ante yet again, effectively doubling data throughput with its implementation of the IEEE 1394b standard, FireWire 800, available on the 17-inch PowerBook G4 and the Power Mac G4. FireWire is a way to connect different pieces of equipment so they can easily and quickly share information. FireWire is very similar to Universal Serial Bus (USB). The designers of FireWire, which actually precedes the development of USB, had several particular goals in mind when they created the standard: Fast transfer of data (up to 400 Mbps) Lots of devices on the bus Ease of use Hot pluggable Provide power through the cable Plug-and-play Low cabling cost Low implementation cost |
|
| Question: |
How can I add sound effects in my presentation? |
| Answer: |
You select the object on which you want to have a sound effect and then right click and you will see an option "Action Settings" ,click on it and then select a sound from list given. |
|
| Question: |
Tell me about PowerPoint(PP),which is the part of Multimedia.Would you compare it with other Multimedia like flash? |
| Answer: |
PowerPoint (PP) is intended to produce desktop presentations (e.g., driving a slide Projector) or to produce actual film slides (using a film recorder); it is Not a tool for Web presentations. If you have a lot of presentations already In PP, you may be forced to try its HTML export features, may have problems with the resulting HTML (large file sizes, lots of garbage tags, poor image quality). If you're fortunate enough to be starting from scratch, you're better to stick with a tool designed and optimized specifically for the Web. Flash is used to prepare presentations, games, animations so it is much powerful tool than Microsoft PowerPoint. |
|
| Question: |
What is the difference between the Mainframe computer and the Super computer? |
| Answer: |
A supercomputer is a computer that performs at or near the currently highest operational rate for computers. A supercomputer is typically used for scientific and engineering applications that must handle very large databases or do a great amount of computation (or both). At any given time, there are usually a few well-publicized supercomputers that operate at the very latest and always incredible speeds. Mainframe computer is a very large and expensive computer capable of supporting hundreds, or even thousands, of users simultaneously. In the hierarchy that starts with a simple microprocessor (in watches, for example) at the bottom and moves to supercomputers at the top, mainframes are just below supercomputers. In some ways, mainframes are more powerful than supercomputers because they support more simultaneous programs. But supercomputers can execute a single program faster than a mainframe. |
|
| Question: |
Let me know about BUS & Modem. |
| Answer: |
Modem is output as well as input device at the same time. It receives the data (analog signal) coming through telephone line, converts them to digital signals and sends them to computer to which it is attached. It also receives the data from computer and changes it to analog signals. In general, the term is used in two somewhat different contexts: (1) A bus is a network topology or circuit arrangement in which all devices are attached to a line directly and all signals pass through each of the devices. Each device has a unique identity and can recognize those signals intended for it. (2) In a computer, a bus is the data path on the computer's motherboard that interconnects the microprocessor with attachments to the motherboard in expansion slots (such as hard disk drives, CD-ROM drives, and graphics adapters). |
|
| Question: |
What is the main difference between VCD and DVD? |
| Answer: |
DVD (digital versatile disc) is an optical disc technology that is expected to rapidly replace the CD-ROM disc (as well as the audio compact disc) over the next few years. The digital versatile disc (DVD) holds 4.7 gigabyte of information on one of its two sides, or enough for a 133-minute movie. VCD (also called video CD, video compact disc or "disc") is a compact disk format based on CD-ROM XA that is specifically designed to hold MPEG-1 video data. VCD resolution is far short of the resolution of DVD. Each VCD disk holds 72-74 minutes of video and has a data transfer rate of 1.44 Mbps. |
|
| Question: |
How does heat sink works? |
| Answer: |
Heat Sink takes the heat from Microprocessor and spreads it in the environment so heat is not gathered over Processor. |
|
| Question: |
What is USB port? |
| Answer: |
USB (Universal Serial Bus) Universal Serial Bus is a relatively new connector that was meant to replace Serial and Parallel ports. Its a flat, keyed connector with four contacts that was designed for mid-speed peripherals such as scanners, keyboards, mice, joysticks, printers, modems and some CD-ROMs. USB is unique in that it is completely hot-swappable. In other words, you can plug it in or unplug it while the computer is on. Your computer should recognize it as soon as its plugged in, and you should have use of the device immediately. USB allows you to daisy-chain up to 127 devices. This means that you could have a joystick plugged in, with a printer plugged into that, and a scanner plugged into the printer, etc... |
|
| Question: |
What are Robotics? |
| Answer: |
Automatic machines that perform various tasks that were previously done by humans. Example: –Pilot-less combat airplanes –Land-mine hunters –Autonomous vacuum-cleaners |
|
| Question: |
Differentiate among HTML, DHTML, and JavaScript |
| Answer: |
HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page. The markup tells the Web browser how to display a Web page's words and images for the user. Each individual markup code is referred to as an element (but many people also refer to it as a tag). Some elements come in pairs that indicate when some display effect is to begin and when it is to end. Dynamic HTML is a collective term for a combination of new Hypertext Markup Language (HTML) tags and options that will let you create Web pages more animated and more responsive to user interaction than previous versions of HTML. Much of dynamic HTML is specified in HTML 4.0. Simple examples of dynamic HTML pages would include (1) having the color of a text heading change when a user passes a mouse over it or (2) allowing a user to "drag and drop" an image to another place on a Web page. Dynamic HTML can allow Web documents to look and act like desktop applications or multimedia productions. JavaScript is an interpreted programming or script language from Netscape. JavaScript is used in Web site development to do such things as: 1) Automatically change a formatted date on a Web page 2) Cause a linked-to page to appear in a popup window 3) Cause text or a graphic image to change during a mouse rollover |
|
| Question: |
What does FPU mean? |
| Answer: |
A floating point unit (FPU), also known as a numeric coprocessor, is a microprocessor or special circuitry in a more general microprocessor that manipulates numbers more quickly than the basic microprocessor your computer uses. It does so by having a special set of instructions that focus entirely on large mathematical operations. A floating point unit is often built into today's personal computers, but it is needed only for special applications such as graphic image processing or display. Personal computers that don't have floating point units can sometimes handle software that requires them by installing a floating point emulator. |
|
| Question: |
Is Micro-controller resembles with ROM? |
| Answer: |
ROM means that the instructions inside that chip is only readable, it can not be modified. So in this sense these microcontrollers are ROM. Otherwise Microcontrollers are just as Microprocessors. |
|
| Question: |
I have confusion about open source and firmware. |
| Answer: |
Open Source Software’s are available with their source code. Many are available on internet, for example, very famous Operating System LINUX is open source i.e. its source is available. Firmware is software embedded in the chips, for example, Programs in BIOS etc. |
|
| Question: |
Tell me about interface? |
| Answer: |
Interface is the point of interaction or communication between a computer and any other entity, such as a printer or human operator. |
|
| Question: |
What is "Kernel"? Give me some suitable example. |
| Answer: |
The kernel is the essential center of a computer operating system, the core that provides basic services for all other parts of the operating system. A synonym is nucleus. A kernel can be contrasted with a shell, the outermost part of an operating system that interacts with user commands. Kernel and shell are terms used more frequently in Unix operating systems than in IBM mainframe or Microsoft Windows systems. Typically, a kernel (or any comparable center of an operating system) includes an interrupt handler that handles all requests or completed I/O operations that compete for the kernel's services, a scheduler that determines which programs share the kernel's processing time in what order, and a supervisor that actually gives use of the computer to each process when it is scheduled. A kernel may also include a manager of the operating system's address spaces in memory or storage, sharing these among all components and other users of the kernel's services. |
|
| Question: |
Tell me about Processor Management and some simple example. |
| Answer: |
The heart of managing the processor comes down to two related issues: 1) Ensuring that each process and application receives enough of the processor's time to function properly. 2) Using as many processor cycles for real work as is possible |
|
| Question: |
What are MVS & VMS? |
| Answer: |
MVS is an operating system for mainframe computers. Both VMS and MVS are multi-user operating systems. |
|
| Question: |
What is the meaning of GUI-based? |
| Answer: |
GUI (Graphical User Interface) based system facilitates the user to interact with computer graphically like use of windows. |
|
| Question: |
Tell me about the bit-mapped or raster images. |
| Answer: |
A bitmapped image file contains a rectangular map of the image's pixels (bits) where each pixel is located, and what color it is. A bitmapped image can contain a specific maximum number of colors, depending on how much file space is allocated for the color data: 256 colors for an 8-bit image, 65+ thousand for a 16-bit image, and 16+ million colors for a 24-bit image. Not surprisingly, the larger the number of colors, the larger the file size. A raster image file is generally defined to be a rectangular array of regularly sampled values, known as pixels. Each pixel (picture element) has one or more numbers associated with it, generally specifying a color which the pixel should be displayed in. |
|
| Question: |
What is word processing and desktop top publishing? |
| Answer: |
The art and science of converting written information into a form that looks pleasing when printed is called Word Processing. A combination of word processing and graphic design is called Desktop Publishing. Used to develop elegant documents –Examples: •Adobe PageMaker •Quark Press •Corel Ventura •MS Publisher |
|
| Question: |
What is the difference between java & java script? |
| Answer: |
Java is a programming language expressly designed for use in the distributed environment of the Internet. It was designed to have the "look and feel" of the C++ language, but it is simpler to use than C++ and enforces an object-oriented programming model. Java can be used to create complete applications that may run on a single computer or be distributed among servers and clients in a network. It can also be used to build a small application module or applet for use as part of a Web page. Applets make it possible for a Web page user to interact with the page. JavaScript is an interpreted programming or script language from Netscape. In general, script languages are easier and faster to code in than the more structured and compiled languages such as C and C++. Script languages generally take longer to process than compiled languages, but are very useful for shorter programs. JavaScript is used in Web site development to do such things as: 1) Automatically change a formatted date on a Web page 2) Cause a linked-to page to appear in a popup window 3) Cause text or a graphic image to change during a mouse rollover |
|
| Question: |
What is the difference between "Object based Language" and "Object Oriented Language"? |
| Answer: |
Object oriented language supports inheritance, polymorphism etc, while object based don't. Object based languages use objects having their attributes / properties which can be modified according to our requirements. |
|
| Question: |
What is the difference b/w "Programming" & "Scripting"? |
| Answer: |
Computer programming is a term to develop programs using some programming language. Computer Programming which makes the site work called script/programs which for example: call data from databases; make mailing systems work and control the content of the site. |
|
| Question: |
I could not understand the execution of code in languages. |
| Answer: |
A program or software is developed by writing the code using some programming language, when completed then executed (to perform what is required) to test / implement that program or software. |
|
| Question: |
What is the meaning of integration testing? |
| Answer: |
Integration testing is a logical extension of unit testing. In its simplest form, two units that have already been tested are combined into a component and the interface between them is tested. A component, in this sense, refers to an integrated aggregate of more than one unit. In a realistic scenario, many units are combined into components, which are in turn aggregated into even larger parts of the program. The idea is to test combinations of pieces and eventually expand the process to test your modules with those of other groups. |
|
| Question: |
Who was first programmer of the computer,and what progamme does he desigened? |
| Answer: |
World's first programmer was Ada Byron who write a program for Analytical engine of Babbage. |
|
| Question: |
Why JavaScript variables are dynamically typed? |
| Answer: |
Dynamically |
|