Latest Post

300+ TOP Computer Organization & Architecture MCQs and Answers for AKTU

300+ TOP Computer Organization & Architecture MCQs and Answers Computer Organization and Architecture Multiple Choice Questions 1. In Reverse Polish notation, expression A*B+C*D is written as(A) AB*CD*+(B) A*BCD*+(C) AB*CD+*(D) A*B*CD+Answer: A 2. SIMD represents an organization that ______________.(A) refers to a computer system capable of processing several programs at the same time.(B) represents organization of single computer containing a control …

Read More »

300+ TOP MYSQL Objective Questions and Answers Quiz Exam for AKTU

300+ TOP MYSQL Objective Questions and Answers Quiz Exam MYSQL Multiple Choice Questions :- 1. The “father” of MySQL is ______.A. Michael WideniusB. Bill JoyC. Bill GatesD. Stephanie WallE. Sigmund VelinAnswer:  A 1: The main MySQL program that does all the data handling is calledA. mysqlB. mysqldC. mysql.exeD. httpdAnswer:  B 2: To use MySQL on your computer, you’ll needA. Perl, PHP or …

Read More »

How to define Routes In laravel (web.php)

How to define Routes In laravel (web.php) <?php use App\Http\Controllers\BankController; use App\Http\Controllers\HomeController; use Illuminate\Support\Facades\Route; Route::get('/', [HomeController::class, 'index']); Route::group(['prefix' => 'bank'], function(){ Route::get('/index', [BankController::class, 'index']); Route::get('/create', [BankController::class, 'create']); Route::post('/store', [BankController::class, 'store']); Route::get('/edit/{id}', [BankController::class, 'edit']); Route::post('/update', [BankController::class, 'update']); Route::get('/delete/{id}', [BankController::class, 'destroy']); }); Additional Reading घर बैठे ऑनलाइन करें हर महीने 60,000 रुपये तक कमायें 2022Top 5 Affiliate Marketing Program In India 2022Wishing …

Read More »

How to define controller in laravel

How to define controller in laravel <?php namespace App\Http\Controllers; use App\Models\bank; use App\Models\logger; use App\Models\bank_account; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class BankController extends Controller { public function __construct() { $this->middleware('auth'); } public function index() { $banks = bank::orderBy('id', 'DESC')->get(); // dd($banks); return view('bank/index', compact('banks')); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public …

Read More »

How to define Model In Laravel

How to define Model In Laravel <?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class bank extends Model { protected $table='banks'; protected $fillable=['beneficiary_name','beneficiary_address','bank_nickname','bank_name', 'bank_address','zip_code','country','currency','account_number', 'nickname', 'swift_code', 'remarks','company_name','company_email','prefix','declaration_content','instructions_title', 'instructions_content','logo','status']; } Additional Reading घर बैठे ऑनलाइन करें हर महीने 60,000 रुपये तक कमायें 2022Top 5 Affiliate Marketing Program In India 2022Wishing Website क्या है और इससे पैसे कैसे कमाये? 2022एंड्राइड मोबाइल से पैसे …

Read More »

Top 30 MCQ Type Questions for Data Science Interviews

Top 30 MCQ Type Questions for Data Science Interviews Also Read:-VueJs क्या है और क्यों इस्तेमाल होता है? [पूरी जानकारी 2023] Also Read:-Laravel क्या है। Laravel की विशेषताएं बताइये। SECTION-1:  1. How do we perform Bayesian classification when some features are missing? (A) We assuming the missing values as the mean of all values. (B) We ignore the missing features. …

Read More »

40+ PHP Laravel Interview Questions And Answers [2022 LIST]

Frequently Asked Laravel Interview Questions Q #1) What is Laravel? Answer: Laravel is a free and open-source PHP framework that is used to develop complex web applications. It supports the Model-View-Controller (MVC) design pattern. The Laravel framework is also the most popular PHP framework among web developers in the year 2020. Q #2) What is the latest version of Laravel? Answer: Laravel 8 is the latest version. Q #3) What …

Read More »

Data Mining MCQ Quiz Questions with Answer PDF Download

Data Mining MCQ Online Quiz Questions 2022| Data Mining Multiple Choice Questions and Answer| Data Mining MCQ Questions PDF Read the Given Below Data Mining MCQ Questions 1. The classification of the data mining system involves Information ScienceMachine learningDatabase technologyAll of the above Answer: All of the above 2. Which one of the following statements is not correct about the data …

Read More »

Laravel MCQ Online Quiz Questions 2022

Laravel MCQ Online Quiz Questions 2022 Laravel Multiple Choice Quiz| Laravel MCQ Quiz Questions and Answer| Laravel Online Quiz Questions Laravel MCQ Quiz: Laravel ecommerce is a software product division of POFI technologies private limited. Laravel is a free and open-source PHP framework that provides a set of tools and resources to build modern PHP applications. We, have uploaded 30 Laravel …

Read More »

Chemistry Practical Class 12 Volumetric Analysis Viva Questions with Answers

Chemistry Practical Class 12 Volumetric Analysis Viva Questions with Answers Question.1.What is a standard solution ?Answer. A solution whose strength is known is called a standard solution. Question.2.What is a normal solution ?Answer. A solution containing one gram-equivalent mass of the solute per litre of the solution is called a normal solution. Question.3.What is the equivalent mass of KMnO4 when …

Read More »

Acids, Bases and Salts-MCQ

Acids, Bases and Salts-MCQ Which one of the following is acidic?(a) Lemon juice (b) Tomatoes (c) Milk (d) AllWhich one of the following will turn red litmus blue?(a) Vinegar (b) Baking soda solution (c) Lemon juice (d) Soft drinksWhich one of the following will turn blue litmus red?(a) Vinegar (b) Lime water (c) Baking soda solution (d) Washing soda solutionMethyl …

Read More »

Amazon Quiz MCQ Type Questions

1.Which country has recorded the most deforestation ever in the Amazon rainforest in January 2022? [A] Brazil[B] Argentina[C] Chile[D] Bolivia Correct Answer: A [Brazil]Notes:Brazil recorded the most deforestation ever in the Amazon rainforest for the month of January, according to new government data.Deforestation in Brazil’s Amazon totalled 430 sq kilometres last month, five times higher than January 2021. This is according …

Read More »