PALINDROME #include <stdio.h> #include <string.h> int main() { char a[100]‚ b[100]; printf("Enter the string to check if it is a palindrome\n"); gets(a); strcpy(b‚a); strrev(b); if( strcmp(a‚b) == 0 ) printf("Entered
Premium Prime number Natural number Decimal
BCS HIGHER EDUCATION QUALIFICIATIONS BCS Level 4 Certificate in IT April 2010 EXAMINERS’ REPORT Computer and Network Technology This report is for Sections A and B of the paper. It consists of two sections: 1. Overall comments 2. Detailed questions’ report 1. Overall comments As in previous sittings‚ many candidates did not follow instructions and accordingly did not encircle the question numbers at the front of their scripts. Candidates failed to write the question number at the top
Premium Computer Hard disk drive
A PAPER ON Biometrics Submitted By MR. TAPSE PRAVINKUMAR NARSING T.E.(ENTC) Email:- tapse_pravinkumar@rediffmail.com & MR. PHUTANE ONKAR IRAPPA T.E.(ENTC) Email:- onkara88@gmail.com DEPT. OF ELECTRONICS AND TELECOMMUNICATION ENGINEERING
Premium Biometrics
39.what is defined as one subdivision of the operation performed in one clock period. a) T- State b) Instruction Cycle c) Machine Cycle d) All of the above Ans: a 40.At the end of the following code‚ what is the status of the flags. LXI B‚ AEC4H MOV A‚C ADD HLT a) S = 1‚ CY = 0‚ P = 0 ‚ AC = 1 b) S =0 ‚ CY = 1‚ P = 0‚AC = 1 c) S = 0‚ CY = 1‚ P = 0 ‚ AC = 1 d) S = 0‚ CY = 1‚ P = 1 ‚ AC = 1 41.In 8051 micro controller what is the HEX number in the accumulator after the execution of the following code
Premium
Business Telecom Strategy & Applications I Chapter 1 Introduction to Data Communications ISM6222 Copyright 2011 John Wiley & Sons‚ Inc Course Overview INSTRUCTOR Name: Young Kwark Office: 347 STZ E-mail: youngkwark@ufl.edu Subject: ISM6222 Office hours: Wed 10am–noon or by appointment Class Website: http://lss.at.ufl.edu Sakai System Log in with your Gatorlink id and password Course Overview • Grading Policy Group Project Individual/Group
Premium OSI model Computer network Internet Protocol Suite
C Programming Tutorial C PROGRAMMING TUTORIAL Simply Easy Learning by tutorialspoint.com tutorialspoint.com i COPYRIGHT & DISCLAIMER NOTICE All the content and graphics on this tutorial are the property of tutorialspoint.com. Any content from tutorialspoint.com or this tutorial may not be redistributed or reproduced in any way‚ shape‚ or form without the written permission of tutorialspoint.com. Failure to do so is a violation of copyright laws. This tutorial may contain inaccuracies
Free Programming language Source code
information 2 Introduction to electronic communication systems 2.1 Basic electronic components‚ symbols and circuits Components of an electronic ( or electrical) circuit Any electrical circuit consists if three (3) basic parts Energy source - converts non-electric energy into energy. Examples are batteries and generators. Output device - uses electric energy to do work. Examples are motor‚ lamp‚ or display. Connection - allows electric current to flow. Examples are wire and cable. [pic]
Premium Electricity Electrical engineering Alternating current
How many bits are in a gigabyte? | 1 billion | How many bits are in a megabyte? | 1 million | Convert 00101010 to decimal. | 42 | What is the difference between a sector and a track? | A sector is part of a track | How many bits are in one hexadecimal digit? | 4 | How are voice communications converted to digital signals? | Audio is sampled at a high rate which is converted to binary numbers | What does it mean to compress a video file? | To decrease file size | In this url‚ http://www
Premium Ethernet Computer network Address Resolution Protocol
During these projects I worked together with a group of colleagues which instilled in me a sense of responsibility and team work. We started our first project with a small application which is the NUMBER SYSTEM CONVERTER which converts the numbers from binary to octal‚ octal to hexa and vice versa. ONLINE VOTING SYSTEM‚ a web based application was our 2nd project. Rigging during election‚ inadequate polling stations and materials are some of the perpetual problems which made us think and convinced
Premium Computer Software engineering Computer science
Write a C++ program to find the area and volume of sphere. Formulas are: 5. Area = 4*PI*R*R Volume = 4/3*PI*R*R*R. 6. Write a C++ program to print the multiply value of two accepted numbers 7. Write a C++ program to convert centigrade into Fahrenheit. Formula: C= (F-32)/1.8. 8. Write a C++ program that declares 5 integers‚ determines and prints the largest and smallest in the group. 9. Write a C++ program that declares
Premium Object-oriented programming Subroutine