Questions

Q:

public static void main string[] args Meaning is?

Answer

Here in this declaration public static void main string[] args, each keyword has its importance.


 


1. public - Here public is an access specifier which allows the main method to be accessible everywhere.


 


2. static - static helps the main method to get loaded without getting called by any instance/object.


 


3. void - void clarifies that the main method will not return any value.


 


4. main - It's the name of the method.


 


5. String[] args - Here we are defining a String array to pass arguments at the command line. args is the variable name of the String array.

Report Error

View answer Workspace Report Error Discuss

8 2872
Q:

Each model of a computer has a unique

A) High level language B) Assembly language
C) Both A & B D) Machine language
 
Answer & Explanation Answer: D) Machine language

Explanation:

Each model of a computer has a unique machine language.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2872
Q:

Which traditional Asian performing art derives its name from the Japanese words for 'singing', 'dancing' and 'acting'?

Answer

Kabuki

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

33 2871
Q:

Which indian state banned the forceful religious conversions

Answer

Tamil Nadu

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

43 2870
Q:

The no of entities participating in a relation is called

A) Relation B) Degree of relationship
C) Recursive relationship D) None of the above
 
Answer & Explanation Answer: B) Degree of relationship

Explanation:

The no of entities participating in relation is called Degree of relationship

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

0 2869
Q:

A substance that cannot be broken down into simpler substances

A) Heterogenous mixure B) Compound
C) Homogenous mixture D) Element
 
Answer & Explanation Answer: D) Element

Explanation:

A substance that cannot be decomposed (broken down) into simpler substances by ordinary chemical means.

Examples: gold, iron, carbon, hydrogen, oxygen, nitrogen.

Material composed of only one kind of matter throughout (same atoms or same molecules).

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

0 2869
Q:

There is a mistake in the following code. Add a statement in it to remove it.

main()

{

     int a;

     a = f (10, 3.14) ;

     printf ( " %d ", a );

}

f (int aa, float bb)

{

    return ( ( float ) aa + bb );

}

Answer

Add the following function prototype in main ():


float f ( int, float );

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2869
Q:

Based on which occasion every year on 3 May National film awards are presented ?

A) Dada Sheb Falkhe Jayanthi B) Dada saheb Falke Vardhanti
C) Aalam Ara release date D) Raja Harishchandra release date
 
Answer & Explanation Answer: D) Raja Harishchandra release date

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 2869