Author: webmaster
-
Microsoft Azure Training
Microsoft Azure Training Azure Basics Azure Introduction Creating Azure Free Account Understanding Azure Subscriptions and Roles Understanding Azure Portals ASM (Azure Service Manager) (Deprecated) ARM (Azure Resource Manager) IAAS Building Blocks Compute Introduction to Virtual Machines Compute tiers pricing Different ways to deploy virtual machines Configuring and managing azure virtual machines Advanced concepts on Azure virtual…
-
Data Science with Python and R Online Training
About the Course In this course you will get an introduction to the main tools and ideas which are required for Data Scientist/Business Analyst/Data Analyst. The course gives an overview of the data, questions, and tools that data analysts and data scientists work with. There are two components to this course. The first is a…
-
Power BI Training
Power BI Training Introduction of Power BI Learning Objective: This module will introduce you to Power BI, its building blocks and the various fundamental concepts of Power BI. Business Intelligence SSBI (Self Service Business Intelligence tools) Power BI Architecture of Power BI Components of Power BI Power BI Desktop Learning Objective: This module will introduce you…
-
C Practice Programs 1
What is the output? #include <stdio.h> int main() { int a[]={1,2,3,4,5,6,7}; char c[]={‘a’, ‘x’,’h’,’0′,’k’}; printf(“%d %d”,(&a[3]-&a[0]), (&c[3]-&c[0])); return 0; } Ans: 3 3 What will be the output? #include <stdio.h> int main() { int val = 5; int* ptr = &val; printf(“%d %d”, ++val, *ptr); } Ans: 6 5 what is the output? #include <stdio.h>…
-
C Practice Programs 2
If “a” is an array of 5 x 5 dimension, a[2][4] is same as **(a+3+4) *(a+3)+*(a+4) **(a+3)+4 *(*(a+2)+4) Ans: Option 4 What is the output of the following code. void main() { int y[2][2] = {{1,2}, {3,4}}; int *p = y[1]; p = p + 1; printf(“%d\n”,*p); } 4 3 The program does not compile…
-

PL/SQL Objective Questions 2
PL SQL Objective Questions 2 Which of the following are correct results of a Boolean expression? TRUE or FALSE 0 or 1 YES or NO TRUE, FALSE or NULL Ans: 4 Which one of these operators does not have the same precedence as the others? BETWEEN AND LIKE IS NULL Ans: 2 What are the…