Home / Vinay / Programming MCQs Solution

Programming Portal Solution

You will find all Programming Portal MCQs whose solution is updated by Vinay

Q. Which keyword is used to handle exceptions in Java?

Q. In Java, can a method declare "throws" for a checked exception that is not thrown in the method body?

Q. Which of these keywords are used for the block to handle the exceptions generated by try block?

Q. Which of these clause will be executed even if no exceptions are found?

Q. What is the result of the following code snippet? try { int result = 10 / 0; } catch (ArithmeticException e) { System.out.println("Arithmetic Exception!"); } finally { System.out.println("Finally Block!"); }

Q. Which of the following keywords is used for throwing exception manually?

Q. Given the code. What is the result when this program is executed? public class Test{ static int x[]; static{ x[0] = 1; } public static void main(String args[]){ } }

Q. Which of these keywords must be used to handle the exception thrown by try block in some rational manner?

Q. What will be the output of the following Java code? class exception_handling { public static void main(String args[]) { try { int a = args.length; int b = 10 / a; System.out.print(a); try { if (a

Q. What will be the output of the following Java code? public class A { public static void main(String[] args) { try { return; } finally { System.out.println( "Finally" ); } } }

Q. What is the result of the following code snippet? class Parent { static void display() { System.out.println("Parent"); } } class Child extends Parent { public static void main(String[] args) { Child obj = new Child(); obj.display(); } }

Q. Which of these data type is returned by every method of OutputStream?

Q. Which of these class produce objects with respect to geographical locations?

Q. Which of these method of Locale class can be used to obtain country of operation?

Q. What will be the output of the following Java program? class Output { public static void main(String args[]) { int a = Character.MAX_VALUE; System.out.print((char)a); } }

Q. Which of these class can be used to implement the input stream that uses a character array as the source?

Q. Which class is used to generate random number?

Q. What will be the output of the following Java program? class Output { public static void main(String args[]) { String x = Boolean.toString(false); } }

Q. What is the result of the following code snippet? abstract class MyAbstract { private void myMethod() { System.out.println("Private Method"); } } class MyClass extends MyAbstract { public static void main(String[] args) { MyClass obj = new MyClass(); obj.myMethod(); } }

Q. Which of the following class definitions defines a legal abstract class?

Q. What will be the output? public interface InfA{ protected String getName(); } public class Test implements InfA{ public String getName(){ return "test-name"; } public static void main (String[] args){ Test t = new Test(); System.

Q. Which two of the following are legal declarations for abstract classes and interfaces? 1. final abstract class Test {} 2. public static interface Test {} 3. final public class Test {} 4. protected abstract class Test {} 5. protected interface Test {} 6. abstract public class Test {}

Q. What will be the output of the following Java program? import java.lang.System; class Output { public static void main(String args[]) { System.exit(5); } }

Q. What will be the output of the following Java program? class exception_handling { public static void main(String args[]) { try { int a[] = {1, 2,3 , 4, 5}; for (int i = 0; i < 7; ++i) System.out.print(a[i]); } cat

Q. What will be the output of the following Java program? class exception_handling { public static void main(String args[]) { try { int a[] = {1, 2,3 , 4, 5}; for (int i = 0; i < 5; ++i) System.out.print(a[i]); int x = 1

Q. What will be the output of the following Java program? interface calculate { int VAR = 0; void cal(int item); } class display implements calculate { int x; public void cal(int item) { if (item<2)

Q. What will be the output of the following Java program? import java.lang.reflect.*; class Additional_packages { public static void main(String args[]) { try { Class c = Class.forName("java.awt.Dimension"); Constructor constructors[] = c.getConstructors(); fo

Q. What will be the output of the following Java program? class exception_handling { public static void main(String args[]) { try { int a = 1; int b = 10 / a; try { if (a == 1) a = a / a -

Q. Which of these is a mechanism for naming and visibility control of a class and its content?

Q. Which of these methods returns the total number of bytes of memory available to the program?

Q. Which of this package is used for invoking a method remotely?

Q. What will be the output of the following Java program? class newthread implements Runnable { Thread t; newthread() { t = new Thread(this,"New Thread"); t.start(); } public void run() { t.setPriority(Thread.MAX_PRIORITY); System.out.println(t);

Q. Which method is used to generate boolean random values in java?

Q. What is the use of Observable class?

Q. What is an interface in Java?

Q. What is the purpose of the "this" keyword in Java constructors and methods?

Q. What is method signature in Java?

Q. Which keyword is used to declare a method that cannot be overridden in Java?

Q. What is the expected output? public class Profile { private Profile(int w) { // line 1 System.out.print(w); } public static Profile() { // line 5 System.out.print (10); } public static void main(String args[]) {

Q. Which of these is a legal definition of a method named examveda assuming it throws IOException, and returns void. Also assume that the method does not take any arguments. Select the one correct answer.

Q. Determine output: class MyClass{ int i; int j; public MyClass(int i, int j){ this.i = i; this.j = j; } public void call(){ System.out.print("One"); } } public class Test{ public static void main(String args[]){ MyClass m = new MyClass(); //line 1 m.call(); //line 2 } }

Q. What is not the use of "this" keyword in Java?

Q. What will be the output of the following Java program? class equality { int x; int y; boolean isequal() { return(x == y); } } class Output { public static void main(String args[]) { equality obj = new equality(); obj.x = 5; obj.y =

Q. What is false about constructor?

Q. What is the result of the expression 5 ^ 3 in Java?

Q. What is the output of the following program?

Q. Which of these statements are incorrect?

Q. What will be the output of the following Java program?

Q. What will be the output of the following Java code?

Q. What will be the output of the following Java code?

Q. What will be the output of the following program code? public class Test{ public static void main(String args[]){ String s = "what"; StringBuffer sb = new StringBuffer("what"); System.out.print(sb.equals(s)+","+s.equals(sb));

Q. What will be the output? public class Test{ public static void main (String[] args){ String test = "a1b2c3"; String[] tokens = test.split("\\d"); for(String s: tokens) System.out.print(s); } }

Q. What is the purpose of the trim() method of a String object in Java?

Q. What is the output of the following println statement? String str1 = "Hellow"; System.out.println(str1.indexOf('t'));

Q. Determine output: public class Test{ public static void main(String args[]){ String s1 = "SITHA"; String s2 = "RAMA"; System.out.println(s1.charAt(0) > s2.charAt(0)); } }

Q. What will be the output of the following Java program? class String_demo { public static void main(String args[]) { char chars[] = {'a', 'b', 'c'}; String s = new String(chars); String s1 = "abcd"; int len1 = s1.length(

Q. Which of the following is a valid declaration and initialization of a String array in Java?

Q. Which of the following statements is true about ArrayLists in Java?

Q. In Java, which access modifier allows a class member to be accessed from anywhere in the code?

Q. What is the default access modifier for a class in Java if no access modifier is specified?

Q. What keyword is used to declare a constant in Java, which is implicitly final and static?

Q. What will be the output? public class Test{ static{ int a = 5; } public static void main(String args[]){ new Test().call(); } void call(){ this.a++; System.out.print(this.a); } }

Q. Which data type is used to store a single character in Java?

Q. Determine output: class A{ public static void main(String args[]){ int x; x = 10; if(x == 10){ int y = 20; System.out.print("x and y: "+ x + " " + y); y = x*2; } y = 100; System.out.print

Q. What is BigDecimal.ONE?

Q. What is Truncation in Java?

Q. What will be the output of the following Java code? enum Season { WINTER, SPRING, SUMMER, FALL }; System.out.println(Season.WINTER.ordinal());

Q. What will be the output of the following Java program? class array_output { public static void main(String args[]) { char array_variable [] = new char[10]; for (int i = 0; i < 10; ++i) { array_variable[i] = 'i'; System.out.print(array_varia

Q. 'character_set_database' represents the character set used by the default database.

Q. Which MySQL statement is used to find out which character sets are available?

Q. By default, the AUTO_INCREMENT sequences begin at . . . . . . . .

Q. A FULLTEXT index cannot be created for multiple columns.

Q. What will be the output of the following MySQL statement? SELECT customer_id, product_id, avail_balance FROM account WHERE avail_balance BETWEEN 3000 AND 5000.

Q. Which authentications are required for login into Mysql command line tool?

Q. Which clause is used to "sort the rows of the final result set by one or more columns"?

Q. The maximum non zero values for DOUBLE is . . . . . . . .

Q. Which command is used to create "Temporary tables" in MySQL?

Q. In which mode is the indicator of the presence/absence of a word in search used?

Q. What are PHP variables preceded by?

Q. The max_binlog_cache_size system variable has default size . . . . . . . .

Q. Which of the following commands sets the SQL mode as TRADITIONAL?

Q. For which type are illegal values converted to the appropriate 'zero' value?

Q. Consider a database name "db_name" whose attributes are intern_id (primary key), subject, subject_value. Intern_id = {1, 2, 3, 4, 5, 6} Subject = {sql, oop, sql, oop, c, c++} Subject_value = {0, 0, 1, 1, 2, 2, 3, 3} If these are one to one relation then what will be the output of the follo

Q. Find the error in the following MySQL statement? SELECT cust_id, fed_id FROM customer WHERE cust_id = ’I’ AND fed_id BETWEEN 5000-00-000 AND 9999-999-000;

Q. Which mode is a shorthand for 'both strict modes plus a bunch of other restrictions'?

Q. Which data type is more suitable for storing "documents" in Mysql?

Q. Issuing 'SELECT' on a MERGE table is like . . . . . . . .

Q. Which of the following is the correct order of precedence (high to low)?

Q. What is the significance of "ORDER BY" in the following MySQL statement? SELECT emp_id, fname, lname FROM person ORDER BY emp_id;

Q. What allows nesting one select statement into another?

Q. Is the following MySQL statement belongs to the "Equality condition"? SELECT product_type.name, product.name FROM product_type INNER JOIN Product ON product_type.dept=Product.dept WHERE product_type.name=’customers_accounts’;

Q. The basic operation of PHP is to interpret a script.

Q. The static C library client in Windows is . . . . . . . .

Q. What is true about the following SQL statement? SELECT * FROM table_1;

Q. What will be the result of the following MySQL command? WHERE end_date IS NULL AND (title=’teller’ OR start_date < ‘2007-01-01’)

Q. Consider a database name "db_name" whose attributes are intern_id (primary key), subject. Intern_id = {1, 2, 3, 4, 5, 6} Subject = {sql, oop, sql, oop, c, c++} If these are one to one relation then what will be the output of the following MySQL statement? SELECT intern_id FROM db_name WHER

Q. Which of the following statements is/are correct?

Q. Which clause is used to "Filters out unwanted data"?

Q. What does comparing a known value with NULL result into?

Q. The minimum value stored by signed TINYINT is . . . . . . . .

Q. Which statement is used to produce a stored function?

Q. What is the return value from operations returning a row count?

Q. What is exec_stmt_ssl written in?

Q. What enables the read and execute access to all users outside of mysql group.

Q. Which variable returns code from operations that return true or false?

Q. Which datatype is best suited to store currency values?

Q. Which subquery cannot be executed by itself as a separate statement?

Q. The statement used to find out which character sets are available is . . . . . . . .

Q. The number of attributes in the following SQL table is . . . . . . . . CREATE TABLE employee ( emp_name CHAR(30), emp_id INT );

Q. What is used to perform an analysis of key values by the server?

Q. Which keyword used with UNION retains duplicate rows?

Q. Slow shutdown can be performed by setting innodb_fast_shutdown to . . . . . . . .

Q. There cannot be more than one column per table with the AUTO_INCREMENT attribute.

Q. Which function returns a reference to hash of row values?

Q. The maximum collations a character set can have is . . . . . . . .

Q. What will be the output of the following MySQL command? SELECT * FROM employee WHERE (title=’HEAD TELLER’) AND (start_date=2013-01-24);

Q. "CREATE VIEW ..." command is used to create which type of table in Mysql?

Q. The function returning reference to array of row values is . . . . . . . .

Q. Which is the library file that contains various portability macros and definitions?

Q. What is the name of the format file for a table named my_tbl?

Q. What will be the output of the following MySQL command? SELECT * FROM employee WHERE (title=’HEAD TELLER’) OR (start_date>2013-01-24);

Q. The "Mysql command line tool" format the results in which of the following format?

Q. The option that supplies the pathname to root directory of MySQL installation is . . . . . . . .

Q. Which system variable controls the size of the table cache?

Q. What will be the output of the following MySQL statement? SELECT account_id, product_id, cust_id FROM account WHERE product_id IN (‘sav’, ‘chd’, ‘mm’);

Q. In 'mysqldump' which option is used to make all tables in the destination databases to use a different storage engine?

Q. Which privileges are required on the source server to use mysqldbcopy?

Q. Block arrows, stars and banners, and callouts are all examples of

Q. What is the name of the feature that will allow you to take a step backward if you've made a mistake?

Q. Which of the following methods CANNOT be used to delete records from a table?

Q. In NiFi, what is the purpose of the "connection" between processors?

Q. What is the significance of NiFi's "DetectChange" processor?

Q. What is the significance of NiFi's "TailFile" processor in a data flow?

Q. In Apache NiFi, what is the role of the "InvokeScriptedProcessor" processor?

Q. How can Hadoop's audit logging be useful in a security context?

Q. What is the role of Hadoop's Authentication Proxy in a secure Hadoop environment?

Q. . . . . . . . . Collection API allows for even distribution of custom replica properties.

Q. . . . . . . . . is used when you want the sink to be the input source for another operation.

Q. Point out the wrong statement.

Q. . . . . . . . . provides Java-based indexing and search technology.

Q. The . . . . . . . . collocation identifier is integrated into the process that is used to create vectors from sequence files of text keys and values.

Q. With HCatalog . . . . . . . . does not need to modify the table structure.

Q. Point out the wrong statement.

Q. . . . . . . . . is a subproject with the aim of collecting and distributing free materials.

Q. . . . . . . . . is used as a remote procedure call (RPC) framework for facebook.

Q. PostingsFormat now uses a . . . . . . . . API when writing postings, just like doc values.

Q. In HBase, what is the purpose of the Put operation?

Q. In HBase, what is the function of the HBase Block Encoding?

Q. In HBase, what is the significance of the HBase Block Cache?

Q. In HBase, what is the significance of the HBase Write Pipeline?

Q. . . . . . . . . facilitates installation of Hadoop across any number of hosts.

Q. Point out the wrong statement.

Q. Which of the following provides extendible modern and functional API leveraging SE, ME and EE environments?

Q. The . . . . . . . . streams chunks of data to HDFS, and write data in temp filename with .chukwa suffix.

Q. Point out the wrong statement.

Q. Point out the correct statement.

Q. Correct and valid syntax for count command is . . . . . . . .

Q. What is the primary role of the Hadoop OutputCommitter?

Q. Avro messages are framed as a list of . . . . . . . .

Q. Point out the correct statement.

Q. When using reflection to automatically build our schemas without code generation, we need to configure Avro using?

Q. What is the purpose of the FILTER statement in Apache Pig?

Q. What is the purpose of the ORDER BY statement in Apache Pig?

Q. In comparison to SQL, Pig uses . . . . . . . .

Q. In Hadoop, what is the purpose of the Hadoop ResourceManager "Node Label" feature in a Hadoop cluster?

Q. Point out the correct statement.

Q. . . . . . . . . command is used to copy file or directories recursively.

Q. In . . . . . . . . mode, the NameNode will interactively prompt you at the command line about possible courses of action you can take to recover your data.

Q. Which of the following is used for the MapReduce job Tracker node?

Q. You need to have . . . . . . . . installed before running ZooKeeper.

Q. . . . . . . . . provides a Couchbase Server-Hadoop connector by means of Sqoop.

Q. You configure sample frequency by changing the . . . . . . . . property in the table definition.

Q. Point out the correct statement.

Q. Point out the correct statement.

Q. Which of the following argument is not supported by import-all-tables tool?

Q. Point out the wrong statement.

Q. Point out the wrong statement.

Q. What does the MapReduce "Map" function do?

Q. Point out the correct statement.

Q. In the context of Hadoop, what does the term "shuffle" refer to?

Q. What is the purpose of the Hadoop Secondary NameNode?

Q. Which component of Hadoop is responsible for managing configurations and synchronization?

Q. In advanced MapReduce, what is the purpose of the Hadoop MapReduce "Side Data Distribution"?

Q. In order to turn on RPC authentication in hadoop, set the value of hadoop.security.authentication property to . . . . . . . .

Q. Use . . . . . . . . for the optional label entered in the groupbox's text property.

Q. When a control has focus it can accept . . . . . . . .

Q. The text contained in the identifying label is entered using . . . . . . . .

Q. A . . . . . . . . forces a literal constant to assume a data type other than the one its form indicates.

Q. Variables declared using a structure is known as . . . . . . . .

Q. Following are the logical operator

Q. While the Picture Box tool is included in the form, a triangle appears in the upper-left corner of the control?

Q. "dblMy Age" what is the problem with this variable name?

Q. What is the purpose of the label control?

Q. Each button has same height and width because they are . . . . . . . . the interface.

Q. Which option is used to close the IDE?

Q. Which statement is used to create a user-defined data type?

Q. Which of the following declares a two-dimensional array that has three rows and four columns?

Q. . . . . . . . . is used to fit the value of the data type to that of the memory location, implicitly.

Q. You enter the ampersand to the . . . . . . . . of the character, you want to designate as access key.

Q. Vb allows programmers to define a data type before start the program it is called . . . . . . . .

Q. An object's . . . . . . . . include methods and events.

Q. In Visual Basic, you use . . . . . . . . to write a stream of characters.

Q. The . . . . . . . .is show under or below the Project Explorer window

Q. Variables declared in a block have . . . . . . . . scope.

Q. Which button is used to display the names in the property list by category?

Q. Following are the not condition operator .

Q. What is wrong with the following statement?

Q. The . . . . . . . . is one of the most important controls as it is used to execute commands.

Q. Progress bar is always work with . . . . . . . .control.

Q. What will be in text, if Intid contains 3?

Q. . . . . . . . . is used to take decision .

Q. Each menu item should have an . . . . . . . . that is unique within its menu.

Q. In visual basic language what are the rules of a programming language called?

Q. when we Declaring a variable before programming start it is called as . . . . . . . . it tells Visual Basic to reserve space in memory.

Q. . . . . . . . . function is used to format numbers.

Q. An . . . . . . . . function will display a message box where the user can enter a value.

Q. Hungarian notations name are entered using . . . . . . . .

Q. The default property for a command control is:

Q. The class statement groups . . . . . . . . item in one unit.

Q. .................... is a web's native protocol.

Q. Which is not a directive?

Q. Component which additionally provides a pop-up date picker control for its enclosed input field.

Q. Which tag is used to execute java source code in JSP?

Q. Which of these method is called when http daemon is acting like a normal web server?

Q. Which command is used to clear the terminal screen?

Q. Which command is used to show the amount of available memory in Linux?

Q. Which command is used to list all open files and the corresponding processes in Linux?

Q. Which command is used to monitor the disk I/O in Linux?

Q. Which command is used to display a list of all installed packages in Linux?

Q. Which command is used to search for a specific pattern in a file?

Q. Which command is used to list the contents of a directory in Linux?

Q. Which function is used to allocate memory dynamically in C++?

Q. Which of the following is used to prevent multiple inclusions of a header file?

Q. Which of the following statements is true about C++ classes?

Q. Which of the following is true about C++ structures?

Q. Which of the following is the correct way to define a function with a constexpr specifier in C++?

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x >= y ? x : y);

Q. What is the output of the following code in C++? int a = 10; int b = 3; cout << a % b;

Q. Which of the following is used to handle dynamic memory allocation in C++?

Q. Which of the following is the correct way to define a function that returns an integer and takes two integers as parameters?

Q. Which of the following is the correct way to define a function with a pointer parameter in C++?

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x *= y);

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x += y);

Q. Which of the following is the correct way to define a destructor in a derived class in C++?

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x ^ y);

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x | y);

Q. Which of the following is the correct way to define a lambda function in C++?

Q. Which of the following is the correct way to define a namespace in C++?

Q. What is the output of the following code snippet? int x = 10; int *ptr = &x; cout << ptr;

Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x == y);

Q. Which of the following access specifiers makes a class member accessible only within the class and its friends?

Q. Which of the following is the correct syntax for a while loop in Python?

Q. Which Python keyword is used to create a class?

Q. Which of the following Docker commands is used to scale a service in Docker Swarm?

Q. Which command can be used to check the status of Docker services in a Swarm mode?

Q. Which of the following is true about Docker Swarm?

Q. Which command is used to check the logs of a running Docker container?

Q. What does the 'docker exec' command do?

Q. What is a 'Docker network'?

Q. What is the purpose of the 'docker-compose pause' command?

Q. What is the purpose of the 'docker-compose exec' command?

Q. What is the purpose of the 'docker-compose pull' command?

Q. What is the purpose of the 'docker save' command?

Q. What is the default location for Docker configuration files on Linux?

Q. Which of the following is the default network driver in Docker?

Q. Which of the following commands is used to stop a running container?

Q. What is the purpose of the '--name' flag in 'docker run'?

Q. Which of the following is a valid Docker command to list running containers?

Q. Which command can be used to get detailed information about a Docker container?

Q. How can you set a specific Docker Compose service to always restart on failure?

Q. What is the purpose of 'volumes' in a Docker Compose file?

Q. Which command is used to remove unused Docker Compose volumes?

Q. Which flag is used with 'docker-compose up' to rebuild images?

Q. How do you define environment variables in a Docker Compose file?

Q. Which command is used to pause a running Docker container?

Q. Which command lists all running Docker containers?

Q. Which Docker command is used to download an image from Docker Hub?

Q. Which command is used to list all running Docker containers?

Q. Which of the following is a correct comment?

Q. ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐ model is also known as linear sequential model.

Q. In C++ default return type for all the functions is ‐‐‐‐‐‐‐‐‐.

Q. The process of making an operator to exhibit different behaviors in different instances is called ‐‐‐ ‐‐.

Q. ‐‐‐‐‐ is a function that is expanded in line when it is invoked.

Q. Strings are character arrays. The last index of it contains the null‐terminated character

Q. In case of arguments passed by values when calling a function such as z=addidion(x,y),

Q. Which of the following cannot be declared as virtual?

Q. Which of the following statement is correct?

Q. Which of the following is not a type of constructor?

Q. The function contain in the ios class to set flags

Q. Treating the address of the object of the derived class as the address of the base class means

Q. A friend function for unary operator overloading takes ‐‐‐‐ ‐arguments.

Q. The duplication of inherited members due to the multiple paths can be avoided by making a common base class is called

Q. The mechanism of deriving a new class from another class

Q. Which allows you to create a derived class that inherits properties from more than one base class?

Q. Which of the following statement is correct whenever an object goes out of scope?

Q. A class's __________ is called when an object is destroyed.

Q. Out of the following, which is not a member of the

Q. Which of the following is true?

Q. Which among the following can restrict class members to get inherited?

Q. If class A is derived from another derived class B which is derived from class C, which class will have maximum level of abstraction?

Q. Which of the following subdirectory(ies) contains the system configuration scripts.

Q. Which of the following runs the last command you entered?

Q. To display information about the processor itself - display the contents of which file?

Q. How would you sort a file called shopping on column 3?

Q. What command is used to copy a file?

Q. The command chmod 761 letter is equivalent to

Q. Which of the following command can be used to rename a file in LINUX?

Q. Which of the following is the BEST way to set up SSH(Secure Shell) for communicating between System without needing passwords?

Q. What command allows you to logout of the system?

Q. Which statement is true about a static nested class?

Q. What is the preferred way to handle an object's events in Java 2?

Q. What will happen when the class below is complied?~~~public class Example~~~{~~~//char a = 'u000A';~~~}

Q. Java's garbage collector runs as a ______ priority thread waiting for _______ priority threads to relinquish the processor. Choose the correct sequence.

Q. The term _____________ refers to a class's direct ancestor or to any of its ascendant.~~~classes.

Q. What is the output of the following program? temp = dict() temp['key1'] = {'key1' : 44, 'key2' : 566} temp['key2'] = [1, 2, 3, 4] for (key, values) in temp.items(): print(values, end = "")

Q. Predict the output of following python programs dictionary1 = {'Google' : 1, 'Facebook' : 2, 'Microsoft' : 3 } dictionary2 = {'GFG' : 1, 'Microsoft' : 2, 'Youtube' : 3 } dictionary1.update(dictionary2); for key, values in dictionary1.items(

Q. Which of the following operators should be preferred to overload as a global function rather than a member method?

Q. How can we restrict dynamic allocation of objects of a class using new?

Q. What is the difference between struct and class in C++?

Q. Which is the pointer which denotes the object calling the member function?

Q. Which among the following is/are type(s) of this pointer?

Q. Variable that are listed in function's calls are called

Q. Which operation is used as Logical 'AND'

Q. Which of the followings is/are pointer-to-member declarator?

Q. When a language has the capability to produce new data type mean, it can be called as …...

Q. Which of the following is incorrect in C++? (1)When we write overloaded function we must code the function for each usage. (2)When we write function template we code the function only once. (3)It is difficult to debug macros (4)Templates are more efficient than macros

Q. has many of the characteristics of what is now being called cloud computing

Q. In a scheme, the VM is installed as a Type 1 Hypervisor directly onto the hardware.

Q. computing refers to applications and services that run on a distributed network using virtualized resources.

Q. Which layer is CoAP?

Q. Cloud system from SGI is functionally considered as an .

Q. The capability of a system to adapt the increased service load is called

Q. Applications that work with cloud computing that have low margins and usually low risk are

Q. Which of the following is incorrect?

Q. The usual BUS structure used to connect the I/O devices is

Q. When the batch is created, it begins a countdown that publishes the batch once sufficient time has elapsed.

Q. Tomcat doesn’t support JAX-WS by itself.

Q. Point out the wrong statement.

Q. Which among the following are the duties of the NameNodes

Q. tags needs an external source to wake up the battery.

Q. The architecture of IoT consists of different layers including which of the following? i. Application Layer ii. Sensing Layer iii. Combination Layer iv. Network Layer

Q. Amazon Relational Database Service is a variant of the 5.1 database system.

Q. REST service end point comprises an address.

Q. Communication between services is done widely using protocol.

Q. Dynamic content presented in Google crawling isn’t normally indexed.

Q. Applications can use the to report progress and set application-level status messages.

Q. What was Hadoop written in?

Q. AWS reaches customers in ______________countries.

Q. Amazon EMR uses Hadoop processing combined with several __________ products.

Q. What makes Ajax unique?

Q. “Cloud” in cloud computing represents what?