YouAreAGoldFishHelp

YouAreAGoldFishHelp

Lv10

Minnesota State University - Mankato

7 Followers
0 Following
6 Helped
Send me your homework, and I will help you!

ANSWERS

Published471

Subjects

Project Management2History2Law4Music3English9Philosophy1Anthropology1Business1Science4Sociology4Information Technology5Algebra36Precalculus6Engineering2Geometry2Computer Science10Accounting38Calculus7Biology233Mathematics6Statistics6Physics27Economics28Chemistry34
I'm sorry, but I cannot see the data that you are referring to. Please provide...
The integral of (6/5 x^6 + 4^-2x) dx is:(6/5) * (1/7) x^7 - 2 * (-1/2) e^-2x +...
(a) We integrate f'(t) to get f(t):∫(t + 1/t^3) dt = 1/2 t^2 - 1/2t^(-2) + CUs...
(a) To find a function f such that F = nabla f, we need to find the partial de...
28 We are not given a value of a for this problem. 29 The function is f(x) = x...
(a) q(2) = 2(2)^2 + 3/(2)^2 = 8 + 3/4 = 8.75(b) q(0) is undefined since it inv...

Hi. You had just helped me with this code. But Im getting wornings that crash code.

 

#else

#if _CONTROL_FLOW_GUARD_SHADOW_STACK_SUPPORTED
    __declspec(guard(nosspro)) __declspec(guard(nossepi))
#endif
    __declspec(noreturn) void __cdecl __report_gsfailure(GSFAILURE_PARAMETER)
    {
        if (IsProcessorFeaturePresent(PF_FASTFAIL_AVAILABLE))
        {
            __fastfail(FAST_FAIL_STACK_COOKIE_CHECK_FAILURE);
        }

        volatile UINT_PTR cookie[2];

        // Set up a fake exception, and report it via UnhandledExceptionFilter.
        // We can't raise a true exception because the stack (and therefore
        // exception handling) can't be trusted after a buffer overrun.  The
        // exception should appear as if it originated after the call to
        // __security_check_cookie, so it is attributed to the function where the
        // buffer overrun was detected.

        #if defined _M_IX86
        // On x86, we reserve some extra stack which won't be used.  That is to
        // preserve as much of the call frame as possible when the function with
        // the buffer overrun entered __security_check_cookie with a JMP instead of
        // a CALL, after the calling frame has been released in the epilogue of
        // that function.
        ULONG volatile dw[(sizeof(CONTEXT) + sizeof(EXCEPTION_RECORD)) / sizeof(ULONG)];

        // Save the state in the context record immediately.  Hopefully, since
        // opts are disabled, this will happen without modifying ECX, which has
        // the local cookie which failed the check.
        __asm

This code snippet looks like it's part of the Windows operating system and it ...

Still having problems title not being shifted using TextAlign property. Using Visual Code and Flutter. Visual Code is complaining about it. Here's the code

Also please use the ``` when putting in your code so I can see it clearly since it will be formatted.

'''

import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart' show GoogleFonts; // ignore: unused_import import 'package:todolist/pages/tasklist/tasklist.dart'; import 'package:todolist/pages/tasklistdetails/tasklistdetails.dart';
 
void main() {
  runApp(const MyApp());
}
 
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);   @override
  Widget build(BuildContext context) {     return MaterialApp(       title: 'Flutter Demo',       theme: ThemeData(         primarySwatch: Colors.blue,         textTheme: GoogleFonts.robotoCondensedTextTheme(),
      ),
      initialRoute: '/tasklist',       routes: {         '/tasklist': ((context) => Scaffold(               appBar: Container(               alignment: Alignment.centerLeft, //Aligns the app bar to the left               child: AppBar(               title: const Text(                  "Task List1 Page",                ),                ),                ),               body: const Text('Task list page'),               floatingActionButton: Theme(
                data: Theme.of(context).copyWith(splashColor: Colors.amber),                 child: FloatingActionButton(
                  onPressed: () => {Navigator.pop(context)},
                  tooltip: 'Increment',
                  child: const Icon(Icons.add),
                ),
              ),
            )),
        '/tasklistdetails': ((context) =>
            const TaskListDetailsPage(title: "Task List Details Page"))
      },
    );
  }
}
 
class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);
 
  final String title;
 
  @override
  State<MyHomePage> createState() => _MyHomePageState();
}
 
class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: const Text('Task list page'),
      floatingActionButton: Theme(
        data: Theme.of(context).copyWith(splashColor: Colors.amber),
        child: FloatingActionButton(
          onPressed: () => {Navigator.pop(context)},
          tooltip: 'Increment',
          child: const Icon(Icons.add),
        ),
      ),
    );
  }
} ``` Screenshot of the error from Visual Code. It's complaining about the Container. So I tried to replace the container with PreferredSizedWidget it didn't work either. Has someone tried this on the latest Visual Code.    
I am sorry for the issue.Based on the code you provided, it seems that the err...
Sure, I can help with that! Here's an example program that accomplishes what y...
a) Civil Rights is an issue that most contributed to domestic political divisi...

Using latest Flutter and Visual Code. Followed someone suggestion to align the text to the left side but it failed.

Anyway here is the code below

```

import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart' show GoogleFonts; // ignore: unused_import import 'package:todolist/pages/tasklist/tasklist.dart'; import 'package:todolist/pages/tasklistdetails/tasklistdetails.dart';
 
void main() {
  runApp(const MyApp());
}
 
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
 
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        textTheme: GoogleFonts.robotoCondensedTextTheme(),
      ),
      initialRoute: '/tasklist',
      routes: {
        '/tasklist': ((context) => Scaffold(
              appBar: AppBar(
                title: const Text(
                  "Task List1 Page",
                  textAlign: TextAlign.left, // added this line to align text to left
                ),
              ),
              body: const Text('Task list page'),
              floatingActionButton: Theme(
                data: Theme.of(context).copyWith(splashColor: Colors.amber),
                child: FloatingActionButton(
                  onPressed: () => {Navigator.pop(context)},
                  tooltip: 'Increment',
                  child: const Icon(Icons.add),
                ),
              ),
            )),
        '/tasklistdetails': ((context) =>
            const TaskListDetailsPage(title: "Task List Details Page"))
      },
    );
  }
}
 
class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);
 
  final String title;
 
  @override
  State<MyHomePage> createState() => _MyHomePageState();
}
 
class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: const Text('Task list page'),
      floatingActionButton: Theme(
        data: Theme.of(context).copyWith(splashColor: Colors.amber),
        child: FloatingActionButton(
          onPressed: () => {Navigator.pop(context)},
          tooltip: 'Increment',
          child: const Icon(Icons.add),
        ),
      ),
    );
  }
}   ``` Screenshot of the result - Task List1 Page didn't get shifted to the left to be aligned with Task List Page.  
The textAlign property of the Text widget aligns the text within the widget, n...
Hi! Noted. If you have any questions regarding C programming language, feel fr...
The method of heat transfer that is not listed among the options is "D. Conver...
Yes, there would likely be an adverse selection problem if Social Security par...

After graduating from PenU and working full time for three years, James decided to pursue further study for a postgraduate degree. He has received offers from three postgraduate programs with details as follows:

(1) Part-time program A: The tuition fee is $0.3 million and James will receive a benefit of $0.9 million from the program. He can keep his job and work full time when studying for this program.

(2) Full-time program B: The tuition fee is $0.4 million and James will receive a benefit of $1.5 million from the program. However, he has to forgo the income of $0.6 million when studying for this program. In addition, the program gives James a scholarship that equals 50% of the tuition fee.

(3) Full-time program C: The tuition fee is $0.3 million and James will receive a benefit of $1.5 million from the program. However, he has to forgo the income of $0.6 million when studying for this program. In addition, the program gives James a scholarship that equals 40% of the tuition fee.

For simplicity, assume there are no additional benefits and costs other than those mentioned above.

a) Calculate the economic surplus received from each programme. Which is the first-best programme for James based on your calculation?

b) What is the minimum scholarship (in dollar term) offered by program A such that James finds it indifferent between program A and his first-best program that you answer in part (a) above? Please show your calculation.

c) After James has paid a non-refundable deposit of $0.1 million to the first-best program that you answered in part (a) above, he receives the notification from program A that the program will give him a scholarship of $0.2 million. Explain whether James should shift to study for program A.

a) To calculate the economic surplus, we need to subtract the total cost (tuit...
The present value of the costs of the training is:PV(costs) = $3,000The presen...
Based on the lab results, the genotype for long fur is dominant over short fur...
The molecules that can form hydrogen bonds are: • H2O • NH3 • HFHydrogen bonds...
Based on the data provided, it appears that there is no clear correlation betw...
1 Part of the story is a flashback to 8 years ago in the spring at the teacher...
Well, I pressed ‘edit Profile’ and ‘edit username’ and it allowed me to use ca...
Here are some general tips on electrical installation and operations: 1 Safety...
The probability that the first two surviving progeny will be males is 50%.
9 List one example when each of the following is used:
a) telegraph money order
b) credit card
 
10 Study the bank statement on page 243 and explain fully the transactions that are recorded on the bank statement on the following dates:
a) 3 May
b) 12 May
c) 19 May
d) 30 May
 
11 Prepare a reconciliation statement starting with the cash book balance below.
 
CASH BOOK (BANK COLUMNS ONLY)
Date         Particulars            Fol              Bank                Date           Particulars         Fol              Bank 
 1-Apr          Balance               bld          $ 1,245.00            6-Apr             KBynoe                              $ 40.00 
 6-Apr          RGriffith                               $  300.00            6-Apr         WaterWorks                           $ 12.00 
 18-Apr      RBrathwaite                             $ 125.00            9-Apr           PGoodridge                          $ 59.99 
 30-Apr        LWalcott                                 $ 700.00           20-Apr          Drawings                           $ 500.00
                                                                                  30 Apr            Balance                 cld          $ 1,758.01
                                                         $ 2,370.00                                                                         $ 2.370 .00
 1-Jul          Balance             b/d          $ 1,515.60
 
BANK STATEMENT
  DATE PARTICULARS DEBIT (Dr) CREDIT (Cr) BALANCE
 1 - Apr
 6 - Apr
 6 - Apr
 6 - Apr
 9 - Apr
15 - Apr
18 - Apr
20 - Apr
23 - Apr
25 - Apr
 Balance
 Cash
 Cash
 Cheque deposit
 Cheque no # 075
 Insurance: Standing order
 Cash deposit
 Cheque No #076
 Loan Payment: Standing order
 Salary
    b/f
 $ 40.00
 $ 12.00
 
 $ 59.99
 $ 100.00
 
 $ 500.00
 $ 123.00
 

$ 300,000

 

$ 125,000

 $ 1,245.00 
 $ 1,205.00 
 $ 1,193.00 
 $ 1,493.00 
 $ 1,433.01 
 $ 1,333.01 
 $ 1,458.01 
 $ 958.01 
 $ 835.01 
 $ 2,535.01
,
a) Telegraph money order is used when a person wants to transfer money to anot...
12 The bank statement for I Whithers for the month of June 30, 2011 is:
 
BANK STATEMENT
 
     DATE               PARTICULARS                    DR                  CR                  BALANCE
     2011                                                            $                     $                        $ 
    June 1                    Balance                                                                     4,200 O/D
   8                  C Cosmos                        184                                       4,384 O/D
  16                   Cheque                                                 292               4,092 O/D
  20                 D Wilkinson                      160                                      4,252 O/D
  21                   Cheque                                                 369               3,883 O/D
  30           M Inniss: Trader's Credit                                  88                3,792 O/D
  30              CF: Standing Order               32                                       3,827 O/D
  30                Bank Charges                     19                                       3,846 O/D
 
 
CASH BOOK
DATE             PARTICULARS         FOL         BANK          DATE        PARTICULARS       FOL            BANK
                                                                         $                                                                                  $
June 16             H Wiltshire                             292            June 1              Bal                  b/d             4,200
       21                J Sobers                              369                    6          C Cosmos                                 184
       30              D Broomes                            192                   29        D Wilkinson                                160
       30                   Bal                   c/d          4,195                 29        N Marshall                                  504
                                                                    5,018                                                                           5,048
 
You are required to:
a) Write the cash book up-to-date
b) Draw up a bank reconciliation statement as on 30 June, 2011.
a) Cash Book:DATEPARTICULARSFOLIODEBITCREDITBALANCEJune 1Balance b/d42004200Ju...
a. The male is rose combed, curved beaked and has a single allele from his mot...
The rooster has genotype Rr Pp, which means that it can produce four different...
a. Let's use the following symbols for the alleles: R for rose comb, P for pea...
The reason why the proportion of wild-type individuals in the progeny of the t...

Do all please
Show transcribed image text
1 If you crossed Oregon-R females to y cv v f males, what are all of the genot...
I'm sorry, it seems like the question was cut off. Can you please provide the ...

Show transcribed image text
The parental cross is:True breeding plant #1: AA BB CC (red, separated, and lo...
For testcross progeny of hog 1:Recombinant classes or recombinant phenotypes a...
a. The relationship described in this scenario demonstrates the phenomenon of ...

how it this done?

Show transcribed image text
To solve this problem, we need to use the principles of genetic linkage and re...

Show transcribed image text
a. The recombinant classes or phenotypes in the progeny of hog 1 are: colored,...

Show transcribed image text
The genotype of the F1 plant can be determined by analyzing the F2 generation ...

Show transcribed image text
To determine the genotype and phenotype of the unknown plant, we need to analy...
To analyze the data, we need to determine the gametes produced by the RrYy par...

Show transcribed image text
The photo in Figure 1.7 shows a flat of F2 corn seedlings segregating for a re...

Weekly leaderboard

Start filling in the gaps now
Log in