2 votes
1 answer
61
1 votes
1 answer
62
Let $T: \mathbb{R}^{3} \rightarrow \mathbb{R}^{2}$ be a linear transformation such that $T\left[\begin{array}{l}0 \\ 0 \\ 1\end{array}\right]=\left[\begin{array}{l}2 \\ 6...
0 votes
0 answers
69
A vertex colouring with three colours of a graph G = (V, E) is a mapping V → {R, G, B }. So that any two adjacent vertices does not same colour. Consider the below grap...
0 votes
2 answers
71
0 votes
2 answers
73
What is the output of the below code?#include <stdio.h void main() { static int var = 5; printf("%d ", var ); if (var) main(); }a. 1 2 3 4 5b. 1c. 5 4 3 2 1d. Error