(a) Following is a list of programming languages : BASIC, COBOL, C, JAVA -Technology

1 Answer

Answer :

(a) JAVA, COBOL(b) jListl. getSelectedValue ( ) ;

Related questions

Description : Which programming languages are classified as low level languages? A) Basic, COBOL, FORTRAN B) Prolog 2, Expert Systems C) Knowledge based Systems D) Assembly Languages

Last Answer : Answer : D

Description : Which of the following is a popular Programming Language for developing multimedia Web pages, Websites and web-Based applications? 1) COBOL 2) JAVA 3) ASSEMBLER 4) Nine of these

Last Answer : 2) JAVA

Description : Java has its origin in A) C programming language B) PERRL C) COBOL D) Oak programming language

Last Answer : D) Oak programming language

Description : Computer Language used on the internet is: a) BASIC b) COBOL c) Pascal d) Java e) None of The Above

Last Answer : d) Java

Description : FORTRAN, COBOL, BASIC, PASCAL & C LANGUAGE are example of _____: a) High Level Languages b) Middle Level Languages c) Low Level Languages d) None of These

Last Answer : a) High Level Languages

Description : Which of the following programming language started from second generation? A) Cobol B) BASIC C) C D) LISP

Last Answer : Answer : A

Description : The most widely used commercial programming computer language is 1) BASIC 2) COBOL 3) FORTRAN 4) PASCAL

Last Answer : 2) COBOL

Description : Match the following types of variables with the corresponding programming languages: (a) Static variables (i) Local variables in Pascal (b) Stack dynamic (ii) All variables in APL (c) Explicit heap dynamic (iii) Fortran 77 (d) Implicit ... (ii) (C) (iii) (i) (iv) (ii) (D) (ii) (i) (iii) (iv)

Last Answer : (C) (iii) (i) (iv) (ii) 

Description : Ruby, a class XI student has just started learning java programming. Help her in the following: (i) Explain her the concept of variable -Technology

Last Answer : (i)Variables are named storage location to store values temporarily which can be changed during program execution.Data type states the way the values of that type are stored, the operations that can be done ... setText( Just Pass );In the above if statement, value of marks is being compared with 40.

Description : Anju, a beginner in java programming has written following code with some mistakes: -Technology

Last Answer : int k=0;String s='Save Earth';int l=s.length();for(int i=0;k

Description : Ruby, a class XI student has just started learning java programming. Help her in the following: -Technology

Last Answer : i. Variables are named storage location to store values temporarily which can be changed during program execution.Data type states the way the values of that type are stored, the operations that can be done ... setText( Just Pass );In the above if statement, value of marks is being compared with 40.

Description : When did Dr. Hopper develop the programming language known as COBOL?

Last Answer : The simple answer is never. Grace Hopper was a computerscientist (not a doctor) who popularised the concept ofmachine-independent English-like programming languages -- a conceptthat was initially ignored on ... " in recognition of her work, without whichCOBOL might not have been developed at all.

Description : When did Dr. Hopper develop the programming language known as COBOL?

Last Answer : The simple answer is never. Grace Hopper was a computerscientist (not a doctor) who popularised the concept ofmachine-independent English-like programming languages -- a conceptthat was initially ignored on ... " in recognition of her work, without whichCOBOL might not have been developed at all.

Description : Which of the following is not a programming language: a) Java b) Basic c) Knuth d) None of These

Last Answer : c) Knuth

Description : What second programming language did Google add for App Engine development? A. C++ B. Flash C. Java D. Visual Basic

Last Answer : Java

Description : A software company needs to develop a project that is estimated as 1000 function points and is planning to use JAVA as the programming language whose approximate lines of code per function point is accepted as 50. Considering a=1. ... ? (1) 11.2 months (2) 12.2 months (3) 13.2 months (4) 10.2 months

Last Answer : Generally, any projects are measured in weeks. However, the complex project might take more time depending on the level of object re-use available.

Description : A computer programming language often used by children is (1) LOGO (2) PILOT (3) BASIC (4) JAVA

Last Answer : LOGO

Description : The first computer language developed was______ (A) COBOL (B) PASCAL (C) BASIC (D) FORTRAN

Last Answer : (D) FORTRAN

Description : Which one of the following is not a computer language? 1) BASIC 2) COBOL 3) LOTUS 4) FORTRAN

Last Answer : 3) LOTUS

Description : The first computer language developed was (1) COBOL (2) BASIC (3) FORTRAN (4) PASCAL

Last Answer : FORTRAN

Description : Of the following, ____ is not a computer language. a) MS-Word b) C++ c) COBOL d) BASIC

Last Answer : Of the following, ____ is not a computer language.  a) MS-Word b) C++ c) COBOL d) BASIC

Description : Explain the purpose of pow() method with the help of suitable java code. Also mention that pow() method belongs to which class? -Technology

Last Answer : pow() method, a mathematical method, helps in calculating the power of any number.For example:int num=2,power=4;int ans=Math.pow(num,power);t1.setText(''+ans);The above code will calculate the value of 24 and will give answer 16.pow() method belongs to math class.

Description : Write java statement to make the Net Fee text field named txtNetFee un_editable at run time. -Technology

Last Answer : txtNetFee.setEditable(false);

Description : Find the output of the following Java code snippet after execution of each java statement labelled -Technology

Last Answer : The output is:IN5inin5

Description : Write Java code to assign the value 10 to variable x and store its square value in another variable y. -Technology

Last Answer : class Square{public static void main (String args [ ]){int x. y ; x = 10 : y = x * x ;

Description : Find output of the following Java code snippet : -Technology

Last Answer : OutputDelhi 110001 10001

Description : Bcc field contains the list of recipients. Bcc stands for (a) Basic carbon copy (b) Blind carbon copy -Technology

Last Answer : (b) Bcc denotes the Blind carbon copy.

Description : I love programming in Qbasic... and can't seem to learn C+ or Java... am I doomed?

Last Answer : answer:Try Just BASIC if you don’t plan to write code as a career. If you’re wanting a “bridge” to C++ or Java, try the PHP server-side scripting language or Python.

Description : Which organization first developed the Java programming language ?

Last Answer : Sun Microsystems first developed the Java programming language.

Description : Which is not the commonly used programming language for AI? a) PROLOG b) Java c) LISP d) Perl

Last Answer : d) Perl

Description : Java Programming Language was originally developed by Sun Micro-systems which was initiated by _______: a) James Gosling b) Charles Babbage c) Steford Pascal d) None of These

Last Answer : a) James Gosling

Description : Java Programming language was invented by: a) Christopher Kelein b) Charles Babbage c) James Gosling d) Grace Hopper e) None of These

Last Answer : c) James Gosling

Description : A ____ is a namespace for organizing classes and interfaces in a logical manner. Placing your code into ______makes large software projects easier to manage. This section explains why this is useful and ... provided by the Java Platform: a) Inheritance b) Object c) Package d) None of These

Last Answer : c) Package

Description : ______provides a powerful and natural mechanism for organizing and structuring your software. It also explains how classes inherit state and behavior from their super classes and explains how to derive one class ... the java programming language: a) Object b) Inheritance c) Class d) None of These

Last Answer : b) Inheritance

Description : Which of the following programming medium makes social networking widgets more prevalent than the past? A. HTML B. CSS C. JAVA D. AJAX

Last Answer : AJAX

Description : What was Hadoop written in? a) Java (software platform) b) Perl c) Java (programming language) d) Lua (programming language)

Last Answer : Java (programming language)

Description : . _____________ The open source clone of GFS. Written in Java. The programming interfaces are similar to POSIX but not identical. a) HDFS b) SAMIL c) SCIM d) DVE

Last Answer : HDFS

Description : hich is not the commonly used programming language for AI? ⮚ PROLOG ⮚ LISP ⮚ Perl ⮚ Java script

Last Answer : ⮚ Perl

Description : Which is not the commonly used programming language for AI? A. PROLOG B. LISP C. Perl D. Java script

Last Answer : C. Perl 

Description : Which of the following is not a programming language? (A) Pascal (B) Microsoft Office (C) Java (D) C++

Last Answer : (B) Microsoft Office

Description : The pure object oriented programming language with extensive metadata available and modifiable at run time is (A) Small talk (B) C++ (C) Java (D) Eiffel

Last Answer : (A) Small talk

Description : Which one of the following is correct? (A) Java applets cannot be written in any programming language (B) An applet is not a small program. (C) An applet can be run on its own. (D) Applets are embedded in another applications. 

Last Answer : (D) Applets are embedded in another applications.

Description : What are the generations of languages. Explain them. -Technology

Last Answer : 1. The first generation languages or 1GLs are low level languages like machine language.It is the only language understood by the computers. Sometimes, it referred to as machine code or object code or ... visual tools, which helps to develop a program. A good example of 5GLS is Visual Basic.

Description : Name some languages, which are derived from XML. -Technology

Last Answer : Some languages are as follows:1. Ink Markup Language (InkML)2. Business Narrative Markup Language (BNML)3. Financial Product Markup Language (FPML)4. Virtual Human Markup Language (VHML) .5. ... Language (ADML)6. Artificial Intelligence Markup Language (AIML)7. Chess Markup Language (ChessML) etc.

Description : XML is used to define other languages. -Technology

Last Answer : True XML is a meta-language, which is used to define other languages.

Description : Can I use Arduino with other programming languages?

Last Answer : Yes, Arduino can be programmed using various programming languages, such as C++, Python, and Java, by using appropriate libraries and software tools.

Description : What programming languages can be used with Arduino?

Last Answer : The primary programming language used with Arduino is a simplified version of C++, although other languages, such as Python, can also be used with Arduino boards.

Description : What programming languages can be used with Arduino?

Last Answer : Arduino can be programmed using a modified version of the C++ programming language.

Description : Is VPN helpful for learning Programming languages ?

Last Answer : I'm not aware of any nation-blocking for free programming sites, let alone that being a widespread thing. It seems to me that usually when someone posts information for free online, they rarely then ... of thinking. But if you find some, I imagine you can likely spoof your location easily enough.