Programming World👨💻
Открыть в Telegram
All programming language tutorials,courses and more..! For HTML: @html_web_learn For CSS: @CSS_web_learn For JS: @JavaScript_js_learn For PHP: @learn_php_web For Programming courses @Programmingworld_dev For CEH,Cybersec: @technical_stark
БольшеСтрана не указанаТехнологии и приложения34 732
1 412
Подписчики
Нет данных24 часа
-57 дней
-1330 день
Архив постов
1 412
Software Engineering:
In the Spiral model, ‘risk analysis’ is performed
1 412
Software Engineering:
Project Risk Factor is considered in ?
1 412
JAVA:
class Main{ public void m1(Object o1){ System.out.println("Object"); } public void m1(String str){ System.out.println("String"); } public static void main(String [] args){ new Main().m1("Hello"); } }
1 412
DBMS:
Consider the following schema: Emp (Empcode, Name, Sex, Salary, Deptt) A simple SQL query is executed as follows: SELECT Deptt FROM Emp WHERE sex = 'M' GROUP by Dept Having avg (Salary) > {select avg (Salary) from Emp}
1 412
C:
#include int main() { int i=32,j=0x20,k,l,m; k=i|j; l=i&j; m=k^i; printf(" %d %d %d %d %d ", i, j, k, l,m); return 1; }
1 412
DBMS:
The ______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.
1 412
Software Engineering:
Choose the correct option in terms of Issues related to professional responsibility.
1 412
OS:
In operating system, each process has its own __________
1 412
JAVA:
What will be the output of the following Java program? class c { public void main( String[] args ) { System.out.println( "Hello" + args[0] ); } }
1 412
JAVA:
Output ? class char_increment { public static void main(String args[]) { char c1 = 'D'; char c2 = 84; c2++; c1++; System.out.println(c1 + " " + c2); } }
1 412
DBMS:
Relational Algebra is a __________ query language that takes two relations as input and produces another relation as an output of the query.
1 412
JAVA:
Which of the below data type doesn’t support overloaded methods for +,-,* and /?
1 412
JAVA:
Which of the following is/are true about packages in Java? Select one or more:
1 412
C++:
#include class A { public: void disp() { cout<<"disp of A"; } }; void main() { A d; A *ptr; ptr=&d; (*ptr).disp(); }
1 412
The basic data type char(n) is a _____ length character string and varchar(n) is _____ length character.
1 412
To access the services of operating system, the interface is provided by the ___________
1 412
Assuming int is of 4bytes, what is the size of int arr[15];?
1 412
Which of the following concepts make extensive use of arrays?
