PPT-2011 Test No 11 FM:- 45. Aptitude

Size: px
Start display at page:

Download "PPT-2011 Test No 11 FM:- 45. Aptitude"

Transcription

1 PPT-2011 Test No 11 FM:- 45 Aptitude 1. If 13 = 13w/(1-w),then (2w) 2 =? A.1/4 B.1/2 C.1 D.2 2. If a and b are positive integers and (a-b)/3.5 = 4/7, then A. b < a B. b > a C. b = a D. b >= a 3. If 9x-3y=12 and 3x-5y=7 then 6x-2y =? A.-5 B. 4 C. 2 D What is the selling price of a car? If the cost of the car is Rs.60 and a profit of 10% over selling price is earned. A. 60 B.65 C.66 D If p/q = 5/4, then 2p+q=? A.5/4 B.5/2 C.7/4 D.7/2 6. To 15 lts of water containing 20% alcohol, we add 5 lts of pure water. What is % alcohol. A.10% B.15% C.20% D.25% 7. Which of the following fractions is less than 1/3 A.22/62 B. 15/46 C. 2/3 D.1 8. Find (7x + 4y ) / (x-2y) if x/2y = 3/2? A. 6 B. 8 C. 7 D. data insufficient 9. In simple interest what sum amounts of Rs.1120/- in 4 years and Rs.1200/- in 5 years? A. Rs. 500 B. Rs. 600 C. Rs. 800 D. Rs x% of y is y% of? A. x/y B. x C. 2y D. can't be determined 11. What is the smallest number by which 2880 must be divided in order to make it into a perfect square? A. 3 B. 4 C. 5 D A simple interest amount of rs 5000 for six month is rs 200. what is the anual rate of interest? A. 6% B.8% C. 9% D. 10% 13. In objective test a correct ans score 4 marks and on a wrong ans 2 marks are ---. a student score 480 marks from 150 question. how many ans were correct? A. 120 B. 130 C. 110 D An artical sold at amount of 50% the net sale price is rs 425.what is the list price of the artical? A. 500 B. 488 C. 480 D What is the angle between the two hands of a clock when time is 8:30? A.30 B.45 C.75 D A man shows his friend a woman sitting in a park and says that she the daughter of my grandmother's only son. What is the relation between the two? A. daughter B. sister C. mother D. grandmother

2 17. Successive discounts of 20% and 15% are equal to a single discount of A. 30% B. 32% C. 34% D. 35% 18. What is the sum of the first 25 natural odd numbers? A. 600 B. 625 C.650 D men take 21 days of 8 hrs. each to do a piece of work. How many days of 6 hrs. each would it take for 21 women if 3 women do as much work as 2 men? A. 30 B. 20 C. 19 D Find the odd man out. 3,5,7,12,13,17,19 A. 3 B.12 C.13 D.19 Reasoning Directions: Questions 1-6 are based on the following coding patterns: If 'EFGHIK' are coded letters representing VUTSRQP, choose the right code for the word given in capital letters from the answer choices(a-e) given under each 1. LIMIT a)knrnc b)ornrg c)jkokg d)rstsg e)mhlhs 2. SOUR a)iflt b)hlfi c)lift d)ihif e)flti 3. POCKET a)klxpuc b)klxupg c)klxgup d)klxvpg e)klxpvg 4. GROUP a)tilfk b)tilel c)tilgh d)tilhg e)tfgfk 5. HIGH a) STRS b)rjhr c)glog d)rstr e)srts 6. ZERO a)buhn b)avim c)avil d)autl e)avti 7. If OVER is coded as QYIW and UP as WS, then STAR is coded as a)uwev b)uwdv c)uvbs d)uwew e)uwex 8.In a certain code DELHI is written as CDKGH and MADRAS is written as IZCWZR, then how will you code PATNA? a)oztmz b)ozsmb c)qbumb d)oztzm e)ozmsz 9. If FIRE is coded for a secret message to be teleprinted as EHQD how is the reply DONE to be relayed? a)dmoe b)cnmd c)dlnc d)dnpe e)dmpe 10. DRIVER = 7 PEDESTRIAN = 11 ACCIDENT =? a) 9 b) 8 c)6 d)18 e) 0 Technical

3 1. main(){printf("\nab"); printf("\bsi"); printf("\rha"); } The output is: 2. What will be the output of the following program : void main() { int a=1,b=2,c=3; scanf("%d %*d %d",&a,&b,&c); printf("a=%d b=%d c=%d",a,b,c); } [NOTE : 3 values entered by the user are: ] a b c d What will be the output of the following program : void main(){ char line[80]; // Max. length=80 Chars scanf("%[^,]s",line); printf("\n%s",line); } [NOTE : THE USER INPUT IS: Dear Friends, What is the output?] a. Compile-Time Error b. Dear Friends c. What is the output d. None of these 4. What will be the output of the following program : void main(){ char a,b,c; scanf("%c %c %c",&a,&b,&c); printf("a=%c b=%c c=%c",a,b,c);} [NOTE : THE USER INPUT IS :ABC DEF GHI] a. a=abc b=def c=ghi b. a=a b=b c=c c. a=a b=d c=g d. None of these 5. We want to write a function minprintf that would take variable number of arguments, which standard library header file (i.e.,.h file) needs to be included for that? 6. Is the char array a valid string? char str={ H, e, l, l, o };? <Yes/No>

4 7. What is the output of the following program. int main(void){ char mystr[60]="one " "World!\n"; printf("%s",mystr);} 8. What is the output of the following program. main(){ printf(5+"bhubaneswar"); } 9. What is the output of the following program. main(){printf("%c","bhubaneswar"[4]);} 10. What is the output of the following program. void main(){ printf("one\n%s\nthree","four"); } 11. What is the output of the following program. void main(){ printf("%d",sizeof("\apple")); } 12. What is the output of the following program. #define ABC 20 #define XYZ 10 #define XXX ABC - XYZ void main(){ int a; a = XXX * 10; printf("%d\n", a);} 13. What is the output of the following program. #define HELLO Hi main(){ printf("hello"); } 14. If x=10 and m=5, what is the value of x after evaluating x*=m+2? 15. main( ){ int x,y, z; x=2; y=5; z= x+++y; printf("%d %d %d", x, y,z);} What is the output?:

5 Answar Question Answar Aptitude Reasoning Technical Questi on Answar Question Answer Q1 C: 1 Q1 b Q1 hai Q2 A: b<a Q2 b Q2 d Q3 D: 18.5 Q3 e Q3 b Q4 C: 66 Q4 a Q4 b Q5 Q5 e Q5 Q6 B: 15% Q6 d Q6 No Q7 B: 15/46 Q7 d Q7 One World Q8 D: Datainsuffient Q8 a Q8 neswar Q9 C: Rs 800 Q9 b Q9 a Q10 B: x Q10 a Q10 one four three Q11 C: 5 Q11 Q11 6 Q12 B: 8% Q12 Q12 80 Q13 B: 130 Q13 Q13 hello Q14 Q14 Q14 70 Q15 B: 75 Q15 Q Q16 B: Sister Q16 Q16 Q17 B: 32 Q17 Q17 Q18 Q18 Q18 Q19 A: 30 Q19 Q19 Q20 B: 12 Q20 Q20

6

7

Latest R Systems Placement Test Questions

Latest R Systems Placement Test Questions APTITUDE: Q1. At a special sale, 5 tickets can be purchased for the price of 3 tickets. If 5 tickets are purchased at the sale, the amount saved will be what percent of the original price of the 5 tickets?

More information

VARIABLE, OPERATOR AND EXPRESSION [SET 1]

VARIABLE, OPERATOR AND EXPRESSION [SET 1] VARIABLE, OPERATOR AND EXPRESSION Question 1 Write a program to print HELLO WORLD on screen. Write a program to display the following output using a single cout statement. Subject Marks Mathematics 90

More information

The Hyderabad Public School, Begumpet, Hyderabad, A.P

The Hyderabad Public School, Begumpet, Hyderabad, A.P The Hyderabad Public School, Begumpet, Hyderabad, A.P. 500 016 2012-13 Department of Computer Science Class 8 Worksheet 3 1) How many times will the following statement execute? ( ) int a=5; while(a>6)

More information

Renault Nissan Placement Paper Part-1

Renault Nissan Placement Paper Part-1 Renault and Nissan interview process Selection process consisted of three rounds 1.Written test 2.Technical interview 3.HR interview Written test had 50 aptitude questions to be solved in 1 hour. Questions

More information

COP 3223 Introduction to Programming with C - Study Union - Fall 2017

COP 3223 Introduction to Programming with C - Study Union - Fall 2017 COP 3223 Introduction to Programming with C - Study Union - Fall 2017 Chris Marsh and Matthew Villegas Contents 1 Code Tracing 2 2 Pass by Value Functions 4 3 Statically Allocated Arrays 5 3.1 One Dimensional.................................

More information

Huawei Test 5. Explanation: P.W. of Rs. 12,880 due 8 months hence=rs. [ (12880*100)/(100+(18*(8/12)))]

Huawei Test 5. Explanation: P.W. of Rs. 12,880 due 8 months hence=rs. [ (12880*100)/(100+(18*(8/12)))] Huawei Test 5 1 A man wants to sell his scooter. There are two offers, one at Rs. 12,000 cash and the other a credit of Rs. 12,880 to be paid after 8 months, money being at 18% per annum. Which is the

More information

Essar Placement Paper

Essar Placement Paper Essar Placement Paper Question 1 The fourth proportional to 5, 8, 15 is: A. 18 B. 24 C. 19 D. 20 Let the fourth proportional to 5, 8, 15 be x. Then, 5 : 8 : 15 : x 5x = (8 x 15) x=(8*15)/5=24 Question

More information

UNC Charlotte 2009 Comprehensive March 9, 2009

UNC Charlotte 2009 Comprehensive March 9, 2009 March 9, 2009. Danica was driving in a 500 mile race. After 250 miles, Danica s average speed was 50 miles per hour. Approximately how fast should Danica drive the second half of the race if she wants

More information

Huawei Test 2. 1 Two dice are thrown simultaneously. What is the probability of getting two numbers whose product is even?

Huawei Test 2. 1 Two dice are thrown simultaneously. What is the probability of getting two numbers whose product is even? Huawei Test 2 1 Two dice are thrown simultaneously. What is the probability of getting two numbers whose product is even? ( )1/ 2 ( )3/4 ( )3/8 ( )5/16 Explanation: In a simultaneous throw of two dice,

More information

COP 3223 Introduction to Programming with C - Study Union - Fall 2017

COP 3223 Introduction to Programming with C - Study Union - Fall 2017 COP 3223 Introduction to Programming with C - Study Union - Fall 2017 Chris Marsh and Matthew Villegas Contents 1 Code Tracing 2 2 Pass by Value Functions 4 3 Statically Allocated Arrays 5 3.1 One Dimensional.................................

More information

Huawei Placement Paper Questions

Huawei Placement Paper Questions 1.Following some pattern, understand the table and find the answer? JANUARY 20 APRIL 10 MAY 5 NOVEMBER 15 JULY? 2. Find the missing number: 1 10 3 9 5 8 7 7 9 6?? 3. If it was two hours later, it would

More information

Page 1. Kobrin/Losquadro Math 8. Unit 10 - Types of Numbers Test Review. Questions 1 and 2 refer to the following:

Page 1. Kobrin/Losquadro Math 8. Unit 10 - Types of Numbers Test Review. Questions 1 and 2 refer to the following: 9195-1 - Page 1 Name: Date: Kobrin/Losquadro Math 8 Unit 10 - Types of Numbers Test Review Questions 1 and 2 refer to the following: Use the number line below to answer the given question. 1) Which of

More information

The Oracle Interview consists of two parts. One for Written test Interview and Another one for HR interview.

The Oracle Interview consists of two parts. One for Written test Interview and Another one for HR interview. Oracle Interview Procedure The Oracle Interview consists of two parts. One for Written test Interview and Another one for HR interview. Written test paper consists of 30 questions. There is No Negative

More information

CAMBRIDGE SCHOOL, NOIDA ASSIGNMENT 1, TOPIC: C++ PROGRAMMING CLASS VIII, COMPUTER SCIENCE

CAMBRIDGE SCHOOL, NOIDA ASSIGNMENT 1, TOPIC: C++ PROGRAMMING CLASS VIII, COMPUTER SCIENCE CAMBRIDGE SCHOOL, NOIDA ASSIGNMENT 1, TOPIC: C++ PROGRAMMING CLASS VIII, COMPUTER SCIENCE a) Mention any 4 characteristic of the object car. Ans name, colour, model number, engine state, power b) What

More information

HCL Aptitude Test a=2, b=3, c=6 Find the value of c/(a+b)-(a+b)/c Ans. 11/30

HCL Aptitude Test a=2, b=3, c=6 Find the value of c/(a+b)-(a+b)/c Ans. 11/30 HCL Aptitude Test 3 1. a=2, b=3, c=6 Find the value of c/(a+b)-(a+b)/c Ans. 11/30 2. What does the hexa number E78 in radix 7. (a) 12455 (b) 14153 (c) 14256 (d) 13541 (e) 131112 Ans. (d) 3. What does the

More information

Previous Year Nagarro Questions

Previous Year Nagarro Questions TECHNICAL QUESTIONS: Q1. Write a function to give demonstrate the functionality of 3D matrix in 1D matirx. Function prototye: void set (int value, int index X, int index Y, int index Z, int [] 1dArray);

More information

I SEMESTER EXAM : : XI :COMPUTER SCIENCE : MAX MARK a) What is the difference between Hardware and Software? Give one example for each.

I SEMESTER EXAM : : XI :COMPUTER SCIENCE : MAX MARK a) What is the difference between Hardware and Software? Give one example for each. I SEMESTER EXAM : : XI :COMPUTER SCIENCE : MAX MARK 70. a) What is the difference between Hardware and Software? Give one example for each. b) Give two differences between primary and secondary memory.

More information

A rectangle has a perimeter of 10 cm and a width of 2 cm. What is the number of square centimeters in its area?

A rectangle has a perimeter of 10 cm and a width of 2 cm. What is the number of square centimeters in its area? 1. cm 2 A rectangle has a perimeter of 10 cm and a width of 2 cm. What is the number of square centimeters in its area? y 2 cm x 2. What is the product of all the positive integer factors of 15? 3. When

More information

Triangle Congruence: SSS

Triangle Congruence: SSS Triangle Congruence: SSS Corresponding sides and corresponding angles of polygons are those that are in the same position in two different polygons with the same number of sides. These corresponding parts

More information

i) Natural numbers: Counting numbers, i.e, 1, 2, 3, 4,. are called natural numbers.

i) Natural numbers: Counting numbers, i.e, 1, 2, 3, 4,. are called natural numbers. Chapter 1 Integers Types of Numbers i) Natural numbers: Counting numbers, i.e, 1, 2, 3, 4,. are called natural numbers. ii) Whole numbers: Counting numbers and 0, i.e., 0, 1, 2, 3, 4, 5,.. are called whole

More information

COP 3223 Introduction to Programming with C - Study Union - Spring 2018

COP 3223 Introduction to Programming with C - Study Union - Spring 2018 COP 3223 Introduction to Programming with C - Study Union - Spring 2018 Chris Marsh and Matthew Villegas Contents 1 Code Tracing 2 2 Pass by Value Functions 4 3 Statically Allocated Arrays 5 3.1 One Dimensional.................................

More information

1. What details should never be found in the top level of a top-down design?

1. What details should never be found in the top level of a top-down design? HCL Placement Paper: 1. What details should never be found in the top level of a top-down design? (a) Details (b) Coding (c) Decisions (d) None of the above Ans. (c) 2. In an absolute loading scheme, which

More information

Section - Computer Science. int main() {! int a=10,b=20;! printf("a:%d B:%d\n",a,b);! a=(a+b)-(b=a);! printf("a:%d B:%d\n",a,b);!

Section - Computer Science. int main() {! int a=10,b=20;! printf(a:%d B:%d\n,a,b);! a=(a+b)-(b=a);! printf(a:%d B:%d\n,a,b);! Section - Computer Science 1. What will be the output of the following piece of code? int! int a=10,b=20;! printf("a:%d B:%d\n",a,b);! a=(a+b)-(b=a);! printf("a:%d B:%d\n",a,b);! return 1; (i) A: 10, B:

More information

UNC Charlotte Super Competition - Comprehensive Test with Solutions March 7, 2016

UNC Charlotte Super Competition - Comprehensive Test with Solutions March 7, 2016 March 7, 2016 1. The little tycoon Johnny says to his fellow capitalist Annie, If I add 7 dollars to 3/5 of my funds, I ll have as much capital as you have. To which Annie replies, So you have only 3 dollars

More information

Summer Algebra Review

Summer Algebra Review Summer Algebra Review Students entering Geometry should complete this Algebra Review packet. Directions: Students entering Geometry at Friends Academy Upper School should complete this packet prior to

More information

FORM 2 MATHEMATICS SCHEME C TIME: 30 minutes Non Calculator Paper. Instructions to Candidates

FORM 2 MATHEMATICS SCHEME C TIME: 30 minutes Non Calculator Paper. Instructions to Candidates DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Department for Curriculum Management and elearning Educational Assessment Unit Annual Examinations for Secondary Schools 2011 C FORM 2 MATHEMATICS SCHEME

More information

1. (15 points) Solve the decanting problem for containers of sizes 199 and 179; that is find integers x and y satisfying.

1. (15 points) Solve the decanting problem for containers of sizes 199 and 179; that is find integers x and y satisfying. May 9, 2003 Show all work Name There are 260 points available on this test 1 (15 points) Solve the decanting problem for containers of sizes 199 and 179; that is find integers x and y satisfying where

More information

(Practice Worksheet) MATHEMATICS

(Practice Worksheet) MATHEMATICS BIRLA PUBLIC SCHOOL, DOHA- QATAR (Practice Worksheet) MATHEMATICS CLASS 8 CHAPTER 1- RATIONAL NUMBERS I. Fill in the blanks: 1. If a is reciprocal of b, then reciprocal of b is. 2. The product of a rational

More information

PAF Chapter Prep Section Mathematics Class 6 Worksheets for Intervention Classes

PAF Chapter Prep Section Mathematics Class 6 Worksheets for Intervention Classes The City School PAF Chapter Prep Section Mathematics Class 6 Worksheets for Intervention Classes Topic: Percentage Q1. Convert it into fractions and its lowest term: a) 25% b) 75% c) 37% Q2. Convert the

More information

Pointers. Pointer Variables. Chapter 11. Pointer Variables. Pointer Variables. Pointer Variables. Declaring Pointer Variables

Pointers. Pointer Variables. Chapter 11. Pointer Variables. Pointer Variables. Pointer Variables. Declaring Pointer Variables Chapter 11 Pointers The first step in understanding pointers is visualizing what they represent at the machine level. In most modern computers, main memory is divided into bytes, with each byte capable

More information

1. a) What #include statement do you put at the top of a program that does uses cin, cout or endl?

1. a) What #include statement do you put at the top of a program that does uses cin, cout or endl? Exercises with solutions. 1. a) What #include statement do you put at the top of a program that does uses cin, cout or endl? #include b) What using statement do you always put at the top of

More information

2. Which of the following will print the value 2 for the above code?

2. Which of the following will print the value 2 for the above code? Computers are good at following instructions, but not at reading your mind. - Donald Knuth IMPORTANT QUESTIONS ON C LANGUAGE 1. What is the output of this program? char *ptr; char string[] = "How are you?";

More information

To add or subtract, just add or subtract the numbers in the same column and row and place answer accordingly.

To add or subtract, just add or subtract the numbers in the same column and row and place answer accordingly. Math 3 Variable Manipulation Part 2 Systems with Matrices MATRICES An alternative method to solving system of equations is using Matrices. However, before we can solve systems of equations using matrices,

More information

Summer Math Review. Algebra Packet. Dear Parents and Students,

Summer Math Review. Algebra Packet. Dear Parents and Students, Summer Math Review Algebra Packet Dear Parents and Students, We have prepared this optional math packet by gathering information from online sources and various schools in an effort to prepare our students

More information

Computer Science 330 Assignment

Computer Science 330 Assignment Computer Science 330 Assignment Note: All questions are compulsory. The marks for each question are given at the same place. Max. Marks: 20 (ii) Write your name, enrolment number, AI name and subject etc.

More information

QUESTION SET NO.tO3 INSTRUCTIONS TO THE CANDIDATE. a. All the questions are to be answered and maximum time

QUESTION SET NO.tO3 INSTRUCTIONS TO THE CANDIDATE. a. All the questions are to be answered and maximum time QUESTION SET NO.tO3 INSTRUCTIONS TO THE CANDIDATE Time: 1 hr Mark: 45 a. All the questions are to be answered and maximum time 60 minutes. b. This question paper contain 45 questions and each question

More information

1. Expand and simplify: 9. Determine the area of the triangle. a. 5 b. 2. Simplify: a. ( 3) c. ( 2) d. 4 ( 2) 3. e ( 3) ( 5)

1. Expand and simplify: 9. Determine the area of the triangle. a. 5 b. 2. Simplify: a. ( 3) c. ( 2) d. 4 ( 2) 3. e ( 3) ( 5) Math 08 Final Exam Review. Expand and simplify: (Section.6). Simplify: ( ) ( ) 00 d. ( ) (Section.,.6,.) (Section.,.,.) 6 ( ) ( ) e. 6 6 8 (Section.,.6,.) (Section.,.) ( 6 ) (Section.,.,.). Translate into

More information

Scheme G. Sample Test Paper-I. Course Name : Computer Engineering Group Course Code : CO/CD/CM/CW/IF Semester : Second Subject Tile : Programming in C

Scheme G. Sample Test Paper-I. Course Name : Computer Engineering Group Course Code : CO/CD/CM/CW/IF Semester : Second Subject Tile : Programming in C Sample Test Paper-I Marks : 25 Time:1 Hrs. Q1. Attempt any THREE 09 Marks a) State four relational operators with meaning. b) State the use of break statement. c) What is constant? Give any two examples.

More information

Consider the following statements. string str1 = "ABCDEFGHIJKLM"; string str2; After the statement str2 = str1.substr(1,4); executes, the value of str2 is " ". Given the function prototype: float test(int,

More information

UNIT CSEC Multiple Choice Items Sample Paper 01

UNIT CSEC Multiple Choice Items Sample Paper 01 This paper consists of 60 Multiple Choice items from the Core Syllabus according to the following allocation: Section No. of items Computation 6 Number Theory Consumer Arithmetic 8 Sets Measurement 8 Statistics

More information

UNIVERSITY OF WINDSOR Winter 2007 QUIZ # 1 Solution. Examiner:Ritu Chaturvedi Dated : Feb 7 th, Student Name: Student Number:

UNIVERSITY OF WINDSOR Winter 2007 QUIZ # 1 Solution. Examiner:Ritu Chaturvedi Dated : Feb 7 th, Student Name: Student Number: UNIVERSITY OF WINDSOR 60-106-01 Winter 2007 QUIZ # 1 Solution Examiner:Ritu Chaturvedi Dated : Feb 7 th, 2007. Student Name: Student Number: INSTRUCTIONS (Please Read Carefully) No calculators allowed.

More information

C Overview Fall 2015 Jinkyu Jeong

C Overview Fall 2015 Jinkyu Jeong C Overview Fall 2015 Jinkyu Jeong (jinkyu@skku.edu) 1 # for preprocessor Indicates where to look for printf() function.h file is a header file #include int main(void) printf("hello, world!\n");

More information

SECTION A. 1. In a class composed of x girls and y boys what part of the class is composed of girls A. y/(x + y) B. x/xy C. x/(x + y) D.

SECTION A. 1. In a class composed of x girls and y boys what part of the class is composed of girls A. y/(x + y) B. x/xy C. x/(x + y) D. SECTION A 1. In a class composed of x girls and y boys what part of the class is composed of girls A. y/(x + y) B. x/xy C. x/(x + y) D. y/xy 2. What is the maximum number of half-pint bottles of cream

More information

ACT Diagnostic Review #1

ACT Diagnostic Review #1 Name Date Score ACT Diagnostic Review #1 1. Gabe biked a total of kilometers over the course of his morning and afternoon bike rides. If he biked a distance of in the afternoon? kilometers in the morning,

More information

Huawei Test 3. 1 A card is drawn from a pack of 52 cards. The probability of getting a queen of club or a king of heart is:

Huawei Test 3. 1 A card is drawn from a pack of 52 cards. The probability of getting a queen of club or a king of heart is: Huawei Test 3 1 A card is drawn from a pack of 52 cards. The probability of getting a queen of club or a king of heart is: ( )1 /13 ( )2 /13 ( )1 /26 ( )1 /52 Here, n(s) = 52. Let E = event of getting

More information

2008 Geometric Placement Paper

2008 Geometric Placement Paper 2008 Geometric Placement Paper GEOMETRIC PAPER ON 4th APRIL 2008 Paper Pattern I Test : General Intelligence II test : Technical test III test : C-language I Test Some of the questions what I have I am

More information

Mental Maths Competition Topics Included. (1) Q. No. 1 to 50 are based on basic. Calculation questions related to Addition,

Mental Maths Competition Topics Included. (1) Q. No. 1 to 50 are based on basic. Calculation questions related to Addition, Topics Included. () Q. No. to 0 are based on basic. Calculation questions related to Addition, Subtraction, Multiplication and Division, doubling and halving. () Student should know multiplication tables

More information

Structured programming. Exercises 3

Structured programming. Exercises 3 Exercises 3 Table of Contents 1. Reminder from lectures...................................................... 1 1.1. Relational operators..................................................... 1 1.2. Logical

More information

C Programming Multiple. Choice

C Programming Multiple. Choice C Programming Multiple Choice Questions 1.) Developer of C language is. a.) Dennis Richie c.) Bill Gates b.) Ken Thompson d.) Peter Norton 2.) C language developed in. a.) 1970 c.) 1976 b.) 1972 d.) 1980

More information

ENGINEERS ACADEMY. 7. Given Boolean theorem. (a) A B A C B C A B A C. (b) AB AC BC AB BC. (c) AB AC BC A B A C B C.

ENGINEERS ACADEMY. 7. Given Boolean theorem. (a) A B A C B C A B A C. (b) AB AC BC AB BC. (c) AB AC BC A B A C B C. Digital Electronics Boolean Function QUESTION BANK. The Boolean equation Y = C + C + C can be simplified to (a) (c) A (B + C) (b) AC (d) C. The Boolean equation Y = (A + B) (A + B) can be simplified to

More information

Fundamentals of Programming Session 15

Fundamentals of Programming Session 15 Fundamentals of Programming Session 15 Instructor: Reza Entezari-Maleki Email: entezari@ce.sharif.edu 1 Fall 2013 These slides have been created using Deitel s slides Sharif University of Technology Outlines

More information

1) Which of the following values can not be stored in an int variable. 2) How many times is the letter n printed by the following printf statement?

1) Which of the following values can not be stored in an int variable. 2) How many times is the letter n printed by the following printf statement? 1) Which of the following values can not be stored in an int variable A)1000 B)1000000 C)1000000000 D)100000000000000 E)-1 2) How many times is the letter n printed by the following printf statement? printf("nn\\nn\n\n\nn\nn\\n\n");

More information

COMP 2001/2401 Test #1 [out of 80 marks]

COMP 2001/2401 Test #1 [out of 80 marks] COMP 2001/2401 Test #1 [out of 80 marks] Duration: 90 minutes Authorized Memoranda: NONE Note: for all questions, you must show your work! Name: Student#: 1. What exact shell command would you use to:

More information

1. The keyword main in C language is used for

1. The keyword main in C language is used for 1. The keyword main in C language is used for a. an user defined function *b. the first function to be executed in the program c. an user defined variable 2. The role of a C compiler is to translate a.

More information

Developing Conceptual Understanding of Number. Set D: Geometry

Developing Conceptual Understanding of Number. Set D: Geometry Developing Conceptual Understanding of Number Set D: Geometry Carole Bilyk cbilyk@gov.mb.ca Wayne Watt wwatt@mts.net Geometry 1 Vocabulary side triangle angle shortest side Notes Note that in a triangle,

More information

CADENCE APTITUDE PAPER

CADENCE APTITUDE PAPER CADENCE APTITUDE PAPER 1. A & B working separately can do a piece of work in 9 & 12 days respectively. If they work for a day alternatively, A beginning, in how many days, the work will be completed? A.

More information

a. ++ b. -- c. sizeof d. - e. all the above 11. Which of the following is the wrong combination for any two operators in C a. different precedence,

a. ++ b. -- c. sizeof d. - e. all the above 11. Which of the following is the wrong combination for any two operators in C a. different precedence, UNIT III 1. Which of the following cannot be value of the expression in switch case statement a. integer b. float c. char d. shortint 2. What will happen if we write semicolon after switch statement switch(choice);

More information

Chapter 5. Section 5.4 The Common String Library Functions. CS 50 Hathairat Rattanasook

Chapter 5. Section 5.4 The Common String Library Functions. CS 50 Hathairat Rattanasook Chapter 5 Section 5.4 The Common String Library Functions CS 50 Hathairat Rattanasook Library Functions We already discussed the library function fgets() Library functions are available: to find the length

More information

Summer Algebra Review

Summer Algebra Review Summer Algebra Review Students entering Geometry should complete this Algebra Review packet. Directions: Students entering Geometry at Friends Academy Upper School should complete this packet prior to

More information

CPE Summer 2015 Exam I (150 pts) June 18, 2015

CPE Summer 2015 Exam I (150 pts) June 18, 2015 Name Closed notes and book. If you have any questions ask them. Write clearly and make sure the case of a letter is clear (where applicable) since C++ is case sensitive. You can assume that there is one

More information

Information Science. No. For each question, choose one correct answer and write its symbol (A E) in the box.

Information Science. No. For each question, choose one correct answer and write its symbol (A E) in the box. For each question, choose one correct answer and write its symbol (A E) in the box. (A E) Q16. When compiling the program below, the name of which is prog.c, the following error is reported. Which program

More information

Questions = 50; time limit = 50 minutes. No negative marking. Offline (paper & pen) test. There was individual cut off for all the sections

Questions = 50; time limit = 50 minutes. No negative marking. Offline (paper & pen) test. There was individual cut off for all the sections Aptitude test : Questions = 50; time limit = 50 minutes. No negative marking. Offline (paper & pen) test. There was individual cut off for all the sections Section 1: English, 15 questions Direction 1-5:

More information

ECE 15 Fall 15 Midterm Solutions

ECE 15 Fall 15 Midterm Solutions ECE 15 Fall 15 Midterm Solutions This is a closed-book exam: no notes, books, calculators, cellphones, or friends are allowed. In problems 2 4, you can assume that the uers s input is correct. If you need

More information

Q1: Multiple choice / 20 Q2: Arrays / 40 Q3: Functions / 40 TOTAL SCORE / 100 EXTRA CREDIT / 10

Q1: Multiple choice / 20 Q2: Arrays / 40 Q3: Functions / 40 TOTAL SCORE / 100 EXTRA CREDIT / 10 EECE.2160: ECE Application Programming Spring 2017 Exam 2 March 29, 2017 Name: Section (circle 1): 201 (Dr. Li, MWF 8-8:50) 202 (Dr. Geiger, MWF 12-12:50) For this exam, you may use only one 8.5 x 11 double-sided

More information

CS 303E Fall 2011 Exam 2 Solutions and Criteria November 2, Good Luck!

CS 303E Fall 2011 Exam 2 Solutions and Criteria November 2, Good Luck! CS 303E Fall 2011 Exam 2 Solutions and Criteria November 2, 2011 Name: EID: Section Number: Friday discussion time (circle one): 9-10 10-11 11-12 12-1 2-3 Friday discussion TA(circle one): Wei Ashley Answer

More information

UNIT 1: INTEGERS Definition Absolute Value of an integer How to compare integers

UNIT 1: INTEGERS Definition Absolute Value of an integer How to compare integers UNIT 1: INTEGERS 1.1. Definition Integers are the set of whole numbers and their opposites. The number line is used to represent integers. This is shown below. The number line goes on forever in both directions.

More information

Introduction to algebra - Worksheet 1. Introduction to algebra - Worksheet 2. Law of indices - Worksheet 1. Law of indices - Worksheet 2

Introduction to algebra - Worksheet 1. Introduction to algebra - Worksheet 2. Law of indices - Worksheet 1. Law of indices - Worksheet 2 Introduction to algebra - Worksheet 1 If the value of a =, b = 3 and c = 4, evaluate the following: 1. a = 4. ab 3 = 54 3. a c = 3 4. 5a + 6b = 74 5. a + c = 0 6. 7. 5 c ab 3 = 51 7 8. 3a 4 = 3 c 3 6a

More information

1. Arrange the fractions 5/8, 7/12, 13/16, 16/29 and 3/4 in ascending order of magnitude.

1. Arrange the fractions 5/8, 7/12, 13/16, 16/29 and 3/4 in ascending order of magnitude. IBM Placement Paper: 1. Arrange the fractions 5/8, 7/12, 13/16, 16/29 and 3/4 in ascending order of magnitude. Ans-16/29 < 7/12 < 5/8 < 3/4 < 13/16 2. Identify the missing number in the series. 54, 49,?,

More information

Introduction to Computer Programming

Introduction to Computer Programming Introduction to Computer Programming Lecture 2- Primitive Data and Stepwise Refinement Data Types Type - A category or set of data values. Constrains the operations that can be performed on data Many languages

More information

80 Minutes CENG 230 MidtermExam :40

80 Minutes CENG 230 MidtermExam :40 80 Minutes CENG 230 MidtermExam 02.12.2014 17:40 There are 40 questions (each 2.5 points) for a total of 100 points. Exam Type: A All questions are multiple choice, no points will be lost for wrong answers.

More information

1. General Computer Questions

1. General Computer Questions CE 311K Introduction to Computer Methods McKinney Example Problems Section Page 1. General Computer Questions... 1 2. Flowcharts... 2 3. Number Systems... 3 5. Programming Language Facts... 4 1. General

More information

LOOPS. 1- Write a program that prompts user to enter an integer N and determines and prints the sum of cubes from 5 to N (i.e. sum of 5 3 to N 3 ).

LOOPS. 1- Write a program that prompts user to enter an integer N and determines and prints the sum of cubes from 5 to N (i.e. sum of 5 3 to N 3 ). LOOPS 1- Write a program that prompts user to enter an integer N and determines and prints the sum of cubes from 5 to N (i.e. sum of 5 3 to N 3 ). 2-Give the result of the following program: #include

More information

Subject: PIC Chapter 2.

Subject: PIC Chapter 2. 02 Decision making 2.1 Decision making and branching if statement (if, if-, -if ladder, nested if-) Switch case statement, break statement. (14M) 2.2 Decision making and looping while, do, do-while statements

More information

St. Michael Catholic School. Entering Pre-Algebra (7 th grade) Summer Mathematics Packet

St. Michael Catholic School. Entering Pre-Algebra (7 th grade) Summer Mathematics Packet St. Michael Catholic School Entering Pre-Algebra (7 th grade) Summer Mathematics Packet Dear Students: The purpose of this packet is to review 6 th grade math concepts as you look forward to 7 th Grade

More information

P.E.S. INSTITUTE OF TECHNOLOGY BANGALORE SOUTH CAMPUS 1 ST INTERNAL ASSESMENT TEST (SCEME AND SOLUTIONS)

P.E.S. INSTITUTE OF TECHNOLOGY BANGALORE SOUTH CAMPUS 1 ST INTERNAL ASSESMENT TEST (SCEME AND SOLUTIONS) FACULTY: Ms. Saritha P.E.S. INSTITUTE OF TECHNOLOGY BANGALORE SOUTH CAMPUS 1 ST INTERNAL ASSESMENT TEST (SCEME AND SOLUTIONS) SUBJECT / CODE: Programming in C and Data Structures- 15PCD13 What is token?

More information

PROGRAMMING IN C AND C++:

PROGRAMMING IN C AND C++: PROGRAMMING IN C AND C++: Week 1 1. Introductions 2. Using Dos commands, make a directory: C:\users\YearOfJoining\Sectionx\USERNAME\CS101 3. Getting started with Visual C++. 4. Write a program to print

More information

Lecture 14. Dynamic Memory Allocation

Lecture 14. Dynamic Memory Allocation Copyright 1996 David R. Hanson Computer Science 126, Fall 1996 14-1 Lecture 14. Dynamic Memory Allocation The number of variables and their sizes are determined at compile-time before a program runs /*

More information

Question Bank (SPA SEM II)

Question Bank (SPA SEM II) Question Bank (SPA SEM II) 1. Storage classes in C (Refer notes Page No 52) 2. Difference between function declaration and function definition (This question is solved in the note book). But solution is

More information

Reviewing all Topics this term

Reviewing all Topics this term Today in CS161 Prepare for the Final Reviewing all Topics this term Variables If Statements Loops (do while, while, for) Functions (pass by value, pass by reference) Arrays (specifically arrays of characters)

More information

Hacking C Code - Local Machine

Hacking C Code - Local Machine Hacking C Code - Local Machine For CS department machines, use your LDAP password, and log in with ssh to remote.cs.binghamton.edu (unless you're actually sitting at a Unix machine in one of the labs,

More information

Gozo College Boys Secondary School Victoria - Gozo, Malta Ninu Cremona

Gozo College Boys Secondary School Victoria - Gozo, Malta Ninu Cremona Gozo College Boys Secondary School Victoria - Gozo, Malta Ninu Cremona Half Yearly Examination 2012 2013 Form 3 Mathematics Scheme A Non Calculator paper Time: 30 min Name: Class: Answer all questions.

More information

CDA 3103 Computer Organization Exam 1 (Sep. 22th, 2014)

CDA 3103 Computer Organization Exam 1 (Sep. 22th, 2014) CDA 3103 Computer Organization Exam 1 (Sep. 22th, 2014) Name: USF ID: Problem Points Score 1 10 2 10 3 15 4 15 5 10 6 20 otal 80 Exam Rules Use the back of the exam paper as necessary. But indicate clearly

More information

Question Bank. 4. Write a menu driven program to accept two numbers and find a. HCF / GCD b. LCM

Question Bank. 4. Write a menu driven program to accept two numbers and find a. HCF / GCD b. LCM Question Bank 1. Write a program using over loading function with name as area to calculate a. Area of a square (side * side) b. Area of a rectangle (length * breadth) c. Area of a circle. ( * radius *

More information

CSC 270 Survey of Programming Languages

CSC 270 Survey of Programming Languages CSC 270 Survey of Programming Languages C Lecture 1 : Getting Started: in C #include int { A First Program main(void) header makes input and output available to us printf("this is my first C

More information

Simplifying Expressions

Simplifying Expressions Unit 1 Beaumont Middle School 8th Grade, 2017-2018 Math8; Intro to Algebra Name: Simplifying Expressions I can identify expressions and write variable expressions. I can solve problems using order of operations.

More information

!"#$% &'($) *+!$ 0!'" 0+'&"$.&0-2$ 10.+3&2),&/3+, %&&/3+, C,-"!.&/+"*0.&('1 :2 %*10% *%7)/ 30'&. 0% /4%./

!#$% &'($) *+!$ 0!' 0+'&$.&0-2$ 10.+3&2),&/3+, %&&/3+, C,-!.&/+*0.&('1 :2 %*10% *%7)/ 30'&. 0% /4%./ 0!'" 0+'&"$ &0-2$ 10 +3&2),&/3+, #include int main() int i, sum, value; sum = 0; printf("enter ten numbers:\n"); for( i = 0; i < 10; i++ ) scanf("%d", &value); sum = sum + value; printf("their

More information

PLANE GEOMETRY SKILL BUILDER ELEVEN

PLANE GEOMETRY SKILL BUILDER ELEVEN PLANE GEOMETRY SKILL BUILDER ELEVEN Lines, Segments, and Rays The following examples should help you distinguish between lines, segments, and rays. The three undefined terms in geometry are point, line,

More information

Honors Introduction to C (COP 3223H) Program 5 Pizza Shack Inventory and Finances

Honors Introduction to C (COP 3223H) Program 5 Pizza Shack Inventory and Finances Honors Introduction to C (COP 3223H) Program 5 Pizza Shack Inventory and Finances Objective To give students practice writing a program with structs, functions and arrays, all interleaved. The Problem:

More information

ITC213: STRUCTURED PROGRAMMING. Bhaskar Shrestha National College of Computer Studies Tribhuvan University

ITC213: STRUCTURED PROGRAMMING. Bhaskar Shrestha National College of Computer Studies Tribhuvan University ITC213: STRUCTURED PROGRAMMING Bhaskar Shrestha National College of Computer Studies Tribhuvan University Lecture 10: Arrays Readings: Chapter 9 Introduction Group of same type of variables that have same

More information

Downloaded from CHAPTER 3 PAIR OF LINEAR EQUATION IN TWO VARIABLE KEY POINTS

Downloaded from   CHAPTER 3 PAIR OF LINEAR EQUATION IN TWO VARIABLE KEY POINTS Downloaded from CHAPTER 3 PAIR OF LINEAR EQUATION IN TWO VARIABLE KEY POINTS 1. The most general form of a pair of linear equations is : a 1 x + b 1 y + c 1 = 0 a x + b y + c = 0 Where a 1, a, b 1, b,

More information

The University of Calgary. ENCM 339 Programming Fundamentals Fall 2016

The University of Calgary. ENCM 339 Programming Fundamentals Fall 2016 The University of Calgary ENCM 339 Programming Fundamentals Fall 2016 Instructors: S. Norman, and M. Moussavi Wednesday, November 2 7:00 to 9:00 PM The First Letter of your Last Name:! Please Print your

More information

UNIT : 8 SHAPES AROUND US. A point has no length, breadth, height or shape. It only has a position.

UNIT : 8 SHAPES AROUND US. A point has no length, breadth, height or shape. It only has a position. UNIT : 8 SHAPES AROUND US Explain straight line, curved lines, basic shapes and solid shapes. Roll back : Qn. 1,2,3 (Do in T.B) Point We can plot a point on a paper by putting a dot by a sharp pencil.

More information

Types, lists & functions

Types, lists & functions Week 2 Types, lists & functions Data types If you want to write a program that allows the user to input something, you can use the command input: name = input (" What is your name? ") print (" Hello "+

More information

Cisco Model Paper.

Cisco Model Paper. Cisco Model Paper 1.If the sum of three consecutive even numbers is 44 more than the average of these numbers, then the largest of these numbers is? A. 20 B. 24 C. 22 D. None of these Let the smallest

More information

Week 1 Questions Question Options Answer & Explanation A. 10 B. 20 C. 21 D. 11. A. 97 B. 98 C. 99 D. a

Week 1 Questions Question Options Answer & Explanation A. 10 B. 20 C. 21 D. 11. A. 97 B. 98 C. 99 D. a Sr. no. Week 1 Questions Question Options Answer & Explanation 1 Find the output: int x=10; int y; y=x++; printf("%d",x); A. 10 B. 20 C. 21 D. 11 Answer: D x++ increments the value to 11. So printf statement

More information

2015 Mathworks Math Contest. Mathworks Math Contest For Middle School Students November 10, 2015

2015 Mathworks Math Contest. Mathworks Math Contest For Middle School Students November 10, 2015 Mathworks Math Contest For Middle School Students November 10, 2015 PROCTORING TEACHER COVER SHEET l Please complete the following fields and return this cover sheet with ALL student exams l Only one Teacher

More information

CHAPTER 12 HERON S FORMULA Introduction

CHAPTER 12 HERON S FORMULA Introduction CHAPTER 1 HERON S FORMULA 1.1 Introduction You have studied in earlier classes about figures of different shapes such as squares, rectangles, triangles and quadrilaterals. You have also calculated perimeters

More information

Mock _3_ QUANTITATIVE APTITUDE

Mock _3_ QUANTITATIVE APTITUDE Mock _3_9.1.2018 https://tinyurl.com/ybzrdbfc QUANTITATIVE APTITUDE 1: There is a toy train that can make 10 musical sounds. It makes 2 musical sounds after being defective. What is the probability that

More information

Make sure the version number is marked on your scantron sheet. This is Version 1

Make sure the version number is marked on your scantron sheet. This is Version 1 Last Name First Name McGill ID Make sure the version number is marked on your scantron sheet. This is Version 1 McGill University COMP 208 -- Computers in Engineering Mid-Term Examination Tuesday, March

More information

1. For each part (a) through (d) below, state which of the three triangles, if any, are similar and why. a.

1. For each part (a) through (d) below, state which of the three triangles, if any, are similar and why. a. Exit Ticket Sample Solutions 1. Given ABC and LMN in the diagram below, determine if the triangles are similar. If so, write a similarity statement, and state the criterion used to support your claim.

More information