Qualcomm Programming Principles Quiz-1

Question 1

Time: 00:00:00
Which of the following is the functionality of ‘Data Abstraction’?

Reduce Complexity

Reduce Complexity

Binds together code and data

Binds together code and data

Parallelism

Parallelism

None of the mentioned

None of the mentioned

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 2

Time: 00:00:00
What is the output of this program?

class Test {
int a;
public int b;
private int c;
}
class AcessTest {
public static void main(String args[])
{
Test ob = new Test();
ob.a = 10;
ob.b = 20;
ob.c = 30;
System.out.println(" Output :a, b, and c" + ob.a + " " + ob.b + " " + ob.c);
}
}

Compilation error

Compilation error

Run time error

Run time error

Output : a, b and c 10 20 30

Output : a, b and c 10 20 30

None of the mentioned

None of the mentioned

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

PrepInsta User

ob.a is for keyboard input not static input

Question 3

Time: 00:00:00
Which Keyword from the following is used to inherit properties from one class into another?

extends

extends

subclasses

subclasses

native

native

all of the mentioned

all of the mentioned

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 4

Time: 00:00:00
Which of the following concept is often expressed by the phrase, ‘One interface, multiple methods’?

Abstraction

Abstraction

Polymorphism

Polymorphism

Inheritance

Inheritance

Encapsulation

Encapsulation

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 5

Time: 00:00:00
Which of the following ways are legal to access a class data member using this pointer?

this->x

this->x

this.x

this.x

*this.x

*this.x

*this-x

*this-x

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 6

Time: 00:00:00
How many instances of an abstract class can be created?

1

1

5

5

13

13

zero

zero

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

PrepInsta User

we cant make an object of abstract class.

Question 7

Time: 00:00:00
Which of the following concept of oops allows the compiler to insert arguments in a function call if it is not specified?

Call by value

Call by value

Call by reference

Call by reference

Default arguments

Default arguments

Call by pointer

Call by pointer

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 8

Time: 00:00:00
Which of the following term is used for a function defined inside a class?

Member Variable

Member Variable

Member function

Member function

Class function

Class function

Classic function

Classic function

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 9

Time: 00:00:00
Which of the following concepts of OOPS means exposing only necessary information to client?

Encapsulation

Encapsulation

Abstraction

Abstraction

Data hiding

Data hiding

Data binding

Data binding

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 10

Time: 00:00:00
Which of the following operator is overloaded for object cout?

>>

>>

<<

<<

+

+

=

=

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

["0","40","60","80","100"]
["Need more practice! \r\n","Keep trying! \r\n","Not bad! \r\n","Good work! \r\n","Perfect! \r\n"]

Personalized Analytics only Availble for Logged in users

Analytics below shows your performance in various Mocks on PrepInsta

Your average Analytics for this Quiz

Rank

-

Percentile

0%

Get over 200+ Courses under One Subscription

mute

Don’t settle Learn from the Best with PrepInsta Prime Subscription

Learn from Top 1%

One Subscription, For Everything

The new cool way of learning and upskilling -

Limitless Learning

One Subscription access everything

Job Assistance

Get Access to PrepInsta Prime

Top Faculty

from FAANG/IITs/TOP MNC's

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others.

Comments