wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

SJIT ECE PLACEMENT PRACTICE TEST-1 @ 8/7/23

Total questions: 25

Worksheet time: 25mins

Name
Class
Date
1.

The captain of a cricket team of 11members is 26

years old and the wicket keeper is 3years older. If the ages of these two are excluded, the average age of the remaining players is one year less than the average age of the whole team. Find out the average age of the team.

a)

20 years

b)

21 years

c)

22 years

d)

23 years

2.

Mr.Danny spends Rs.10000 monthly on average for the first four months and Rs.12000 monthly for the next eight months and saves Rs.26000 a year. His average monthly income is

a)

Rs. 13500

b)

Rs. 12500

c)

Rs. 14500

d)

Rs.1400

3.

In seven given numbers, the average of first four numbers is 4 and that of the last four numbers is also 4. If the average of these seven numbers is 3 , then the fourth number is

a)

9

b)

8

c)

10

d)

11

4.

The average weight of 8 men is increased by 1.5kg when one of the men who weighs 65 kg is replaced by a new man. The weight of the new man is

a)

76 kg

b)

77 kg

c)

76.5 kg

d)

76.7kg

5.

Three year ago the average age of a family of five members was 27 years. The present average age is also 27 year after the inclusion of a child into the family. Find the age of the child.

a)

16 yr

b)

12 yr

c)

14 yr

d)

18 yr

6.

89% of ? + 365 = 1075.22

a)

798

b)

897

c)

898

d)

752

7.

There are 1240 employees in an organisation. Out of which, 25% are promoted. How many such employees are there who got promotion?

a)

378

b)

310

c)

388

d)

368

8.

A man losses 20% of his money. After spending 25% of the remainder, he has Rs.480 left. What is the amount of money he originally had?

a)

600

b)

800

c)

720

d)

620

9.

The price of sugar is increased by 25%. If a family wants to keep its expenses on sugar unaltered, then the family will have to reduce the consumption of sugar by

a)

20%

b)

21%

c)

25%

d)

26%

10.

Income of Suman is first increased by 7% and then it is decreased by 7%. What is the change in her income?

a)

0.49% (increase)

b)

0.39% (decrease)

c)

0.39% (increase)

d)

0.49% (decrease)

11.

A is B's sister. C is B's mother. D is C's father. E is D's mother. Then, how is A related to D?

a)

Grandfather

b)

Grandmother

c)

Daughter

d)

Granddaughter

12.

In a family, there are six members A, B, C, D, E and F.

A and B are a married couple, A being the male member. D is the only son of C, who is the brother of A. E is the sister of D. B is the daughter-in-law of F, whose husband has died. How is E related to C ?

a)

Sister

b)

Daughter

c)

Cousin

d)

Mother

13.

Pointing to a person, a man said to a woman, "His mother is the only daughter of your father." How was the woman related to the person ?

a)

Aunt

b)

Mother

c)

Wife

d)

Daughter

14.

P is the brother of Q and R. S is R's mother. T is P's father. Which of the following statements cannot be definitely true ?

a)

T is Q's father

b)

S is P's mother

c)

P is S's son

d)

Q is T's son

15.

Brothers and Sisters I have None ::

Looking at a portrait of a man, Harsh said, "His mother is the wife of my father's son. Brothers and sisters I have none." At whose portrait was Harsh looking?

a)

His son

b)

His cousin

c)

His uncle

d)

His nephew

16.

What will be output of following program ?

#include

int main()

{

int a = 10;

void *p = &a;

int *ptr = p;

printf("%u",*ptr);

return 0;

}

a)

10

b)

Address

c)

2

d)

Compilation error

17.

In C a pointer variable to an integer can be created by the decalaration

a)

int p*;

b)

int *p;

c)

int +p;

d)

int $p;

18.

What will be the output of the following C code?

void main() {

int a[] = {1,2,3,4,5}, *p;

p = a;

++*p;

printf("%d ", *p);

p += 2;

printf("%d ", *p);

}

a)

23

b)

24

c)

25

d)

26

19.

What is the output of the following C code?

char *ptr;

char mystring[] = "abcdefg";

ptr = myString;

ptr += 5;

a)

fg

b)

efg

c)

defg

d)

cdefg

20.

Will this program compile?

int main() {

char str[5] = "LetsFind";

return 0;

}

a)

True

b)

False

21.

What will be the output of the program.

void main() {

printf("%d %d", sizeof(int *), sizeof(int **));

}

a)

2, 0

b)

0, 2

c)

2, 2

d)

2, 4

22.

What is the output of this C code?

int main() {

int i = 10;

void *p = &i;

printf("%d\n" (int)*p);

return 0;

}

a)

Compile time error

b)

Segmentation fault/runtime crash

c)

10

d)

Undefined behaviour

23.

What will be the output of the following C code?

void main() {

char *p;

p = "Hello";

printf("%c\n", *&*p);

}

a)

Hello

b)

H

c)

Some address will be printed

d)

None of these

24.

How can you write a[i][j][k][l] in equivalent pointer expression?

a)

(((***(a+i)+j)+k)+l)

b)

((**(*(a+i)+j)+k)+l)

c)

(*(*(*(a+i)+j)+k)+l)

d)

*(*(*(*(a+i)+j)+k)+l)

25.

The reason for using pointers in a C program is

a)

Pointers allow different functions to share and modify their local variables

b)

To pass large structures so that complete copy of the structure can be avoided

c)

Pointers enable complex “linked" data structures like linked lists and binary trees

d)

All of the above