Can take help from https://github.com/DopplerHQ/awesome-interview-questions
- What is data type in C?
- What is sizeOf function in C?
- What is syntax of ternary operator in C?
Can take help from https://github.com/DopplerHQ/awesome-interview-questions
import 'dart:convert'; | |
import 'dart:core'; | |
void main() { | |
var x = { | |
'data': [ | |
{'id': 1, 'attributes': {'name': "R"}}, {'id': 2, 'attributes': {'name': "S"}} | |
] | |
}; |
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
// This is a reimplementation of the default Flutter application | |
// using riverpod. | |
void main() { |
Recently, I encountered an issue with my .bashrc file on my Ubuntu system that left my terminal unusable, eventually all stuffs like developing, running, testing halts. Here’s how I identified and resolved the problem.
I was trying to install WebLogic on my local system to check for compatibility issues. My Java version at the time was:
openjdk version "1.8.0_302"