کسی بھی زبان کا استعمال کرکے پروگرام لکھنے کے عمل کو کیا کہتے ہیں۔
A. coding
B. testing
C. debugging
D. none
Explanation
The process of writing a program by using any language is called CODING
Show/Hide Explanation
A. 2 parameters
B. None
C. 4 parameters
D. 3 parameters
Explanation
The strcpy() function copies string2, including the ending null character, to the location that is specified by string1.
The strcpy() function operates on null-ended strings.
The string arguments to the function should contain a null character (\0) that marks the end of the string.
Show/Hide Explanation
A. interpreter
B. Assembler
C. compiler
D. None
Explanation
A compiler is a special program that translates a programming language's source code into machine code, bytecode or another programming language.
Show/Hide Explanation
A. must
B. must not
C. may not
D. may
Explanation
For using a variable in C ++, we have to first define it to tell the compiler about its existence so that compiler can allocate the required memory to it .
AGM 24-12-2022
Show/Hide Explanation
A. Main []
B. Getch []
C. Return
D. None of these
Explanation
An entry point is the point at which execution of program starts.
In C++, it is the main () function.
AGM 17-12-2022
Show/Hide Explanation
A. Comments
B. Both A & B
C. Reserved words
D. Key words
Explanation
Keywords , also known as reserved words, have special meaning to the C++ compiler and are always written or typed in short(lower) cases.
AGM 17-12-2022
Show/Hide Explanation
فلو چارٹ الگورتھم کی کون نمائندگی ہے؟
A. Linked
B. Symbolic
C. Both A & B
D. Diagrammatic
Explanation
Flowchart is a symbolic and diagrammatic representation of algorithm
A flowchart is nothing but a pictorial representation of an algorithm .
AGM 17-12-2022
Show/Hide Explanation
کمپیوٹر کا استعمال کرتے ہوئے کسی مسئلے کو حل کرنے کے لیے، آپ کو اس کے لیے کیا لکھنا ہوگا۔
A. A program
B. a book
C. a statement
D. pseudo code
Explanation
A program is a set of step-by-step instructions that directs the computer to do the tasks you want it to do and produce the results you want.
AGM 17-12-2022
Show/Hide Explanation
متغیر کے دائرہ کار سے کیا مراد ہے۔
A. length of variable
B. name of variable
C. accessibility of variable
D. none
Explanation
Variable scope refers to the extent of code in which a variable can be referenced.
Variables defined inside a function are called local variables.
The scope of local variables and dummy arguments is limited to the function in which they are defined.
Show/Hide Explanation
مشروط آپریٹر ______ کا متبادل ہے؟
A. Nested-if
B. If
C. If-else
D. None of these
Explanation
The conditional operator (? :) is a shorthand for the if-else statement .
It evaluates a condition and returns one value if true, another if false.
Show/Hide Explanation
✅ Correct: 0 |
❌ Wrong: 0 |
📊 Total Attempted: 0